@charset "UTF-8";
html {scroll-behavior: smooth;}
body  {
    margin: 0;
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #fcf3f3;
}
* {
	line-height: 1;
    margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.sp {
	display: none;
}
.logo {
	position: absolute;
	top: 29px;
    left: 30px;
}
.wrap {
	background-image: url("../images/main_bg.webp");
	background-repeat: repeat-y;
	background-position: center 280px;
}
.content_width {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}
.inner_main_content {
	max-width: 1000px;
	width: 100%;
	margin: 25px auto 0;
	background-color: #ffffff;
}
.main_content h2 {
	font-size: 28px;
	color: #df6e72;
	font-weight: 900;
    line-height: 1.3;
	text-align: center;
	margin-bottom: 30px;
}
.area_summary {
	text-align: center;
	color: #6f523e;
	text-align: center;
	margin-bottom: 30px;
}
.area_summary h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 30px;
	text-align: center;
}
.area_summary p {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	text-align: center;
}
.attention {
	font-size: 12px;
	color: #000;
}
.box_img img {
	width: 100%;
}
.f_day {
	color: #e94c63;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
	line-height: 1.4;
}
.qa_btn {
	padding-bottom: 40px;
	text-align: center;
}
.qa_btn a {
	text-decoration: none;
    border: 1px solid #000;
    font-size: 13px;
    border-radius: 30px;
    padding: 3px 15px 5px 15px;
    color: #000;
	background-color: #fff;
	transition: .5s;
}
.qa_btn a:hover {
    border: 1px solid #000;
	background-color: #ffd1d2;
}
/* メニュー */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
.menu_btn {
  width: 62px;
  height: 65px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: fixed;
  top: 10px;
  right: 10px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1000;
}
.naviArea {
  width: 200px;
  background-color: #f4f4f4;
  position: fixed;
  top: 0;
  right: -200px;
  transition: right 0.4s ease;
  z-index: 999;
}
.naviArea.open {
  right: -1px;
}
.menu_btn.hide {
  transform: translateX(100px);
  opacity: 0;
}
.naviArea .nav_close {
    background: #df6e72;
    color: #fff;
    display: flex;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s;
	align-items: center;
    justify-content: center;
    padding: 10px 0 12px 0;
}
.nav_close .txt {
	padding: 0 0 0 5px;
	display: inline-block;
}
.nav_close .bt {
	font-weight: 700;
	font-size: 20px;
	display: inline-block;
}
.naviArea li a {
    display: block;
    padding: 9px 3px 9px 15px;
    color: #000;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
	border-left: solid 1px #df6e72;
	border-right: solid 1px #df6e72;
	border-bottom: solid 1px #df6e72; 
	background-color: #fff;
	font-size: 15px;
    transition: 0.3s;
}
.naviArea li a:hover {
	background-color: #EEC5C6;
}
.naviArea li a:before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    margin: auto;
    border-bottom: 0.1428571429em solid #df6e72;
    border-right: 0.1428571429em solid #df6e72;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    transform: translate(-0.1428571429em, 0.0714285714em) rotate(-45deg);
}
@media only screen and (max-width: 768px) {
	.menu_btn {
		width: 50px;
		height: 50px;
		right: 5px;
		top: 5px;
	}
	.menu_btn img {
		width: 100%;
	}
	.naviArea li a {
		font-size: 4vw;
		padding: 5% 3% 5% 7%;
	}
	.naviArea .nav_close {
		font-size: 3.5vw;
	}
	.naviArea.open {
	    width: 52%;
	}
	.nav_close .bt {
		font-size: 5.5vw;
		padding: 3% 0 4% 0;
	}
	.naviArea li a:before {
		left: 2.5%;
	}
}
/* ポップアップ */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	display: none;
}
.popup-content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 40px;
	border-radius: 35px;
	max-width: 100%;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	z-index: 1000;
	width: 80%;
    max-width: 650px;
	box-sizing: border-box;
	max-height: 80vh;
    overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.popup-close {
	position: absolute;
	bottom: 13px;
    right: 17px;
}
.popup-close .close-btn {
	border: none;
	background-color: unset;
	font-size: 24px;
	font-weight: 900;
	color: #959696;
    cursor: pointer;
}
.popup-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
/* /ポップアップ */
@media only screen and (max-width: 768px) {
	.pc {
		display: none!important;
	}
	.sp {
		display: block;
	}
	.logo {
		width: 14%;
		top: 5%;
        left: 5%;
	}
	.logo img {
		width: 100%;
	}
	.inner_main_content {
		max-width: none;
		padding: 0 15px;
        box-sizing: border-box;
		margin: 0;
	}
	.main_content h2 {
		font-size: 5.4vw;
		margin-bottom: 3%;
	}
	.area_summary h3 {
		font-size: 4.8vw;
		margin-bottom: 5%;
	}
	.area_summary {
		margin-bottom: 10%;
	}
	.f_day {
		font-size: 3.5vw;
		padding-bottom: 3%;
	}
	.qa_btn {
		padding-bottom: 10%;
	}
	.qa_btn a {
		font-size: 3.5vw;
	}
	.popup-content {
		width: 80%;
		border-radius: 20px;
		padding: 8%;
	}
	.popup-close .close-btn {
		font-size: 5vw;
	}
	.popup-close {
		bottom: 2%;
		right: 4%;
	}
}
/* サポート動画 */
.support_bn {
	position: fixed;
	bottom: 98px;
	left: 0;
	width: 61px;
}
.support_bn img {
	width: 100%;
	transition: .5s;
}
.support_bn img:hover {
	opacity: .6;
}
@media only screen and (max-width: 768px) {
	.support_bn {
		position: relative;
		bottom: 10px;
		left: 0;
		right: 0;
		width: 90%;
        margin: 13% auto 0;
	}
}
/********** ファーストビュー **********/
.wrap_fv {
	position: relative;
	width: 1200px;
	margin: 0 auto 35px;
}
.wrap_fv .txt_r_01,
.wrap_fv .txt_r_02 {
    text-align: center;
	position: absolute;
	top: 0;
	width: 36px;
	height: 313px;
	background-image: url("../images/fv_r_txt_bg.webp");
	background-repeat: repeat-x;
}
.wrap_fv .txt_r_01 {
	right: 49px;
}
.wrap_fv .txt_r_02 {
	right: 92px;
}
.wrap_fv .txt_r_01 p,
.wrap_fv .txt_r_02 p {
    writing-mode: vertical-rl;
    display: inline-block;
	font-size: 20px;
	color: #ffffff;
	padding-top: 11px;
	font-weight: 500;
}
.fv_main_img img {
	width: 100%;
}
.wrap_fv .box_txt {
	position: absolute;
	top: 20px;
	left: 355px;
	right: 0;
	width: 428px;
}
.wrap_fv .box_date {
	text-align: center;
	color: #0b7552;
	font-size: 26px;
	font-weight: 600;
    position: relative;
	top: 249px;
    left: 29px;
    line-height: 1;
	width: 380px;
}
.wrap_fv .box_date p {
	text-align: center;
    line-height: 1;
	font-weight: 600;
}
.wrap_fv .box_date p.support {
	font-size: 21px;
    font-weight: 900;
    color: #6f523e;
    line-height: 1.2;
    margin-bottom: 9px;
}
.wrap_fv .box_date p.day {
	margin-bottom: 7px;
	text-shadow: 0px 0px 10px rgba(255, 255, 255, 1), 0px 0px 10px rgba(255, 255, 255, 1), 0px 0px 10px rgba(255, 255, 255, 1), 0px 0px 10px rgba(255, 255, 255, 1);
}
.wrap_fv .box_date p.support span {
	color: #e9546b;
}
.number {
	font-family: "kozuka-mincho-pro", serif;
	font-weight: 900;
	font-style: normal;
}
.number.big {
	font-size: 38px;
}
.fv_line_01 {
	height: 14px;
    display: block;
	margin-bottom: 6px;
}
a.apply_btn {
	display: inline-block;
	padding: 12px 17px 11px 13px;
	background-color: #27a179;
	box-shadow: 0 5px 0 #22765b;
	border-radius: 60px;
	color: #fff;
	cursor: pointer;
	text-decoration: none;
	font-size: 23px;
	position: relative;
}
a.apply_btn p {
	font-style: italic;
	display: inline-block;
	margin-left: 10px;
	font-weight: 400;
}
a.apply_btn p .arrow {
	display: inline-block;
	margin-left: 10px;
}
.apply_btn:hover {
	box-shadow: none;
	transform: translateY(5px);
}
a.apply_btn span.free {
	font-style: italic;
	display: inline-block;
	background-color: #efea3a;
	border-radius: 60px;
	padding: 8px 12px 9px 11px;
	color: #6f523e;
	font-size: 20px;
}
.area_cover {
	display: flex;
	justify-content: center;
    margin-bottom: 15px;
    align-items: flex-start;
}
.area_cover .box_cover_img {
	padding: 5px 0 0 0;
    width: 116px;
}
.area_cover .box_cover_img img {
	width: 100%;
}
.area_cover .box_price {
	font-size: 15px;
	background-image: url("../images/price_bg.webp");
	background-repeat: no-repeat;
    background-position: top;
	background-size: cover;
    width: 175px;
    height: 147px;
    color: #efea3a;
    padding: 21px 0 0 0;
    margin-top: 5px;
    margin-left: 9px;
}
.area_cover .box_price .box_01 {
	font-size: 14px;
	margin-bottom: 5px;
	font-weight: bold;
}
.area_cover .box_price .box_02 {
	position: relative;
    margin-bottom: 7px;
	padding: 0 8px 0 0;
}
.area_cover .box_price .box_02 .number {
    font-size: 56px;
    transform: scaleY(1.3);
    display: inline-block;
    padding: 0 3px 0 0;
    font-weight: 800;
    letter-spacing: -1px;
}
.area_cover .box_price .box_02 .yen {
	font-size: 35px;
}
.area_cover .box_price .percent {
	color: #ffffff;
	position: absolute;
    top: -1px;
    right: 13px;
	text-align: left;
	font-size: 10px;
}
.area_cover .box_price .box_03 {
	color: #ffffff;
	font-size: 10px;
	font-weight: 500;
    padding: 0 0 0 6px;
	line-height: 1.2;
}
.fv_line_02 {
	display: block;
	height: 22px;
	width: 100%;
	background-image: url("../images/fv_line_02.webp");
	background-position: center;
	background-repeat: repeat-x;
}
@media screen and (min-width:768px) and ( max-width:1200px) {
	body  {
		width: 1200px;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 768px) {
	.wrap_fv {
		position: relative;
		width: 100%;
		margin: 0 auto 3.4%;
	}
	.wrap_fv .box_txt {
		position: relative;
		top: 0;
		left: 0;
		right: 0;
        width: 90.5%;
        margin: 0 auto;
	}
	.fv_area_main_img {
		position: relative;
        margin-bottom: 4%;
	}
	.wrap_fv .box_date {
		top: 0;
		left: 0;
		right: 0;
		width: 72%;
	}
	.wrap_fv .txt_r_01, .wrap_fv .txt_r_02 {
		width: 5.4%;
		height: auto;
		background-size: cover;
		background-position: center bottom;
		padding: 0 0 35px 0;
		top: 34.5%;
	}
	.wrap_fv .txt_r_01 p, .wrap_fv .txt_r_02 p {
        font-size: 3vw;
	    padding-top: 6px;
	}
	.wrap_fv .txt_r_01 {
		right: 4.7%;
	}
	.wrap_fv .txt_r_02 {
		right: 10.7%;
	}
	.fv_line_02 {
	    background-image: none;
		height: auto;
	}
	.fv_line_02 img {
		width: 100%;
	}
	.wrap_fv .box_price {
        width: 32%;
		position: absolute;
        top: -6px;
        right: 0;
    }
	.wrap_fv .box_price img {
		width: 100%;
	}
	.wrap_fv .box_date p.support {
		font-size: 3.8vw;
		margin-bottom: 3.3%;
	}
	.wrap_fv .box_date {
		font-size: 5vw;
	}
	.number.big {
		font-size: 7vw;
	}
	.wrap_fv .box_date p.day {
		text-align: left;
	}
}
/********** /ファーストビュー **********/
/********** プロフィール **********/
/* モーダルベース */
.are_profile_detail {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1000;
}
/* オーバーレイ背景 */
.modal_overlay {
  position: absolute;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
/* モーダル内容 */
.modal_content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  max-width: 90%;
  width: 811px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
/* チェックされたら表示 */
.modal_checkbox:checked + .profile_more + .are_profile_detail {
  display: block;
  animation: fadeIn 0.3s ease;
}
/* 閉じるボタン */
.modal_close {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 24px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}
.modal_close:hover {
  color: #333;
}
/* フェードイン */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.are_profile_detail .modal_content {
	position: relative;
}
.are_profile_detail .modal_content .area_txt {
	padding: 30px;
background-image: linear-gradient(90deg, rgba(251,217,236,1.00), rgba(252, 236, 240, 1));
}
.are_profile_detail .modal_content .area_txt h3 {
	font-size: 26px;
	color: #e9546b;
	font-weight: 900;
	margin-bottom: 15px;
}
.are_profile_detail .modal_content .area_txt .note {
  background-image:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.00) 0%,
      rgba(255,255,255,0.00) 97%,
      #FFFFFF 97%,
      #FFFFFF 100%
    );
  background-size:100% 2em;
  line-height:1.8;
}
.are_profile_detail .modal_content .area_txt p {
	font-size: 15px;
	color: #6f523e;
	font-weight: 900;
    line-height: 2.1;
    padding-bottom: 5px;
}
.wrap_profile {
	position: relative;
	padding: 40px 0 35px;
}
.wrap_profile_inner {
	position: relative;
}
.wrap_profile .txt_series {
	background-color: rgba(255,214,215,0.7);
	font-size: 14px;
	color: #000000;
	width: calc(100% - 60px);
    position: absolute;
	top: 30px;
    padding: 25px;
    line-height: 1.3;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 1), 0px 0px 5px rgba(255, 255, 255, 1), 0px 0px 5px rgba(255, 255, 255, 1), 0px 0px 5px rgba(255, 255, 255, 1), 0px 0px 5px rgba(255, 255, 255, 1), 0px 0px 5px rgba(255, 255, 255, 1), 0px 0px 5px rgba(255, 255, 255, 1), 0px 0px 5px rgba(255, 255, 255, 1);
    box-sizing: border-box;
	margin: 0 30px;
	font-weight: 700;
	line-height: 1.4;
}
.are_profile_img {
	position: relative;
}
.profile_more {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background-color: #df6e72;
	padding: 5px 20px 5px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 15px;
}
.profile_more .name {
	color: #ffffff;
	font-size: 16px;
	text-align: center;
	text-align: center;
    margin: 4px 35px 5px 11px;
	font-weight: 600;
}
.profile_more .txt_more {
	color: #df6e72;
	font-size: 12px;
	text-align: center;
	font-weight: 500;
	transition: .4s;
	background-color: #ffffff;
    border-radius: 30px;
    padding: 11px 25px 12px 11px;
	position: relative;
}
.profile_more:hover .txt_more {
	background-color: #F1D0D1;
}
.profile_more .txt_more span {
	font-size: 10px;
	position: absolute;
	top: 12px;
    right: 12px;
}
.profile_more .box_img {
	width: 90px;
}
.profile_more .box_img img {
	width: 100%;
}
.profile_img_02 {
	text-align: center;
}
@media only screen and (max-width: 768px) {
	.profile_img_02 img {
		width: 100%;
	}
	.wrap_profile .txt_series {
		position: relative;
		top:0;
		width: 100%;
		margin: 0 0 4.3%;
		font-weight: 500;
		font-size: 3.73vw;
        padding: 4.7%;
	}
	.profile_more {
		position: relative;
		bottom: 0;
		right: 0;
		left: 0;
		background-color: #df6e72;
		padding: 1.4% 3% 1.4% 3.1%;
		cursor: pointer;
		display: flex;
		align-items: center;
		border-radius: 10px;
	}
	.profile_img_02 {
		margin-bottom: 4.3%;
	}
	.profile_more .name {
		font-size: 3.5vw;
	    margin: 1% 0 1% 3.4%;
	}
	.profile_more .box_img {
		width: 22%;
	}
	.profile_more .txt_more {
		font-size: 2.7vw;
	    border-radius: 10px;
		position: absolute;
        right: 3%;
		padding: 2% 7% 2% 4%;
	}
	.profile_more .txt_more span {
		top: 31%;
		font-size: 2.5vw;
	}
	.wrap_profile {
		padding: 7.5% 0 8.8%;
	}
	.are_profile_detail .modal_content .area_txt h3 {
		font-size: 20px;
	}
	.are_profile_detail .modal_content .area_txt p {
		font-size: 13px;
	}
	.are_profile_detail .modal_content .area_txt .note {
		background-size: 100% 1.7em;
	}
}
/********** /プロフィール **********/
/********** タブ **********/
.wrap_tabs {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.tab {
	width: 900px;
	margin: 0 auto 40px;
}
.tab-btn {
	padding: 20px 0px 17px;
	border: none;
	cursor: pointer;
	font-size: 24px;
	width: 45%;
	font-weight: 900;
	background-color: #fff;
}
.tab_tapestry {
	border-radius: 20px 0px 0px 0px;
	background-image: url("../images/tab_tapestry_bg.webp");
	background-size: cover;
	color: #e9556a;
}
.tab_accessories {
	border-radius: 0px 20px 0px 0px;
	background-image: url("../images/tab_accessories_bg.webp");
	background-size: cover;
	color: #4cb19d;
}
.tab-btn.active {
	padding: 25px 0px 22px;
	width: 55%;
	color: #ffffff;
}
.tab_tapestry.active {
	background-image: url("../images/tab_tapestry_bg_a.webp");
}
.tab_accessories.active {
	background-image: url("../images/tab_accessories_bg_a.webp");
}
.wrap_tab h2 {
	margin-bottom: 40px;
}
.tab_content {
	padding: 50px 20px 30px;
	box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
	.tab {
		width: 100%;
		margin-bottom: 6%;
	}
	.wrap_tab h2 {
		font-size: 3.9vw;
	    margin-bottom: 8%;
	}
	.tab-btn {
		padding: 20px 0px 17px;
		font-size: 4vw;
	}
	.tab-btn {
		padding: 13px 0px 10px;
	}
	.tab-btn.active {
		padding: 17px 0px 13px;
	}
	.tab_content {
		padding: 14.5% 5.7% 9%;
	}
	.tab_content p {
        font-size: 3.4vw;
        line-height: 1.5;
	}
}
/********** /タブ **********/
/********** タペストリー **********/
.wrap_tapestry {
	border: solid 3px #df6e72;
}
.wrap_tapestry .attention {
	margin-bottom: 30px;
}
.wrap_tapestry .area_summary p {
	color: #000;
}
.main_content .tapestry_content {
	text-align: center;
}
.main_content .tapestry_content h3 {
	font-size: 20px;
	color: #df6e72;
	font-weight: 600;
	text-align: center;
	margin-bottom: 25px;
}
.main_content .tapestry_content p {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}
.main_content .tapestry_content .box_txt {
	margin-bottom: 25px;
}
.main_content .tapestry_content .box_img {
	width: 100%;
}
.main_content .tapestry_content .box_img img {
	width: 100%;
}
.tapestry_Map {
	width: 548px;
	position: relative;
	margin: 0 auto;
}
.tapestry_Map img {
	width: 100%;
}
.tapestry_link {
	position: absolute;
	top: 0;
	display: flex;
	flex-wrap: wrap;
    padding: 8% 8% 7% 9%;
}
.tapestry_link a {
	display: block;
	width: 33%;
	position: relative;
}
.glass {
	width: 25px;
	height: 25px;
	position: absolute;
	bottom: 5px;
	right: 10px;
	background-image: url("../images/glass.webp");
	background-size: contain;
	background-repeat: no-repeat;
}
.tapestry07 .glass,
.tapestry08 .glass,
.tapestry09 .glass {
	bottom: 8px;
}
.tapestry_link a.active .glass {
	background-image: url("../images/glass_active.webp");
}
.tapestry_link a img {
	width: 100%;
}
.tapestry_content > div {
	display: none;
}
.tapestry_link a.active {
}
.tapestry_Map .size {
	text-align: center;
	color: #6f523e;
	margin-top: 15px;
}
.wrap_point {
	display: flex;
	justify-content: space-between;
	width: 900px;
	margin: 0 auto 45px;
}
.wrap_point .box {
	width: 392px;
	height: 332px;
	background-image: url("../images/dot_line.webp"), url("../images/dot_line.webp");
	background-repeat: repeat-x, repeat-x;
    background-size: 28px;
	background-position: top center, bottom center;
	font-size: 14px;
	color: #6f523e;
	display: flex;
    align-items: center;
    justify-content: center;
}
.wrap_point .box .inner {
	width: 382px;
	height: 322px;
}
.wrap_point .box_01 .inner .box_img {
	width: 306px;
    margin: 19px auto 10px;
    text-align: center;
}
.wrap_point .box .inner p {
	line-height: 1.3;
	font-size: 13px;
}
.wrap_point .box_01 .inner p {
	width: 325px;
	margin: 0 auto;
}
.wrap_point .box_02 .inner .box_content {
	width: 339px;
	margin: 10px auto 0;
	margin-bottom: 12px;
}
.wrap_point .box_02_ara_ttl {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.wrap_point h3 {
	text-align: center;
	margin-left: 10px;
	color: #6f523e;
	line-height: 1.4;
	font-size: 16px;
	font-weight: 600;
}
.wrap_point .box_01 h3 {
	margin-top: 28px;
}
.wrap_point .box_02_ara_ttl .pin {
	color: #df6e72;
	font-size: 10px;
	text-align: center;
	background-image: url("../images/pin.webp");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width :74px;
	height: 74px;
}
.wrap_point .box_02_ara_ttl .pin p {
	padding: 20px 0 0;
	text-align: center;
	font-weight: 600;
	font-size: 12px;
}
.wrap_point .box_02_ara_ttl .pin span {
	font-size: 14px;
	display: inline-block;
	margin-top: 3px;
}
.wrap_point .box_02 .box_img {
	margin-bottom: 20px;
}
.wrap_flow {
	background-color: #ffd1d2;
	padding: 30px 60px;
	border-radius: 20px;
	width: 900px;
	margin: 0 auto 40px;
}
.wrap_flow h2 {
	color: #6f523e;
	font-size: 25px;
}
.flow_list .box_number {
	width: 60px;
	height: 60px;
	background-color: #df6e72;
	border-radius: 60px;
	color: #ffd6d7;
}
.flow_list .box_number p {
	color: #ffd6d7;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	padding: 10px 0 0 0;
}
::-webkit-full-page-media, :future, :root .flow_list .box_number p{
		padding: 13px 0 0 0;
}
.flow_list .box_number p span {
	font-size: 25px;
	display: block;
}
.flow_list .box_txt {
	background-color: #ffffff;
	padding: 15px;
	border-radius: 15px;
	width: calc(100% - 70px);
	display: flex;
    align-items: center;
	position: relative;
}
.flow_list .box_txt::after {
	content: "";
	width: 14px;
	height: 12px;
	background-image: url("../images/flow_arrow.webp");
	background-repeat: no-repeat;
	position: absolute;
	bottom: -17px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.flow_list .s_5 .box_txt::after {
	display: none;
}
.flow_list .box_txt p {
	color: #6f523e;
	font-size: 16px;
	font-weight: 500;
    line-height: 1.3;
}
.flow_list .box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 24px;
}
.flow_list .box.s_5 {
	margin-bottom: 0;
}
.tapestry .popup-content {
	border: 1px solid #df6e72;
	max-width: 400px;
}
.tapestry .popup-content h3 {
	color: #df6e72;
	margin-bottom: 35px;
	text-align: center;
	font-weight: 900;
}
.tapestry .popup-content .box_txt {
	margin-bottom: 30px;
}
.tapestry .popup-content .box_txt p {
	color: #000;
    font-size: 14px;
	text-align: center;
	line-height: 1.3;
}
@media only screen and (max-width: 768px) {
	::-webkit-full-page-media, :future, :root .flow_list .box_number p{
			padding: 9px 0 0 0;
	}
	.wrap_tapestry {
		display: block;
	}
	.tapestry_Map {
		width: 100%;
	}
	.content_width {
		width: 95%;
	}
	.wrap_point {
		display: block;
		width: 100%;
		margin: 0 auto 7%;
	}
	.wrap_point .box,
	.wrap_point .box .inner {
		width: 100%;
		height: auto;
	}
	.wrap_point .box {
		padding: 1% 0 8%;
		background-size: 5%;
	}
	.tapestry_Map .size {
		margin-top: 5%;
		margin-bottom: 10%;
		font-size: 3.2vw;
	}
	.wrap_tapestry .area_summary.sp {
		margin-bottom: 0;
	}
	.wrap_tapestry .area_summary.sp p {
	    font-size: 3.4vw;
		line-height: 1.5;
	}
	.wrap_tapestry .area_summary h3 {
		font-size: 4vw;
        margin-bottom: 8%;
        line-height: 1.4;
	}
	.wrap_tapestry .attention {
	    font-size: 3.5vw;
	}
	.wrap_tapestry .attention {
		margin-bottom: 0;
	}
	.glass {
        width: 20px;
        height: 20px;
		right: 7px;
	}
	.tapestry .popup-content h3 {
		font-size: 3.8vw;
		margin-bottom: 6%;
	}
	.tapestry .popup-content .box_txt p {
		font-size: 3.2vw;
	}
	.tapestry .popup-content .box_txt {
		margin-bottom: 10.3%;
	}
	.wrap_flow {
		margin: 0 calc(50% - 50vw) 7%;
		width: 100vw;
		border-radius: 0;
		padding: 5% 3%;
	}
	.wrap_flow h2 {
		font-size: 4.3vw;
		margin-bottom: 5%;
	}
	.flow_list {
		padding: 0 10px 0 0;
	}
	.flow_list .box_txt p {
		font-size: 3.5vw;
	}
	.flow_list .box_number {
		width: 43px;
		height: 43px;
	}
	.flow_list .box_number p {
		font-size: 11px;
		padding: 7px 0 0 0;
	}
	.flow_list .box_number p span {
		font-size: 19px;
	}
	.flow_list .box_txt {
		border-radius: 10px;
		width: calc(100% - 51px);
	}
	.flow_list .box {
		align-items: center;
	}
	/* 擬似スクロールバー */
	.wrap_flow {
		position: relative;
	}
	.wrap_flow_inner {
		max-height: 300px;
		overflow-y: scroll;
		border-right: 7px solid #ffffff;
	}
	.fake_scrollbar {
		position: absolute;
		top: 0;
		right: 2.75%;
		width: 7px;
		background-color: #df6e72;
		transition: opacity 0.2s;
		pointer-events: none;
		z-index: 10;
	}
	/* Chrome, Safari, Edge */
	.wrap_flow_inner::-webkit-scrollbar {
		display: none;
	}
	/* Firefox */
	.wrap_flow_inner {
		scrollbar-width: none;       /* スクロールバーを非表示 */
		-ms-overflow-style: none;    /* IE/Edge 対応 */
	}
	/* /擬似スクロールバー */
	.wrap_point h3 {
	    font-size: 4vw;
	}
	.wrap_point .box_01 h3 {
		margin-top: 5%;
	}
	.wrap_point .box_01 .inner .box_img {
		width: 75%;
		margin: 3% auto 1%;
	}
	.wrap_point .box_01 .inner p {
		width: 90%;
	}
	.wrap_point .box_02 h3 {
        margin-left: 0;
	}
	.wrap_point .box_01 {
		margin-bottom: 7%;
	}
	.wrap_point .box_02 .inner p {
		width: 90%;
		margin: 0 auto;
	}
	.wrap_point .box .inner p {
		font-size: 3.5vw;
	}
	.wrap_point .box_02_ara_ttl {
		justify-content: center;
		margin-bottom: 3%;
	}
	.wrap_point .box_02 .inner .box_content {
		margin: 3% auto 0;
        width: 100%;
	}
	.wrap_point .box_02 .box_img {
		width: 86%;
		margin: 0 auto 3.5%;
	}
}
/********** /タペストリー **********/
/********** 小物 **********/
.wrap_accessories {
	margin-bottom: 30px;
	position: relative;
	border: solid 3px #4cb19d;
}
.area_swiper_inner {
	position: relative;
}
.wrap_accessories h3 {
	color: #4cb19d;
	font-size: 30px;
}
.wrap_accessories .area_summary h4 {
	font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}
.swiper--wrapper {
  width: 100%;
  height: 300px;
}
.swiper-slide {
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 300px;
}
.swiper-slide img {
	width: 100%;
	position: relative;
    z-index: 10;
}
.wrap_accessories .swiper-slide img,
.wrap_next_issue .swiper-slide img {
	cursor: pointer;
}
.accessories_content {
	display: none;
}
.swiper-slide .inner .box_txt {
	display: none;
	transition: .3s;
}
.area_swiper .swiper-button-prev {
	left: -37px;
}
.area_swiper .swiper-button-next {
	right: 27px;
}
.area_swiper {
	position: relative;
}
.area_swiper .swiper-button-next,
.area_swiper .swiper-button-prev {
	width: 27px;
	height: 27px;
}
.area_swiper .swiper-button-prev:after {
	content: "";
	width: 27px;
	height: 27px;
	background-image: url("../images/prev.webp");
	background-repeat: no-repeat;
	background-size: contain;
}
.area_swiper .swiper-button-next:after {
	content: "";
	width: 27px;
	height: 27px;
	background-image: url("../images/after.webp");
	background-repeat: no-repeat;
	background-size: contain;
}
.wrap_accessories .area_swiper .swiper-button-prev:after {
	background-image: url("../images/accessories_prev.webp");
	background-repeat: no-repeat;
}
.wrap_accessories .area_swiper .swiper-button-next:after {
	background-image: url("../images/accessories_after.webp");
	background-repeat: no-repeat;
}
.wrap_accessories .swiper-slide .inner:hover .box_txt h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1.3;
}
.wrap_accessories .swiper-slide .inner:hover .box_txt p {
	font-size: 14px;
}
.wrap_accessories .swiper {
    margin-left: 22px;
    width: 832px;
}
.wrap_accessories .area_swiper .swiper-button-next {
    right: 2px;
}
.wrap_accessories .area_swiper .swiper-button-prev {
    left: -13px;
}
.accessories .popup-content {
	border: 1px solid #4cb19d;
}
.accessories .popup-content .box_img {
	width: 260px;
}
.accessories .popup-content .box_txt {
	width: calc(100% - 278px);
}
.accessories .popup-content .popup-body {
	display: flex;
	justify-content: space-between;
    align-items: center;
}
.accessories .popup-content h3 {
	color: #4cb19d;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
}
.accessories .popup-content p {
	font-size: 14px;
	line-height: 1.3;
}
@media only screen and (max-width: 768px) {
	.area_swiper .swiper-button-next,
	.area_swiper .swiper-button-prev {
		width: 18px;
		height: 18px;
	}
	.area_swiper .swiper-button-prev:after,
	.area_swiper .swiper-button-next:after {
		content: "";
		width: 18px;
		height: 18px;
	}
	.area_swiper .swiper-button-next, .area_swiper .swiper-button-prev {
		top: 55%;
	}
	.wrap_accessories .area_swiper .swiper-button-prev {
		left: -15px;
	}
	.wrap_accessories .area_swiper .swiper-button-next {
		right: -15px;
	}
	.wrap_accessories h3 {
		font-size: 4.8vw;
	}
	.wrap_accessories .area_summary h4 {
		font-size: 4vw;
		margin-bottom: 8%;
		line-height: 1.4;
	}
	.wrap_accessories .swiper {
		width: 95%;
		margin: 0 auto;
	}
	.accessories .popup-content .popup-body {
		display: block;
	}
	.accessories .popup-content .box_img {
		width: 80%;
		margin: 0 auto 7%;
	}
	.accessories .popup-content .box_txt {
		width: 100%;
	}
	.accessories .popup-content h3 {
		text-align: center;
		font-size: 4vw;
		margin-bottom: 5%;
	}
	.accessories .popup-content p {
		font-size: 3.2vw;
	}
}
/********** /小物 **********/
/********** 材料 **********/
.wrap_material {
	background-image: url("../images/dot_line.webp"), url("../images/dot_line.webp");
    background-repeat: repeat-x, repeat-x;
    background-size: 28px;
    background-position: top center, bottom center;
	padding: 45px 0;
}
.wrap_material h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
	color: #6f523e;
}
.main_content .wrap_material h2 {
    margin-bottom: 23px;
}
.wrap_material .area_summary p {
    font-size: 15px;
    font-weight: 500;
}
.swiper_material .swiper-slide {
	width: 216px;
	height: 298px;
}
.swiper_material .swiper-slide .inner {
	position: relative;
	margin: 0;
}
.swiper_material .swiper-wrapper .box_img {
	width: 100%;
}
.swiper_material .swiper-wrapper .box_img img {
	width: 100%;
}
.swiper_material .swiper-wrapper .box_txt {
	display: block;
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 100;
	color: #231815;
	width: 180px;
}
.swiper_material .swiper-wrapper .material_lsit_01 .box_txt {
	top: 40px;
}
.swiper_material .swiper-wrapper .box_txt h4 {
	font-size: 13px;
    font-weight: 600;
    letter-spacing: -1px;
	text-align: center;
	margin-bottom: 8px;
	line-height: 1.4;
}
.swiper_material .swiper-wrapper .material_lsit_01r .box_txt h4 {
	font-size: 16px;
}
.swiper_material .swiper-wrapper .box_txt p {
	font-size: 12px;
	line-height: 1.4;
	font-weight: 400;
}
@media only screen and (min-width: 769px) {
	.area_swiper .swiper-prev-2:after, .area_swiper .swiper-next-2:after {
		display: none;
	}
	.swiper_material .swiper-wrapper {
		display: flex;
		justify-content: center;
		gap: 0 10px;
	}
}
@media only screen and (max-width: 768px) {
	.swiper_material .swiper-slide {
		height: auto;
	}
	.swiper_material {
		width: 92%;
		margin: 0 auto;
		overflow: hidden;
	}
	.swiper_material .swiper-wrapper .box_txt {
		top: 9%;
		width: 84%;
	}
	.swiper_material .swiper-wrapper .material_lsit_03 .box_txt,
	.swiper_material .swiper-wrapper .material_lsit_04 .box_txt {
		top: 7%;
	}
	.swiper_material .swiper-wrapper .material_lsit_01 .box_txt h4 {
		font-size: 3vw;
	}
	.swiper_material .swiper-wrapper .box_txt h4 {
		font-size: 3vw;
		margin-bottom: 2%;
	}
	.swiper_material .swiper-wrapper .box_txt p {
		font-size: 2.8vw;
		line-height: 1.2;
	}
	.swiper_material .swiper-wrapper .material_lsit_01 .box_txt {
		top: 12.5%;
	}
	.wrap_material {
		background-size: 5%;
		padding: 9% 0;
	}
	.wrap_material h3 {
		font-size: 3.5vw;
		margin-bottom: 5%;
	}
	.main_content .wrap_material h2 {
		margin-bottom: 5%;
	}
	.wrap_material .area_summary p {
		font-size: 3.5vw;
		line-height: 1.4;
	}
	.wrap_material .area_summary {
        margin-bottom: 6%;
    }
	.wrap_material .area_swiper .swiper-button-next {
        right: -10px;
    }
	.wrap_material .area_swiper .swiper-button-prev {
        left: -10px;
    }
}
/********** /材料 **********/
/********** マガジン紹介 **********/
.wrap_magazine {
	padding-top: 60px;
}
.wrap_magazine .area_summary p {
	font-size: 24px;
	font-weight: 500;
}
.wrap_magazine .area_summary p span {
	display: inline-block;
    background-color: #ffd1d2;
    padding: 3px 5px 5px 5px;
    margin: 0 5px;
}
/*アコーディオン*/
.accordion {
	margin-inline: auto;
	margin-top: 30px;
	max-width: 870px;
	position: relative;
	width: 100%;
}
.accordion-title {
	color: #6f523e;
	cursor: pointer;
	font-size: 26px;
	padding: 6px;
}
.accordion-content {
	display: none;
	padding: 30px 20px;
}
.accordion-content .explanation {
	text-align: center;
	font-size: 16px;
	color: #000000;
	line-height: 1.4;
	font-weight: 500;
	margin-bottom: 30px;
}
.accordion-content.accordion_c_03 .explanation {
	margin-bottom: 15px;
}
.accordion-content.accordion_c_03 .attention {
	text-align: center;
	margin-bottom: 30px;
}
.accordion-content.accordion_c_01 .box_img {
	max-width: 809px;
	margin: 0 auto;
}
.accordion-content.accordion_c_02 .box_img {
	max-width: 585px;
	margin: 0 auto;
}
.accordion-item {
	margin-bottom: 17px;
}
.accordion-item .accordion-title {
	background-image: url("../images/accordion-title_bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
}
.accordion-item .accordion-content {
	border-bottom: 1px solid #bfc0c2;
	border-left: 1px solid #bfc0c2;
	border-right: 1px solid #bfc0c2;
}
.accordion-title .inner {
	position: relative;
	background-color: #ffffff;
	padding: 30px;
	font-weight: 600;
}
.accordion-title .inner::after {
	border-right: solid 3px #6f523e;
	border-top: solid 3px #6f523e;
	content: "";
	display: block;
	height: 15px;
	position: absolute;
	right: 25px;
	top: 37%;
	transform: rotate(135deg);
	transition: transform .3s ease-in-out, top .3s ease-in-out;
	width: 15px;
}
.accordion-title.open .inner::after {
	top: 45%;
	transform: rotate(-45deg);
}
.accordion_c_03_img {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.accordion_c_03_img .box_l {
	width: 356px;
}
.accordion_c_03_img .support {
	width: 267px;
	background-color: #d2d7ea;
	margin-left: 20px;
	padding: 35px 20px;
}
.accordion_c_03_img .support p.txt {
	font-size: 14px;
	margin-bottom: 25px;
}
.accordion_c_03_img .support h4 {
	font-size: 16px;
	font-weight: 500;
	color: #094e89;
	text-align: center;
	margin-bottom: 19px;
}
.accordion_c_03_img .support .mark {
	position: relative;
	width: 152px;
	margin: 0 auto;
}
.accordion_c_03_img .support .mark p {
	color: #094e89;
	font-size: 16px;
	text-align: center;
	position: absolute;
	top: 6px;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-weight: 500;
}
.accordion_c_03_img .support .box_img {
	width: 162px;
	margin: 0 auto;
}
@media only screen and (max-width: 768px) {
	.wrap_magazine {
		padding-top: 6%;
	}
	.wrap_magazine .area_summary p {
		font-size: 4vw;
	}
	.wrap_magazine .area_summary {
		margin-bottom: 0;
	}
	.accordion {
		margin-top: 6%;
	}
	.accordion-title {
		padding: 3px;
	}
	.accordion-title .inner {
		font-size: 3.8vw;
		padding: 6% 4%;
	}
	.accordion-content {
		padding: 5% 2%;
	}
	.accordion-title .inner::after {
		border-right: solid 2px #6f523e;
		border-top: solid 2px #6f523e;
		content: "";
		display: block;
		height: 13.5%;
		position: absolute;
		right: 25px;
		top: 37%;
		width: 2%;
	}
	.accordion-content .explanation {
		font-size: 3.3vw;
		margin-bottom: 8%;
	}
	.accordion-content.accordion_c_03 .explanation {
		margin-bottom: 4%;
	}
	.accordion-content.accordion_c_03 .attention {
		margin-bottom: 8%;
	}
	.accordion-content.accordion_c_02 .box_img {
		width: 75%;
	}
	.accordion_c_03_img {
		display: block;
	}
	.accordion_c_03_img .box_l {
		width: 80%;
		margin: 0 auto 5%;
	}
	.accordion_c_03_img .support {
		width: 80%;
		margin: 0 auto;
		padding: 6%;
	}
	.box_mark {
		display: flex;
	}
	.mark img {
		width: 50%;
        position: relative;
        right: 10%;
        display: inline-block;
	}
	.accordion_c_03_img .support .box_img {
		width: 55%;
	}
	.accordion_c_03_img .support .mark {
		position: relative;
		width: 45%;
		margin: 0 auto;
		text-align: right;
	}
	.accordion_c_03_img .support .mark p {
		font-size: 4vw;
		top: 36%;
		right: 3%;
		font-weight: 500;
	}
	.accordion_c_03_img .support h4 {
		font-size: 4.5vw;
		margin-bottom: 5%;
	}
	.accordion_c_03_img .support p.txt {
		font-size: 4vw;
		margin-bottom: 8%;
		line-height: 1.3;
	}
}
/********** /マガジン紹介 **********/
/********** 近刊予告 **********/
.wrap_next_issue {
	padding-top: 60px;
}
.swiper_next_issue .next_issue_t_number {
	cursor: pointer;
}
.next_issue_t_number {
	background-color: #e94c63;
	color: #ffffff;
	padding: 12px 0 13px;
	text-align: center;
	font-size: 19px;
}
.popup-body .next_issue_t_number {
	margin-bottom: 15px;
}
.next_issue_02 .next_issue_t_number,
.issue_02 .next_issue_t_number {
	background-color: #6dc7c8;
}
.next_issue_03 .next_issue_t_number,
.issue_03 .next_issue_t_number {
	background-color: #f5a02b;
}
.next_issue_04 .next_issue_t_number,
.issue_04 .next_issue_t_number {
	background-color: #a65593;
}
.next_issue_05 .next_issue_t_number,
.issue_05 .next_issue_t_number {
	background-color: #00a5a8;
}
.next_issue_content {
	display: none;
}
.wrap_next_issue .swiper-slide img {
    display: inline-block;
    margin-bottom: 9px;
}
.popup-content .cover_img {
	width: 165px;
	margin: 0 auto 15px;
}
.popup-content .area_next_issue .day {
	color: #e94c63;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 15px;
}
.popup-content .area_next_issue .book_t {
	color: #000000;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 13px;
}
.popup-content .area_next_issue .kit p {
	color: #ffffff;
	font-size: 15px;
	text-align: center;
	margin-bottom: 13px;
	background-color: #e94c63;
    padding: 5px 0 7px 0;
}
.popup-content .area_next_issue.issue_02 .kit p {
	background-color: #6dc7c8;
}
.popup-content .area_next_issue.issue_03 .kit p {
	background-color: #f5a02b;
}
.popup-content .area_next_issue.issue_04 .kit p {
	background-color: #a65593;
}
.popup-content .area_next_issue.issue_05 .kit p {
	background-color: #00a5a8;
}
.wrap_next_issue .attention {
	text-align: center;
	color: #6f523e;
	margin: 20px auto 0;
}
.area_next_issue {
	max-height: 80vh;
}
.next_issue .popup-body {
    overflow-x: auto;
	overflow-y: scroll;
    max-height: inherit;
}
.area_popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 80%;
    max-width: 650px;
    box-sizing: border-box;
    height: 80vh;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
@media only screen and (min-width: 769px) {
	.area_swiper .swiper-prev-3:after, .area_swiper .swiper-next-3:after {
		display: none;
	}
	.swiper_next_issue .swiper-wrapper {
		display: flex;
		justify-content: center;
		gap: 0 10px;
	}
	.swiper_next_issue .swiper-wrapper {
		display: flex;
		justify-content: center;
		gap: 0 10px;
	}
		.swiper_next_issue .swiper-slide {
		width: 168px;
		height: auto;
	}
	.next_issue .popup-content {
		width: 100%;
	}
	.popup-close {
		position: absolute;
		bottom: 13px;
		right: 17px;
		z-index: 10000;
	}
	.next_issue .popup-content {
		overflow: hidden;
		padding: 0;
		border: 40px solid #ffffff;
	}
	.next_issue .popup-body .kit .box_img {
		padding-bottom: 80px;
	}
}
@media only screen and (max-width: 768px) {
	.wrap_next_issue .swiper-slide .inner p {
		padding: 5% 0 5%;
		font-size: 4vw;
	}
	.swiper_next_issue {
        width: 92%;
        margin: 0 auto;
        overflow: hidden;
	}
	.popup-content .cover_img {
		width: 55%;
		margin: 0 auto 5%;
	}
	.popup-content .area_next_issue .day {
		font-size: 4.2vw;
		margin-bottom: 5%;
	}
	.popup-content .area_next_issue .book_t {
		font-size: 4.5vw;
		margin-bottom: 5%;
		line-height: 1.3;
	}
	.area_next_issue {
		max-height: 450px;
	}
	.popup-content .area_next_issue .kit p {
		font-size: 3.2vw;
		margin-bottom: 3%;
		padding: 2% 0 2% 0;
	}
	.wrap_next_issue .area_swiper .swiper-button-next {
        right: -10px;
    }
	.wrap_next_issue .area_swiper .swiper-button-prev {
        left: -10px;
    }
	.wrap_next_issue {
		padding-top: 6%;
	}
	.area_popup {
		width: 80%;
		padding: 8%;
		height: 500px;
	}
    .next_issue .popup-content {
		width: 100%;
        overflow: hidden;
        padding: 0;
        border: 20px solid #ffffff;
		height: 500px;
    }
    .popup-close {
        position: absolute;
        bottom: 8px;
        right: 8px;
        z-index: 10000;
    }
}
/********** プレゼント **********/
.wrap_present {
	padding-top: 60px;
	margin-bottom: 45px;
}
.present_content {
	display: none;
}
.present_content_01 {
	max-width: 870px;
	margin: 0 auto;
}
.present_content_01 img {
	width: 100%;
	transition: .5s;
	cursor: pointer;
}
.present_content_01 img:hover {
	opacity: .7;
}
.present .popup-content {
	padding: 0;
}
.present .popup-content img {
	width: 100%;
}
@media only screen and (max-width: 768px) {
	.wrap_present {
		margin-bottom: 4%;
		padding-top: 10%;
	}
}
/********** /プレゼント **********/
/********** マガジンケース **********/
.wrap_magazinecase {
	margin-bottom: 45px;
}
.wrap_magazinecase .box_img {
	max-width: 745px;
	margin: 0 auto;
}
@media only screen and (max-width: 768px) {
	.wrap_magazinecase {
		margin-bottom: 4%;
	}
}
/********** 下部ボタン **********/
.fixed{
	position: fixed;
	right: 0;
	left: 0;
	margin: 0 auto;
	bottom: 0;
	background: #ffd1d2;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
	z-index: 100;
}
.fixed.active{
	opacity: 1;
	visibility: visible;
}
.fixed a.apply_btn {
    padding: 8px 17px 7px 13px;
}
.area_foot_btn {
	display: flex;
	justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
	max-width: 1400px;
	margin: 0 auto;
	min-width: 1200px;
}
.fixed .box_l {
	display: flex;
	align-items: center;
}
.fixed .box_l p {
	font-size: 20px;
	color: #6f523e;
	font-weight: 500;
	margin-left: 15px;
}
@media only screen and (max-width: 768px) {
	.area_foot_btn {
		min-width: auto;
	}
	.fixed {
		background: unset;
        bottom: 0;
        padding: 10px 0 13px;
        background-color: #373737;
	}
	.fixed .sp {
	    text-align: center;
	}
	.fixed a.apply_btn {
        padding: 2% 2% 2% 2%;
        width: 90%;
        font-size: 5.8vw;
        display: flex;
        margin: 0 auto;
        align-items: center;
	}
	a.apply_btn span.free {
		font-size: 4.8vw;
        padding: 2% 2% 2.5% 1.5%;
	}
	a.apply_btn p .arrow {
		width: 5%;
        margin-left: 4%;
		vertical-align: baseline;
	}
	a.apply_btn p .arrow img {
		width: 100%;
	}
	a.apply_btn p {
		margin-left: 2%;
		width: 70%;
	}
}
/********** /マガジンケース **********/
/********** フッター **********/
#footer {
    padding-top: 15px;
    text-align: center;
	padding-bottom: 96px;
    background-color: #fff;
	border-top: 1px solid #EEEEEE;
}
#footer .footerlink {
    text-align: center;
    padding-bottom: 10px;
	display: block;
}
.footerlink {
    font-size: 12px;
}
.footerCopyright {
    text-align: center;
    border-top: 1px solid #EEEEEE;
    background: #FFFFFF;
    padding: 15px 0 0 0;
}
.footerlink ul {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footerlink li {
    font-size: inherit;
}
#footer .footerlink li {
    display: inline-block;
    margin: 0 10px;
}
#footer .footerlink li a {
    color: #333;
	text-decoration: none;
    text-decoration: underline;
}
.footerCopyrightInner {
    margin: 0 auto;
    position: relative;
    padding-bottom: 10px;
	text-align: center;
}
.footerCopyrightInner img {
    vertical-align: middle;
	max-width: 100%;
}
.footerCopyrightInner img {
    vertical-align: middle;
}
@media only screen and (max-width: 768px) {
	footer {
		padding-bottom: 0;
	}
	.footerCopyright {
		padding: 15px 0;
	}
	.footerCopyright .footerCopyrightInner {
		padding-bottom: 0;
    }
	footerCopyright .footerCopyrightInner a img {
			width: 56px;
	}
	.footerCopyright .footerCopyrightInner > img {
			width: 305px;
	}
	#footer .footerlink li {
		display: inline-block;
		margin: 5px 10px;
	}
	#footer {
		padding-bottom: 18%;
	}
}
/********** /フッター **********/
