@charset "utf-8";

/* common */
.contentContainer img {
	vertical-align: top;
}

.fontNotoSansJp, .contentContainer {font-family: 'Noto Sans Japanese';}
.fontJinsNextLight {font-family: jins_next_ttlight;}
.fontJinsNextRegular {font-family: jins_next_ttregular;}
.fontJinsNextMedium {font-family: jins_next_ttmedium;}
.fontJinsNextBold {font-family: jins_next_ttbold;}

/* content */

/* reset css */
.main_wrap {
	background: white;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	line-height: 1.5;
}
.main_wrap * {
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	margin-block-start: 0;
	margin-block-end: 0;
}
.main_wrap nav ul, .main_wrap nav, .main_wrap ul, .main_wrap li {
    list-style:none;
	padding-inline-start: 0;
	margin-block-start: 0;
    margin-block-end: 0;
}
.main_wrap button {
    padding-block: 0;
    padding-inline: 0;
    border-width: 0;
}
.main_wrap sup {
	font-size: 37.5%;
    vertical-align: super;
}
.main_wrap a {
	opacity: 1;
	transition: 0.3s;
}
.main_wrap a:hover {
	opacity: 0.7;
	cursor: pointer;
}

/* original common */
:root {
  --default: #272727;
  --gray: #888888;
  --olive: #9A8A72;
  --max-w: 1440px;
  --max-w-c: 1296px;
  --max-w-c-inner: 1000px;
  --bold: 700;
  --semibold: 600;
  --medium: 500;
  --regular: 400;
  --light: 300;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.main_wrap img {
	width: 100%;
}


/* search */
.search_wrap {
	position: fixed;
	width: 393px;
	bottom: 20px;
	right: 0;
	z-index: 11;
	pointer-events: none;
}
.search_wrap .search_btn,
.close_modal_wrap {
	position: relative;
	width: 128px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 12px;
	background: black;
	color: white;
	font-weight: var(--bold);
	padding: 16px 41px 16px 50px;
	border-radius: 12px;
	pointer-events: all;
	margin: 0 auto;
	cursor: pointer;
}
.search_wrap .search_btn::before,
.close_modal_wrap .close_modal::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 18px;
	transform: translateY(-50%);
	width: 18px;
	height: 12px;
	background: url(../img/icon_menu.svg)no-repeat center / contain;
}
.search_box.active .search_wrap .search_btn {
	background: white;
	color: black;
}
.search_box.active .search_wrap .search_btn::before {
	width: 13px;
	height: 13px;
	background: url(../img/icon_close.svg)no-repeat center / contain;
}
.side_menu, .img_modal {
  position: fixed;
  bottom: 0;
  right: -393px;
  width:393px;
	height: min(calc(100vh - 100px), 762px);
  background: rgba(0, 0, 0, 0.95);
  z-index: 10;
  transition: 0.4s ease;
  color: white;
    padding: 40px 0 90px;
  border-radius: 12px 12px 0 0;
}
.img_modal {
	padding: 40px 0 40px;
}
.side_menu::before,
.img_modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 12px 12px 0 0;
  z-index: -1;
}
.side_menu h2,
.img_modal h3 {
	width: 85%;
	font-size: 44px;
	font-family: jins_next_ttmedium;
	margin: 0 auto;
}
.side_menu .subttl,
.img_modal .subttl {
	padding: 0 8% 25px;
	font-size: 14px;
	border-bottom: 1px solid white;
	margin-bottom: 25px;
}
.img_modal .boder {
	border-bottom: 1px solid white;
	margin-bottom: 25px;
}
.side_menu a,
.img_modal a {
	color: white;
	text-decoration: none;
}
.side_menu_wrap,
.img_modal_wrap {
	position: relative;
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
  	-webkit-overflow-scrolling: touch;
}
.search_box.active .side_menu,
.img_modal.active {
  right: 0;
}
.close_btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.search_custom_keyword {
	width: 85%;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	gap: 7px;
	padding-right: 20px;
}
.search_custom_keyword li {
	width: fit-content;
	font-size: 14px;
    font-weight: var(--bold);
	border: 1px solid white;
	border-radius: 50vw;
	padding: 12px;
}
.search_custom_keyword li span {
	font-size: 10px;
}

/* modal */
.img_modal {
	z-index: 15;
}
.img_modal ._img {
	position: relative;
	width: 85%;
	margin: 0 auto 10px;
}
.img_modal .lens_abs {
	width: 33%;
	position: absolute;
	left: 0;
	bottom: 0;
	aspect-ratio: 1 / 1;
	padding: 4%;
}
.modal_caption {
	text-align: center;
	font-size: 14px;
	margin-bottom: 20px;
}
._btn._buy {
	width: 100px !important;
	color: black;
	background: #F0FF00;
	margin: 0 auto;
}
.choose_glasses ._btn._buy {
	width: 120px !important;
	max-width: none !important;
	font-size: 12px;
}
.close_modal_wrap {
	bottom: 20px;
	background: transparent;
}
.close_modal {
	background: transparent;
	color: white;
}
.close_modal_wrap .close_modal::before {
	width: 13px;
	height: 13px;
	background: url(../img/icon_close_wh.svg) no-repeat center / contain;
}
.modal_rel {
	position: relative;
	height: 100%;
}

/* fadein */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

#trend, #shape, #frame, #gira-cut,
#change, #clear, #drive, #carry,
#_2way, #kids, #customize {
	padding-top: 100px;
	margin-top: -100px;
}

/* btn */
._btn {
	display: flex;
	justify-content: center;
	color: white;
	background: black;
	border-radius: 8px;
	padding: 0.5rem;
	font-size: min(12px, 0.85vw);
	position: relative;
	z-index: 1;
	transition: .3s;
	overflow: hidden;
}
._btn:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: rgba(255, 255, 255, 1);
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .3s;
}
a._btn:hover {
	opacity: 1;
	color: black;
	box-shadow: 0 0 0 1px black;
}
._btn:hover::before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}
._btn.fontJinsNextLight span {
	display: block;
	transform: translateY(0.1rem);
}

/* h1 */
.h1_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* kv */
.kv {
	width: 100%;
	position: relative;
}
.kv_movie {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.kv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(20px);
  transform: scale(1.1);
}
.kv_inner {
  position: relative;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.kv_inner .kv_main {
  width: 100%;
  height: auto;
  display: block;
}
.kv .kv_ttl {
	width: 100%;
	max-width: var(--max-w);
	margin: 0 auto;
	position: absolute;
	bottom: -4.5%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.kv .kv_ttl h2 {
	width: 46%;
	max-width: 649px;
	margin: 0 auto;
}

/* lead */
.lead {
	width: 100%;
	max-width: var(--max-w);
	margin: 0 auto min(2%, 40px);
	position: relative;
}
.lead_wrap {
	width: 90%;
	max-width: var(--max-w-c);
	margin: 0 auto;
	position: relative;
	padding-top: 4.5%;
}
.lead_wrap::before,
.lead_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 1.5%;
    width: 1px;
    background-color: black;
}
.lead_wrap::before {
    left: 0;
}
.lead_wrap::after {
    right: 0;
}

.lead_ttl {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1%;
}
.lead_ttl .img_wrap {
  display: flex;
  width: 190%;
  animation: scrollImgs 5s linear infinite;
}
@keyframes rotateDeco {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@keyframes flashDeco {
  33%   { background-image: url(../img/lead_ttl_deco.png); }
  33.8% { background-image: url(../img/lead_ttl_deco_yl.png); }
  34.6% { background-image: url(../img/lead_ttl_deco.png); }
  35.4% { background-image: url(../img/lead_ttl_deco_yl.png); }
  36.2% { background-image: url(../img/lead_ttl_deco.png); }

  66%   { background-image: url(../img/lead_ttl_deco.png); }
  66.8% { background-image: url(../img/lead_ttl_deco_yl.png); }
  67.6% { background-image: url(../img/lead_ttl_deco.png); }
  68.4% { background-image: url(../img/lead_ttl_deco_yl.png); }
  69.2% { background-image: url(../img/lead_ttl_deco.png); }

  96%   { background-image: url(../img/lead_ttl_deco.png); }
  96.8% { background-image: url(../img/lead_ttl_deco_yl.png); }
  97.6% { background-image: url(../img/lead_ttl_deco.png); }
  98.4% { background-image: url(../img/lead_ttl_deco_yl.png); }
  99.2% { background-image: url(../img/lead_ttl_deco.png); }
  100%  { background-image: url(../img/lead_ttl_deco.png); }
}
.lead_ttl_rel {
  width: 12.5%;
  flex-shrink: 0;
    position: relative;
    padding: 2% 0 2% 2%;
}
.lead_ttl_rel::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 6%;
	width: 40%;
	padding-top: 40%;
	background: url(../img/lead_ttl_deco.png) no-repeat left / contain;
	z-index: -1;

	animation: rotateDeco 10s linear infinite, flashDeco 10s steps(1) infinite;
}
@keyframes scrollImgs {
  from { transform: translateX(0); }
  to   { transform: translateX(-12.5%); }
}
.lead_ttl_rel::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/lead_ttl_yl.png) no-repeat center right / 84%;
	opacity: 0;
	pointer-events: none;
	animation: flashImg 10s steps(1) infinite;
	z-index: 2;
}
@keyframes flashImg {
	33%   { opacity: 0; }
	33.8% { opacity: 1; }
	34.6% { opacity: 0; }
	35.4% { opacity: 1; }
	36.2% { opacity: 0; }

	66%   { opacity: 0; }
	66.8% { opacity: 1; }
	67.6% { opacity: 0; }
	68.4% { opacity: 1; }
	69.2% { opacity: 0; }

	96%   { opacity: 0; }
	96.8% { opacity: 1; }
	97.6% { opacity: 0; }
	98.4% { opacity: 1; }
	99.2% { opacity: 0; }
	100%  { opacity: 0; }
}
.lead_date {
	width: 21.7%;
	max-width: 280px;
	background: #F0FF00;
	color: black;
	border-radius: 50vw;
	margin: 0 auto 0.5%;
	text-align: center;
	font-size: min(14px, 0.9vw);
	font-weight: var(--bold);
	padding: 2px 0;
}
.lead_flex_txt {
	width: 100%;
	font-family: jins_next_ttregular;
	font-size: min(12px, 0.79vw);
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid black;
	padding: 0 3% 1%;
	margin: 0 auto 4%;
}
.lead_flex_txt p {
	width: fit-content;
}
.lead_flex_img {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 12% 5%;
	margin: 0 auto 3%;
	border-bottom: 1px solid black;
}
.lead_wrap ._img {
	width: 45.6%;
}
.lead_wrap ._txt {
	position: relative;
	padding-top: 7.5%;
	width: 49.8%;
}
.lead_wrap ._txt .scroll_down {
	position: absolute;
	right: 0;
	top: 50%;
	height: 13%;
	writing-mode: vertical-rl;
	font-family: jins_next_ttregular;
	font-size: min(0.5vw, 8px);
}
.lead_wrap ._txt .scroll_down p {
	position: relative;
	padding-left: 10px min;
	border-left: 2px solid rgba(0, 0, 0, 0.2);
	animation: wiggle 2s ease-in-out infinite;
}
@keyframes wiggle {
	0%   { transform: translateY(0); }
	15%  { transform: translateY(-5px); }
	30%  { transform: translateY(0); }
}
.lead_wrap ._txt .scroll_down p::after {
	content: "";
	position: absolute;
	top: 0;
	left: -2px;
	width: 2px;
	padding-top: 15%;
	background: black;
	animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
	0% {
		top: 0;
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	100% {
		top: 85%;
		opacity: 0;
	}
}
.lead_wrap ._txt h3 {
	font-size: min(24px, 1.8vw);
	font-weight: var(--bold);
	line-height: 1.6;
	margin-bottom: 3%;
}
.lead_wrap ._txt ._description {
	font-size: min(14px, 0.9vw);
	font-weight: var(--bold);
	line-height: 2.8;
	margin-bottom: 10%;
}
.lead_wrap .description_flex {
	display: flex;
	justify-content: space-between;
}
.lead_wrap .description_flex ._left {
	width: 62%;
	padding-bottom: 12%;
}
.lead_wrap .description_flex ._right {
	width: 36.6%;
	margin-top: auto;
	margin-bottom: 0;
}
.lead_custom {
	position: relative;
	width: 100%;
	padding: 0 12%;
	display: flex;
	justify-content: space-between;
	align-items: start;
}
.lead_custom h3 {
	font-size: min(20px, 1.2vw);
	font-weight: var(--bold);
	margin-bottom: 5%;
}
.lead_custom .subttl {
	font-size: min(20px, 1.2vw);
	font-weight: var(--light);
}
.lead_custom ._abs {
	font-family: jins_next_ttregular;
	font-size: min(12px, 0.79vw);
	top: 0;
	left: -2%;
	position: absolute;
	writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
	.lead_custom ._abs {
		left: -30px;
	}
}
.lead_custom .subttl span {
	font-size: min(14px, 0.9vw);
	font-weight: var(--regular);
}
.lead_custom .lead_custom_ttl {
	width: 30%;
}
.lead_custom .lead_custom_keyword {
	width: 65%;
	display: flex;
	flex-wrap: wrap;
	gap: 1%;
	row-gap: 8px;
}
.lead_custom .lead_custom_keyword a {
	text-decoration: none;
}
.lead_custom .lead_custom_keyword li {
	font-size: min(14px, 0.9vw);
	font-weight: var(--bold);
	width: fit-content;
	padding: min(1%, 10px) min(3%, 15px);
	border: 1px solid black;
	border-radius: 50vw;
}
.lead_custom .lead_custom_keyword li span {
	font-size: 10px;
}

/* sec01 trend */
.sec01 {
	width: 100%;
}
.bg_yellow {
	width: 100%;
	background: #F0FF00;
	overflow: hidden;
}
.max-w-c {
	width: 100%;
	max-width: var(--max-w-c);
	margin: 0 auto;
}
.max-w-c a {
	text-decoration: none;
}
.sec_flex {
	padding: 3% 12% 4%;
	display: flex;
	justify-content: space-between;
}
.bg_yellow .sec_ttl {
	width: 100%;
	position: relative;
}
.bg_yellow .boder_bottom {
	width: 32%;
}
.bg_yellow .boder_bottom .ttl_box {
	position: relative;
	margin-bottom: 7%;
	padding-bottom: 5%;
}
.bg_yellow .boder_bottom .yl_ttl {
	width: 100%;
	display: flex;
	align-items: center;
	font-size: min(24px, 1.8vw);
	line-height: 1;
	font-weight: var(--bold);
	line-height: 1.5;
}
.bg_yellow .boder_bottom .yl_ttl::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200vw;
	height: 1px;
	background: black;
}
.bg_yellow .boder_bottom .yl_ttl span {
	font-size: min(52px, 4vw);
	font-family: jins_next_ttmedium;
	letter-spacing: -2%;
	padding-top: 0.8rem;
	padding-right: 3%;
}
.bg_yellow .boder_bottom .ttl_box ._txt {
	font-size: min(14px, 0.9vw);
	margin-top: -3.5%;
}
.sec01 .bg_yellow .boder_bottom .ttl_box ._txt {
	margin-top: 0;
}
.bg_yellow .boder_bottom .subttl {
	font-size: min(36px, 2.7vw);
	font-family: jins_next_ttmedium;
	line-height: 1.2;
	margin-bottom: 3%;
}
.bg_yellow .boder_bottom .subttl span {
	font-size: 90%;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: bold;
}
.bg_yellow .note {
	font-size: min(14px, 0.9vw);
	font-weight: var(--light);
	margin-bottom: 4%;
	padding-left: min(14px, 0.9vw);
	text-indent: calc(min(14px, 0.9vw) * -1);
}
.bg_yellow .img_modal .note {
	width: 80%;
	margin: 0 auto 5%;
	text-align: center;
	font-size: 11px;
	padding-left: 0;
	text-indent: 0;
}
.trend_img {
    position: relative;
    width: 68%;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2%;

    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
}
.trend_img li {
	width: 100%;
	position: relative;
	display: flex;
}
.trend_img li ._left_txt,
.trend_img li ._right_txt {
	position: absolute;
	width: 6%;
	font-family: jins_next_ttlight;
    font-size: min(12px, 0.79vw);
	writing-mode: vertical-rl;
	line-height: 2;
	top: 0;
}
.sec01 .trend_img li ._right_txt {
	text-align: right;
}
.trend_img li ._left_txt {
	width: 5%;
	height: 100%;
	left: 2%;
	padding-top: 5%;
}
.trend_img li ._right_txt {
	width: 5%;
	height: 100%;
	right: -6%;
	text-align: center;
	padding-bottom: 7%;
}
.trend_img li ._img {
	width: 100%;
	padding-left: 8%;
}
._rel {
	position: relative;
}
.btn_more_img {
	position: relative;
	display: block;
	overflow: hidden;
}
.btn_more_img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	transform: scaleX(0);
	transform-origin: 100% 50%;
	transition: transform 0.3s ease;
	z-index: 1;
}
.btn_more_img._off::before {
	display: none;
}
a.btn_more_img:hover {
	opacity: 1;
}
.btn_more_img:hover::before {
	transform-origin: 0% 50%;
	transform: scaleX(1);
}
.btn_more_img._off:hover::before {
	display: none;
}
._arrow {
	position: relative;
	padding-right: 15px;
	opacity: 1;
	transition: 0.3s;
}
._abs_more {
	color: #000;
	position: absolute;
	font-family: jins_next_ttmedium;
	font-size: min(12px, 0.79vw);
	top: 10px;
	right: 15px;
	z-index: 2;
}
.img_1column ._abs_more {
	top: 20px;
}
.btn_more_img:hover ._abs_more {
	color: #fff;
}
._arrow::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 10px;
	padding-top: 10px;
	background: url(../img/icon_arrow_right.svg)no-repeat center / contain;
	z-index: 2;
}
._abs_more ._arrow::after {
	transform: translateY(-60%);
}
.btn_more_img:hover ._abs_more ._arrow::after {
	background: url(../img/icon_arrow_right_wh.svg)no-repeat center / contain;
}
._img a {
	font-size: min(10px, 0.6vw);
	font-family: jins_next_ttlight;
	text-decoration: none;
}
.side_boder_box {
	width: 90%;
    max-width: var(--max-w-c);
	margin: 0 auto;
	border-left: 1px solid black;
	border-right: 1px solid black;
	padding-top: 4%;
}
.side_boder_box a {
	text-decoration: none;
}
.color_lens_wrap {
	position: relative;
	padding: 5% 12%;
	display: flex;
	justify-content: space-between;
}
.color_lens_wrap ._abs {
	position: absolute;
    font-family: jins_next_ttregular;
    font-size: min(12px, 0.79vw);
    top: 3%;
    right: -1.5%;
    writing-mode: vertical-rl;
}
.color_lens_wrap ._left {
	width: 33%;
}
.color_lens_wrap ._right {
	width: 62%;
}
.sec01 .max-w-c._01 {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
}
.color_lens_ttl {
	font-size: min(32px, 2.5vw);
	font-family: jins_next_ttmedium;
}
.side_deco {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding-bottom: 0.5%;
	margin-bottom: 8%;
	font-size: min(18px, 1.3vw);
	font-weight: var(--medium);
}
.side_deco .jp {
	font-size: min(14px, 0.9vw);
}
.side_deco ._start,
.side_deco ._end {
	position: absolute;
	display: block;
	top: 50%;
	transform: translateY(-60%);
	font-size: 333.33%;
	font-weight: var(--light);
	padding-top: 1.5%;
}
.side_deco ._start {
	left: 0;
}
.side_deco ._end {
	right: 0;
}
.sec01 .side_deco {
	width: 96%;
	font-size: min(12px, 0.79vw);
	font-weight: var(--medium);
	margin-bottom: 4%;
}
.color_lens_list {
	width: 85%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 10%;
	margin-left: -5%;
}
.color_lens_list li {
	width: calc(100% / 3);
	font-size: min(10px, 0.6vw);
	font-weight: var(--bold);
	text-align: center;
}
.sec01 .max-w-c._01 ._btn {
	width: 33%;
}
.color_lens_img {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.color_lens_img li {
	width: 48%;
	display: flex;
	position: relative;
}
.color_lens_img li ._img {
	width: 100%;
	padding-right: 8%;
}
.color_lens_img li ._right_txt {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	font-family: jins_next_ttlight;
    font-size: min(12px, 0.79vw);
    writing-mode: vertical-rl;
    line-height: 2;
}
.color_lens_img li ._item {
	width: 40%;
	position: absolute;
	bottom: 5%;
	right: 0;
	background: white;
	text-align: center;
	padding: 5% 0 1%;
	z-index: 3;
}
.color_lens_img li ._item ._ttl {
	font-size: min(10px, 0.6vw);
	font-family: jins_next_ttmedium;
}
.color_lens_img li ._item ._img {
	width: 50%;
	margin: 0 auto 3%;
}
.color_lens_img li ._item ._color {
	font-size: min(10px, 0.6vw);
}
.sec01 .max-w-c._02 {
	padding: 5% 1%;
}
.max-w-c .recommend_ttl {
	text-align: center;
	font-size: min(36px, 2.7vw);
	font-family: jins_next_ttmedium;
	margin-bottom: 2%;
}
.scroll_rel {
	width: 100%;
	position: relative;
	margin-bottom: 3%;
}
.scroll_wrap {
	width: 100%;
	overflow: hidden;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;

	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE 10+ */
}
.scroll_wrap::-webkit-scrollbar {
  display: none;
}
.recommend_item {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	row-gap: 30px;
	padding-bottom: 3%;
}
.scroll_wrap .recommend_item {
	width: 150vw;
	flex-wrap: nowrap;
	justify-content: unset;
}
.recommend_item li {
	width: min(calc(100% / 5), 260px);
	padding: 0 0.5%;
}
.scroll_wrap .recommend_item li {
	flex: 0 0 calc(150vw / 10.3);
	max-width: 260px;
	padding: 5px;
}
.recommend_item li img {
	margin-bottom: min(5%, 15px);
}
.recommend_item ._price {
	position: relative;
	font-family: 'Noto Sans Japanese';
	max-width: 260px;
	font-size: min(14px, 0.9vw);
}
.recommend_item ._price ._gray {
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	color: #888888;
	text-decoration: underline;
}
._btn._view_all {
	width: 8%;
	max-width: 100px;
	margin: 0 auto;
}
._btn._view_all.mb {
	margin: 0 auto 5%;
}
.custom_scrollbar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  height: 6px;
  background: rgba(200, 200, 200, 0.3);
  border-radius: 3px;
}
.scroll_thumb {
  height: 100%;
  background: rgba(0, 0, 0, 1);
  border-radius: 3px;
  transform: translateX(0);
}
.bg_yellow .sec_ttl ._custom_ok {
	position: absolute;
	width: 100%;
	bottom: -10%;
	left: 0;
}
.bg_yellow .sec_ttl ._custom_ok span {
	position: relative;
	background: white;
	border-radius: 5px 0 0 5px;
	padding: 8px 10px 8px 8%;
	font-size: min(10px, 0.6vw);
}
.bg_yellow .sec_ttl ._custom_ok span::before {
	content: "";
    position: absolute;
    top: 50%;
	left: 4%;
	transform: translateY(-50%);
	width: 18%;
	padding-top: 18%;
	background: url(../img/icon_custom.svg)no-repeat center / contain;
}
.bg_yellow .sec_ttl ._custom_ok span::after {
    content: "";
    position: absolute;
    top: 0;
    right: -11%;
    width: 12%;
    height: 100%;
    background: white;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    border-radius: 0 5px 5px 0;
}
.choose_glasses {
	display: flex;
	width: 67%;
	justify-content: space-between;
	margin: 0 auto;
}

/* sec02 */
.point_txt {
	font-size: min(16px, 1.1vw);
	margin-bottom: 7%;
}
.point_txt .highlight {
	color: white;
	background: black;
	padding: 5px 10px;
}
.point_txt .small {
	font-size: 75%;
}
.sec02 .bg_yellow .boder_bottom {
	width: 50%;
}
.img_1column {
	position: relative;
	width: 45%;
}
.img_1column ._left_txt,
.img_1column ._right_txt {
	position: absolute;
	z-index: 1;
	text-align: center;
	top: 0;
	height: 100%;
    font-size: min(12px, 0.79vw);
    writing-mode: vertical-rl;
	font-family: jins_next_ttlight;
    line-height: 2;
	padding-bottom: 6%;
}
.img_1column ._left_txt {
	left: 0;
}
.img_1column ._right_txt {
	right: 0;
}
.img_1column ._img {
	width: 100%;
	padding: 0 5%;
}
.sec02 .side_boder_box {
	padding: 3.5% 0;
}

/* sec03 */
.sec03 .bg_yellow .boder_bottom {
	width: 50%;
}
.sec03 .side_boder_box {
	padding-bottom: 5%;
}
.tag_list {
	position: absolute;
	bottom: 3%;
	left: 5%;
	width: 100%;
	z-index: 2;
}
.tag_list li {
	color: white;
	font-size: min(14px, 0.9vw);
	width: fit-content;
	padding: 10px 20px 7px 20px;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 50vw;
}
.tag_list li:not(:last-of-type) {
	margin-bottom: 8px;
}
.tag_list li span {
	font-size: 85.7%;
}
.dashed_line {
	color: transparent;
	width: 75%;
	height: 1px;
	border-top: none;
	border-bottom: 1px dashed black;
	margin: 0 auto;
	margin-bottom: 3%;
}
.details_ttl {
	font-family: jins_next_ttmedium;
	font-size: min(28px, 2.2vw);
	text-align: center;
	margin-bottom: 3%;
}
.details_subttl {
	font-size: min(16px, 1.1vw);
	font-weight: var(--bold);
	margin-bottom: 3%;
}
.details_flex {
	display: flex;
	width: 53%;
	margin: 0 auto;
	justify-content: space-between;
	align-items: stretch;
}
.details_flex ._left {
	width: 48%;
	display: flex;
	flex-direction: column;
}
.details_flex ._right {
	width: 47%;
}
.details_flex ._right ._round {
	border-radius: 12px;
}
.details_flex ._right ._boder {
	border: 1px solid #DDDDDD;
}
.sec03 .side_deco {
	width: 70%;
}
.side_deco._1line ._start, .side_deco._1line ._end {
    font-size: 168.75%;
    font-weight: var(--light);
}
.details_txt {
	font-size: min(14px, 0.9vw);
	margin-bottom: 10%;
	font-weight: var(--regular);
}
.details_customize {
	font-size: min(18px, 1.3vw);
	font-weight: var(--bold);
	margin-bottom: 2%;
}
.sec03 ._btn._02 {
    width: 52%;
}
.banner {
	width: 95%;
	margin-top: auto;
	margin-bottom: 0;
}

/* sec04 */
.sec04 .side_boder_box {
	padding-bottom: 5%;
}
.sec04 .bg_yellow .boder_bottom {
    width: 50%;
}
.sec04 .bg_yellow .boder_bottom .subttl {
	margin-bottom: 0;
}
.sec04 .bg_yellow .boder_bottom .ttl_box {
	margin-bottom: 4%;
    padding-bottom: 3%;
}
.sec04 .details_flex ._right.mt {
	margin-top: -1.5%;
}
.sec04 .side_deco._01 {
	width: 70%;
}
.sec04 .side_deco._02 {
	width: 77%;
}
.sec04 .details_customize {
	text-align: center;
	margin-bottom: 0.3%;
}
.sec04 .details_flex {
	margin: 0 auto 3.5%;
}
.sec04 ._btn {
	width: 8%;
	margin: 0 auto;
	max-width: 100px;
}
.release_rel {
	position: relative;
	width: 100%;
}
._release {
	position: absolute;
	top: 10%;
	right: 32%;
	width: 12.5%;
}
.sec04 .about_lens {
	width: 80%;
	background: white;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5% 3%;
}
.sec04 .about_lens ._left {
	width: 50%;
}
.sec04 .about_lens ._left ._ttl {
	font-size: min(14px, 0.9vw);
	font-weight: var(--bold);
	margin-bottom: 3%;
}
.sec04 .about_lens ._left ._txt {
	font-size: min(12px, 0.79vw);
	font-weight: var(--regular);
	line-height: 1.5;
}
.sec04 .details_flex ._left {
	width: 54%;
}
.sec04 .details_flex ._right {
	width: 44%;
}
.sec04 .about_lens ._right {
	width: 50%;
}

/* sec05 */
.sec05 .side_boder_box {
	padding-bottom: 5%;
}
.sec05 .bg_yellow .boder_bottom {
    width: 50%;
}
.sec05 ._btn {
	width: 72%;
	max-width: 230px;
}
._point {
	width: 100%;
	font-size: min(12px, 0.79vw);
}
._point span {
	position: relative;
	border-radius: 8px;
	border: 1px solid black;
	padding: 0.5rem 0.5rem 0.5rem 5%;
}
._point span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 6%;
	transform: translateY(-45%);
	width: 12%;
	padding-top: 12%;
	background: url(../img/icon_question.svg)no-repeat center / contain;
}
.sec05 .side_deco {
	width: 100%;
}
.sec05 .details_flex ._left {
	width: 48%;
}
.sec05 .details_flex ._right {
	width: 50%;
}
.sec05 .bg_yellow .boder_bottom .subttl {
	margin-bottom: 0;
}
.sec05 .btn_more_img {
	margin-bottom: 3%;
}

/* sec06 */
.sec06 .bg_yellow .boder_bottom {
    width: 50%;
}
.sec06 .max-w-c._02 {
	padding: 2.5% 0 5%;
}
.sec06 ._btn {
	width: 14%;
	max-width: 177px;
	margin: 0 auto;
}
.bg_yellow .boder_bottom .ttl_box ._txt .small {
	font-size: 70%;
}

/* sec07 */
.sec07 .bg_yellow .boder_bottom {
    width: 50%;
}
.sec07 .max-w-c._02 {
	padding: 2.5% 0 5%;
}
.sec07 ._btn {
	width: 8%;
	max-width: 100px;
	margin: 0 auto;
}

/* sec08 */
.sec08 .bg_yellow .boder_bottom {
    width: 50%;
}
.sec08 .side_boder_box {
	padding-bottom: 5%;
}

/* sec09 */
.sec09 .bg_yellow .boder_bottom {
    width: 50%;
}
.sec09 .side_boder_box {
	padding-bottom: 5%;
}

/* online shop */
.bg_cream {
	width: 100%;
	background: rgba(240, 255, 0, 0.2);
	overflow: hidden;
	padding: 20px 0;
}
.online .small_ttl {
	font-size: min(12px, 0.79vw);
	position: relative;
	width: 100%;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 2% 10px;
}
.online .small_ttl::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 150vw;
	height: 1px;
	background: black;
}
.online ._left {
	width: 50%;
}
.online ._right {
	width: 50%;
}
.online h2 {
	font-family: jins_next_ttmedium;
	font-size: min(72px, 5.5vw);
	line-height: 1.06;
}
.online .h2_bottom_txt {
	font-size: min(12px, 0.79vw);
	margin-bottom: 5%;
}
.online ._left ._txt {
	font-size: min(14px, 0.9vw);
}
.online ._right .item_flex {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin-bottom: 7%;
}
.online ._right .item_flex ._abs {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10%;
	z-index: 2;
}
.online ._right .item_flex ._item {
	position: relative;
	width: 47%;
	aspect-ratio: 1 / 1;
	background: #FAFAFA;
	display: flex;
	align-items: center;
	justify-content: center;
}
.online ._right .item_flex ._item p {
	width: 100%;
	position: absolute;
	z-index: 2;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
	color: #888888;
	font-size: min(12px, 0.79vw);
}
.online ._right .item_flex ._item._01 p {
	bottom: 17%;
}
.online ._right .item_flex ._item._02 img {
	width: 50%;
	margin-top: -15%;
	display: block;
}
.online ._right .item_flex ._item._02 p {
	bottom: 15%;
}
.online ._btn {
	text-decoration: none;
	margin: 0 auto 4%;
	width: 47.5%;
	/* max-width: 144px; */
}
.online .sec_flex {
	padding: 3% 12% 0;
}
.online .btn_flex {
	display: flex;
	width: 29%;
	margin: 0 auto;
	justify-content: space-between;
}

/* everything_is_here */
.everything_is_here {
	width: 50%;
	max-width: 361px;
	margin: 0 auto;
	padding: min(5%, 70px) 0;
}
.everything_is_here h2 {
	text-align: center;
	font-size: min(28px, 2.2vw);
	font-family: jins_next_ttmedium;
}
.everything_is_here .subttl {
	text-align: center;
	font-size: min(14px, 0.9vw);
	margin-bottom: 5%;
}
.everything_banner_list {
	display: flex;
	justify-content: space-between;
}
.everything_banner_list li {
	width: 48.5%;
}
.everything_banner_list li img {
	margin-bottom: 4%;
}
.everything_banner_list li p {
	font-size: min(10px, 0.6vw);
}
.everything_banner_list a {
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}

	.main_wrap {
		background: url(../img/s_bg.png) repeat-y top / 100%;
	}

	/* kv */
	.kv .kv_ttl {
		bottom: -7.5%;
	}
	.kv .kv_ttl h2 {
		width: 85%;
		max-width: none;
	}

	/* btn */
	._btn {
		font-size: 3vw;
	}
	._btn._view_all {
		max-width: none;
		width: 32%;
	}
	.btn_more_img:hover::before {
		display: none;
	}
	.btn_more_img:hover ._abs_more {
		color: black;
	}
	.btn_more_img:hover ._abs_more ._arrow::after {
		background: url(../img/icon_arrow_right.svg)no-repeat center / contain;
	}
	._btn:hover::before {
		display: none;
	}
	a._btn:hover {
		color: white;
	}

	/* search */
	.search_wrap {
		width: 100%;
		max-width: none;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	.side_menu, .img_modal {
		width: 100%;
		right: -100vw;
		height: 90vh;
		padding: 10% 0;
	}
	.img_modal {
		padding: 10% 0 0;
	}
	.modal_rel {
		height: calc(90vh - 7%);
	}
	.side_menu h2, .img_modal h3 {
		font-size: 11vw;
	}
	.side_menu .subttl, .img_modal .subttl {
		font-size: 3.2vw;
		margin-bottom: 5%;
	}
	.modal_caption {
		font-size: 3.2vw;
		margin-bottom: 5%;
	}
	.side_menu_wrap {
		height: 69vh;
	}
	.img_modal_wrap {
		height: 75vh;
	}
	.search_wrap .search_btn, .close_modal_wrap {
		width: 34%;
		font-size: 3.2vw;
		padding: 4% 5% 4% 10%;
	}
	.search_custom_keyword {
		gap: 0.8rem;
		padding-right: 5%;
	}
	.search_custom_keyword li {
		font-size: 3.2vw;
		padding: 3%;
	}
	.search_wrap .search_btn::before, .close_modal_wrap .close_modal::before {
		width: 15%;
		height: auto;
		padding-top: 15%;
		left: 14%;
	}
	.search_box.active .search_wrap .search_btn::before {
		width: 10%;
		height: auto;
		padding-top: 10%;
		left: 13%;
	}
	._btn._buy {
		width: 24% !important;
	}
	.close_modal_wrap {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 15px;
	}

	/* lead */
	.lead {
		max-width: none;
		margin: 0 auto;
	}
	.lead_wrap {
		width: 100%;
		max-width: none;
		padding-top: 9%;
	}
	.lead_ttl .img_wrap {
		width: calc(8 * 20%);
		animation: scrollImgs 4s linear infinite;
	}
	@keyframes scrollImgs {
		from {
			transform: translateX(0);
		}
	
		to {
			transform: translateX(-20%);
		}
	}
	.lead_ttl_rel::after {
		background: url(../img/lead_ttl_yl.png) no-repeat center right / 85%;
	}
	.lead_ttl_rel {
		padding: 2% 0 2% 3%;
		width: 20%;
	}
	.lead_ttl_rel::before {
		left: 5%;
	}
	.lead_wrap::before, .lead_wrap::after {
		display: none;
	}
	.lead_wrap h2 {
		padding-top: 13.2%;
		animation: scrollBg 20s linear infinite;
	}
	.lead_date {
		width: 40%;
		font-size: 3.4vw;
		margin-bottom: 14%;
	}
	.lead_flex_txt {
		font-size: 3vw;
		padding: 0 7% 3%;
		margin-bottom: 6%;
	}
	.lead_flex_img {
		padding: 0 0 20%;
		margin: 0 auto;
	}
	.lead_wrap ._txt {
		width: 100%;
		padding-top: 0;
	}
	.lead_wrap ._txt h3 {
		padding: 0 7%;
		margin-bottom: 5%;
		font-size: 6.5vw;
	}
	.lead_wrap ._txt ._img {
		width: 100%;
		padding-right: 7%;
		margin-bottom: 6%;
	}
	.lead_wrap ._txt ._description {
		padding: 0 7%;
		font-size: 3.4vw;
		margin-bottom: 13%;
	}
	.lead_wrap .description_flex {
		padding: 0 7%;
	}
	.lead_custom {
		padding: 9% 11% 15% 14%;
		flex-direction: column;
	}
	.lead_custom .lead_custom_ttl {
		width: 100%;
		font-size: 4vw;
	}
	.lead_custom ._abs {
		left: 2%;
		transform: rotate(180deg);
		height: 56%;
		font-size: 2.2vw;
		border-left: 1px solid black;
		text-align: right;
		padding-bottom: 3%;
		padding-left: 0.3%;
	}
	.lead_custom h3 {
		font-size: 5vw;
		margin-bottom: 1%;
	}
	.lead_custom .subttl {
		font-size: 5vw;
		margin-bottom: 6%;
	}
	.lead_custom .subttl span {
		font-size: 3.4vw;
	}
	.lead_custom .lead_custom_keyword {
		width: 100%;
		gap: 2%;
		row-gap: 8px;
	}
	.lead_custom .lead_custom_keyword li {
		font-size: 3.5vw;
		padding: 3%;
	}
	.lead_custom .lead_custom_keyword li span {
		font-size: 2.5vw;
	}
	.lead_wrap ._txt .scroll_down {
		right: 15%;
    	top: 75%;
		height: 10%;
		font-size: 2vw;
	}
	.lead_wrap ._txt .scroll_down p {
		padding-left: 5%;
	}
	.color_lens_ttl {
		font-size: 8vw;
	}
	.sec01 .side_deco {
		width: 100%;
		font-size: 3.2vw;
	}

	/* sec01 */
	.max-w-c {
		max-width: none;
	}
	.sec_flex {
		flex-direction: column;
		padding: 7% 7% 10%;
	}
	.sec01 .bg_yellow {
		margin-bottom: 15%;
	}
	.bg_yellow .boder_bottom {
		width: 100%;
	}
	.bg_yellow .boder_bottom .yl_ttl span {
		font-size: 12vw;
		padding-right: 2%;
	}
	.bg_yellow .boder_bottom .yl_ttl {
		font-size: 4.9vw;
		margin-bottom: -4%;
	}
	.sec01 .bg_yellow .boder_bottom .yl_ttl {
		white-space: nowrap;
	}
	.bg_yellow .boder_bottom .ttl_box ._txt {
		font-size: 3.4vw;
	}
	.bg_yellow .boder_bottom .ttl_box {
		margin-bottom: 8%;
    	padding-bottom: 6%;
	}
	.trend_img {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 2vw;
		padding-bottom: 5%;
	}
	.trend_img li {
		padding: 0 1%;
	}
	.trend_img li ._img {
		padding-left: 0;
	}
	.trend_img li ._left_txt {
		left: -5%;
		padding-top: 4%;
		font-size: 3vw;
	}
	.trend_img li ._left_txt, .trend_img li ._right_txt {
		font-size: 3vw;
	}
	.trend_img li:nth-of-type(even) ._left_txt {
		right: -6%;
		left: auto;
	}
	.trend_img li:nth-of-type(even) ._right_txt {
		right: auto;
		left: -5%;
	}
	._img a {
		font-size: 2.5vw;
	}
	._arrow {
		font-size: 3vw;
	}
	._abs_more {
		top: 15px;
    	right: 10px;
		font-size: 3vw;
	}
	.bg_yellow .boder_bottom .subttl {
		font-size: 8vw;
		padding: 0 7%;
	}
	.sec01 .bg_yellow .boder_bottom .subttl {
		font-size: 11vw;
		padding: 0;
		margin-bottom: 0;
	}
	.point_txt {
		font-size: 3.4vw;
		margin-bottom: 0;
		margin-top: 5%;
	}
	.side_boder_box {
		width: 100%;
		max-width: none;
		padding-top: 0;
		margin: 0;
		border-left: none;
		border-right: none;
	}
	.color_lens_wrap {
		width: 93%;
		margin: 0;
		padding: 10% 0 15% 0;
		border-right: 1px solid black;
		flex-direction: column;
	}
	.color_lens_wrap ._abs {
		right: -6.5%;
		font-size: 3vw;
	}
	.color_lens_wrap ._left {
		width: 100%;
		padding: 0 5%;
		margin-bottom: 10%;
	}
	.color_lens_wrap ._right {
		width: 100%;
	}
	.color_lens_img {
		flex-direction: column;
		padding-right: 10%;
	}
	.color_lens_img li {
		width: 100%;
	}
	.color_lens_img li:not(:last-of-type) {
		margin-bottom: 10%;
	}
	.color_lens_img li ._right_txt {
		font-size: 3vw;
	}
	.color_lens_img li ._right_txt {
		right: -1%;
	}
	.sec01 .color_lens_img ._arrow {
		margin-left: 5%;
	}
	.sec01 .color_lens_img ._abs_more ._arrow {
		margin-left: 0;
	}
	.color_lens_img li ._item ._ttl,
	.color_lens_img li ._item ._color {
		font-size: 2.5vw;
	}
	.color_lens_list {
		margin-left: 0;
		padding-bottom: 7%;
	}
	.color_lens_list li {
		font-size: 2.4vw;
	}
	.color_lens_img li ._item {
		bottom: 3%;
	}
	.sec01 .max-w-c._02 {
		padding: 15% 1% 20%;
	}
	.recommend_item {
		width: 87%;
		padding-bottom: 10%;
		margin: 0 auto;
		justify-content: space-between;
	}
	.scroll_wrap .recommend_item {
		width: 100%;
	}
	.max-w-c .recommend_ttl {
		font-size: 7vw;
	}
	.scroll_wrap .recommend_item {
		width: 400vw;
	}
	.recommend_item li {
		width: 50%;
		padding: 0 1%;
	}
	.scroll_wrap .recommend_item li {
		flex: 0 0 calc(390vw / 10.3);
		max-width: none;
	}
	.recommend_item ._price {
		max-width: none;
		font-size: 3.4vw;
	}
	.recommend_item ._price ._gray {
		position: unset;
	}
	.custom_scrollbar {
		width: 60%;
	}
	.scroll_rel {
		margin-bottom: 10%;
	}
	.sec01 .trend_img li ._right_txt {
		text-align: center;
	}

	/* sec02 */
	.sec02 .bg_yellow .boder_bottom {
		width: 100%;
	}
	.bg_yellow .sec_ttl ._custom_ok span {
		padding: 8px 10px 8px 10%;
		font-size: 2.5vw;
	}
	.img_1column {
		width: 100%;
	}
	.img_1column ._img {
		padding: 0;
	}
	.sec02 .point_txt {
		padding: 0;
		margin-bottom: 1%;
	}
	.sec02 .side_boder_box,
	.sec03 .side_boder_box,
	.sec04 .side_boder_box,
	.sec05 .side_boder_box,
	.sec08 .side_boder_box,
	.sec09 .side_boder_box {
	    padding: 15% 0 20%;
	}
	.sec02 .sec_flex {
		padding-bottom: 3%;
	}
	.img_1column ._left_txt {
		left: -6.5%;
		font-size: 3vw;
	}
	.img_1column ._right_txt {
		right: -6.5%;
		font-size: 3vw;
	}
	.tag_list li {
		line-height: 1.3;
		font-size: 3.5vw;
	}
	.tag_list li span {
		font-size: 75%;
	}
	.sec02 .bg_yellow .boder_bottom .subttl {
		margin-bottom: 10%;
	}

	/* sec03 */
	.sec03 .bg_yellow .boder_bottom {
		width: 100%;
	}
	.sec03 .bg_yellow .boder_bottom .subttl {
		padding: 0;
		margin-bottom: 0;
	}
	.img_1column ._img {
		margin-bottom: 3%;
	}
	.dashed_line {
		width: 86%;
		margin-bottom: 10%;
	}
	._btn._view_all.mb {
		margin: 0 auto 15%;
	}
	.sec03 .side_boder_box {
		padding: 15% 0;
	}
	.details_flex {
		width: 86%;
		flex-direction: column;
	}
	.details_flex ._left {
		width: 100%;
	}
	.details_flex ._right {
		width: 100%;
	}
	.sec03 .side_deco {
		width: 63%;
		margin: 0 auto;
		font-size: 4.2vw;
		margin-bottom: 10%;
	}
	.sec03 .details_flex ._right {
		margin-bottom: 5%;
	}
	.details_txt {
		font-size: 3.1vw;
	}
	.details_customize {
		text-align: center;
		font-size: 4.5vw;
	}
	.sec03 ._btn {
		margin: 0 auto 15%;
	}
	.banner {
		width: 100%;
	}
	.details_ttl {
		font-size: 7vw;
	}

	/* sec04 */
	.sec04 .bg_yellow .boder_bottom {
		width: 100%;
	}
	.sec04 .bg_yellow .boder_bottom .ttl_box {
		margin-bottom: 8%;
        padding-bottom: 6%;
	}
	.sec04 .bg_yellow .boder_bottom .subttl,
	.sec05 .bg_yellow .boder_bottom .subttl,
	.sec06 .bg_yellow .boder_bottom .subttl,
	.sec07 .bg_yellow .boder_bottom .subttl,
	.sec08 .bg_yellow .boder_bottom .subttl,
	.sec09 .bg_yellow .boder_bottom .subttl {
		padding: 0;
	}
	.bg_yellow .note {
		font-size: 2.1vw;
	}
	.bg_yellow .img_modal .note {
		font-size: 2.5vw;
	}
	._release {
		right: 0;
		width: 17%;
	}
	.sec04 .about_lens {
		width: 100%;
	}
	.sec04 .about_lens ._left ._ttl {
		font-size: 3.5vw;
	}
	.sec04 .about_lens ._left ._txt {
		font-size: 3vw;
	}
	.sec04 .details_ttl {
		margin-bottom: 0;
	}
	.details_subttl {
		text-align: center;
		font-size: 4vw;
	}
	.sec04 .side_deco._01,
	.sec04 .side_deco._02 {
		width: 100%;
		margin-bottom: 3%;
	}
	.details_flex ._right {
		margin-bottom: 5%;
	}
	.side_deco .jp {
		font-size: 3.7vw;
	}
	.details_txt.mb {
		margin-bottom: 0;
	}
	.sec04 ._btn,
	.sec05 ._btn {
		width: 28%;
		max-width: none;
		margin: 0 auto;
	}
	.sec05 ._btn {
		width: 70%;
	}
	.side_deco._1line ._start, .side_deco._1line ._end {
		font-size: 7vw;
	}
	.sec04 .details_customize {
		margin-bottom: 1%;
	}
	.sec04 .details_flex ._left {
		width: 100%;
	}
	.sec04 .details_flex ._right {
		width: 100%;
	}

	/* sec05 */
	.sec05 .point_txt {
		margin-bottom: 0;
	}
	.sec05 .details_flex ._left {
		width: 100%;
	}
	.sec05 .details_flex ._right {
		width: 100%;
	}
	.sec05 .side_deco {
		width: 92%;
		font-size: 3.7vw;
		margin: 0 auto 6%;
	}
	.sec05 .bg_yellow .note {
		margin-bottom: 0;
	}

	.sec05 .bg_yellow .boder_bottom,
	.sec06 .bg_yellow .boder_bottom,
	.sec07 .bg_yellow .boder_bottom,
	.sec08 .bg_yellow .boder_bottom,
	.sec09 .bg_yellow .boder_bottom {
		width: 100%;
	}
	.sec05 .bg_yellow .boder_bottom .subttl {
		margin-bottom: 0;
	}

	/* sec06 */
	.sec06 ._btn {
		width: 45%;
		max-width: none;
	}
	.sec06 .max-w-c._02 {
		padding: 10% 0 20%;
	}
	._point {
		font-size: 3vw;
	}
	._point span {
    	padding: 10px 10px 10px 8%;
	}
	.sec06 .sec_flex {
		padding-bottom: 15%;
	}

	/* sec07 */
	.sec07 ._btn {
		width: 28%;
		max-width: none;
	}
	.sec07 .max-w-c._02 {
		padding: 10% 0 20%;
	}
	.sec07 .bg_yellow .boder_bottom .subttl {
		margin-bottom: 0;
	}

	/* sec08 */
	.sec08 .bg_yellow .boder_bottom .subttl {
		margin-bottom: 0;
	}

	/* sec09 */
	.sec09 .bg_yellow .boder_bottom .subttl {
		margin-bottom: 0;
	}

	/* online */
	.online .small_ttl {
		font-size: 3.8vw;
		padding: 0 7% 3%;
	}
	.online ._left {
		width: 100%;
	}
	.online ._right {
		width: 100%;
	}
	.online h2 {
		font-size: 10vw;
		line-height: 1.3;
	}
	.online .h2_bottom_txt {
		font-size: 3vw;
	}
	.online ._right .item_flex ._item p {
		font-size: 3vw;
	}
	.online ._right .item_flex ._item._01 p {
		bottom: 10%;
	}
	.online ._right .item_flex ._item._02 p {
		bottom: 5%;
	}
	.online ._txt {
		font-size: 3.4vw;
		margin-bottom: 5%;
	}
	.online ._btn {
		width: 46.5%;
		max-width: none;
		margin: 0 auto;
	}
	.bg_cream {
		padding: 5% 0 15%;
	}
	.online .btn_flex {
		width: 80%;
	}

	/* everything_is_here */
	.everything_is_here {
		width: 100%;
		padding: 20% 5% 5%;
		max-width: none;
	}
	.everything_is_here h2 {
		font-size: 7vw;
	}
	.everything_is_here .subttl {
		font-size: 3.7vw;
	}
	.everything_banner_list li p {
		font-size: 2.5vw;
	}
}
