@charset "UTF-8";

/*全体共通*/
:root, html{ font-size: 10px; }
@media screen and (max-width: 1600px) {
	:root, html{ font-size: .625vw; }
}
@media screen and (max-width: 899px) {
	:root, html{ font-size: 10px; }
}
@media screen and (max-width: 480px) {
	:root, html{ font-size: 2.08vw; }
}
*{ box-sizing: border-box; }
body {
	--max-width: 900px;
  --c-base: #333;
  --c-main: #0079CA;
  --c-main-light: #00A3DE;
  --c-accent: #F66327;
  --c-accent-light: #F69927;
	--c-bg: #F1F9FF;
  --ff-main: "Gothic A1", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	--ff-mincho: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --ff-en: "Corporate-Logo", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;

  position: relative;
  width: 100%;
  overflow-x: hidden;
	color: var(--c-base);
	font-family: var(--ff-main);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
  -webkit-text-size-adjust: 100%;
}
body.-fixed{
	position: fixed;
	left: 0;
	width: 100%;
	height: 100%;
}
a{
	display: inline-block;
	color: inherit;
	font-weight: inherit;
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
}
a:hover{
	cursor: pointer;
}
body.userAgent-pc a[href^="tel:"]{
	pointer-events: none;
}
img, svg{
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
}
select{
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
input, textarea{
	border: none;
	outline: none;
}
::before, ::after{
	box-sizing: border-box;
}

.--ff-en{ font-family: var(--ff-en); }
.--c-accent{ color: var(--c-accent) !important; }
.--c-main{ color: var(--c-main) !important; }
.--c-red{ color: #ff0000 !important; }
.--c-white{ color: #fff !important; }
.--center{ text-align: center !important; }
.--ta-l{ text-align: left !important; }
.--ta-r{ text-align: right !important; }
.--ta-justify{ text-justify: inter-ideograph; text-align: justify; text-align-last: left; }
.--bold{ font-weight: bold !important; }
.--thin{ font-weight: 100 !important; }
.--nowrap{ white-space: nowrap; }
.--kerning{ font-feature-settings: "palt"; }
/* .--bg-stripe-yellow{ background-image: repeating-linear-gradient(133.51deg, #fff660, #fff660 40px, transparent 40px, transparent 80px); } */
.--bg-stripe-yellow{ background-image: repeating-linear-gradient(133.51deg, #fff660, #fff660 24px, transparent 24px, transparent 48px); }
/* .--bg-stripe-blue{ background-image: repeating-linear-gradient(133.51deg, #DEF1FF, #DEF1FF 40px, transparent 40px, transparent 80px); } */
.--bg-stripe-blue{ background-image: repeating-linear-gradient(133.51deg, #DEF1FF, #DEF1FF 24px, transparent 24px, transparent 48px); }

.--overflow-ellipsis{
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
a.--h-opacity, .--h-opacity a, button.--h-opacity{ transition: opacity .3s; }
a.--h-opacity:hover, .--h-opacity a:hover, button.--h-opacity:hover{ opacity: .6; }

.--under{ border-bottom: 1px solid #888; }
.--img-cover{ width: 100%; height: 100%; object-fit: cover; }
.--img-contain{ width: 100%; height: 100%; object-fit: contain; }
.--clearfix::after{ content: ""; display: block; clear: both; }
.--d-ib{ display: inline-block !important; }
.--d-n{ display: none !important; }
.--d-f{ display: flex !important; }
.--justify-center{ display: flex; justify-content: center; }
.--absolute{ position: absolute; top: 0; left: 0; }

.--inview.-fadeup{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s .3s ease-out, transform .6s .3s ease-out;
}
.--inview.-fadeup.active{
  opacity: 1;
  transform: translateY(0);
}

/* PC */
@media (min-width: 900px){
	.--tab{ display: none !important; }
	.--sp{ display: none !important; }
	.--tab-sp{ display: none !important; }

	.--pc_pl-0{ padding: 0 !important; }
	.--pc_pr-0{ padding: 0 !important; }
}
/* TAB */
@media screen and (max-width: 899px) and (min-width: 481px) {
	.--pc{ display: none !important; }
	.--sp{ display: none !important; }
	.--pc-sp{ display: none !important; }

	.--tab_pl-0{ padding: 0 !important; }
	.--tab_pr-0{ padding: 0 !important; }
}
/* SP */
@media screen and (max-width: 480px) {
	.--pc{ display: none !important; }
	.--tab{ display: none !important; }
	.--pc-tab{ display: none !important; }

	.--sp-pl-0{ padding: 0 !important; }
	.--sp-pr-0{ padding: 0 !important; }

	.--sp_fs-14{ font-size: 14px !important; }
	.--sp_fs-16{ font-size: 16px !important; }
	.--sp_fs-18{ font-size: 18px !important; }
}

/* 共通 */
.cntInner,
._Inner{
	width: 100%;
	margin: 0 auto;
}
._Inner{
	max-width: 1300px;
}
.cmnTitle{
  text-align: center;
  font-weight: 700;
  font-family: var(--ff-en);
}
.cmnTitle .ja{
  font-size: 50px;  
  margin-bottom: 5px;
}
.cmnTitle .en{
  font-size: 30px;
  color: var(--c-main-light);
}
.cmnSubtit{
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  background: var(--c-main-light);
}
/* TAB */
@media screen and (max-width: 899px) {
  .cmnTitle .ja{
    font-size: 42px;
  }
  .cmnTitle .en{
    font-size: 25px;
  }
  .cmnSubtit{
    font-size: 22px;
  }
}
/* SP */
@media screen and (max-width: 480px) {
  .cmnTitle .ja{
    font-size: 35px;  
    margin-bottom: 3px;
  }
  .cmnTitle .en{
    font-size: 21px;
  }
  .cmnSubtit{
    font-size: 18px;
  }
}

._CTA{
  padding: 112px 20px;
  background: #007BCD;
  text-align: center;
}
._CTA .cntInner{
  position: relative;
  padding: 60px;
  background: #FFF660;
  border: 10px solid var(--c-accent);
  border-radius: 10px;
}
._CTA .cntInner::before{
  content: "";
  position: absolute;
  left: 5.5rem;
  bottom: 0;
  width: 220px;
  height: 241px;
  max-width: 15vw;
  background: url(../img/index/cta-img.png) left bottom/contain no-repeat;
}
._CTA .cntText{
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: bold;
}
._CTA .cntText .txt{
  padding: 0 32px;
  position: relative;
  display: inline-block;
}
._CTA .cntText .txt::before,
._CTA .cntText .txt::after{
  position: absolute;
  content: "";
  display: inline-block;
  height: 42px;
  width: 2px;
  background: var(--c-base);
  top: 50%;
  transform-origin: top center;
}
._CTA .cntText .txt::before{
  left: 0;
  transform: translateY(-50%) rotate(-24deg);
}
._CTA .cntText .txt::after{
  right: 0;
  transform: translateY(-50%) rotate(24deg);
}
._CTA .cntBtn{
  position: relative;
  width: 556px;
  max-width: 50vw;
  margin: 0 auto;
  padding: 28px 54px 28px 0;
  background: var(--c-accent);
  border-radius: 5px;
  box-shadow: 0 7px #873310;
  transition: transform .3s, box-shadow .3s;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}
._CTA .cntBtn:hover{
  transform: translateY(7px);
  box-shadow: 0 0 #873310;
}
._CTA .cntBtn::before{
  content: "";
  position: absolute;
  top: calc(50% - 15px);
  right: 7rem;
  width: 17px;
  height: 29px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2217%22%20height%3D%2229%22%20viewBox%3D%220%200%2017%2029%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M15.9097%2015.6151L3.1815%2028.1077L0%2024.9851L11.1375%2014.0538L0%203.12258L3.1815%200L15.9097%2012.4925C16.3316%2012.9067%2016.5685%2013.4683%2016.5685%2014.0538C16.5685%2014.6394%2016.3316%2015.201%2015.9097%2015.6151Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
}
/* TAB */
@media screen and (max-width: 899px) {
  ._CTA{
    padding: 60px 20px;
  }
  ._CTA .cntInner{
    padding: 42px 16px;
    border: 7px solid var(--c-accent);
  }
  ._CTA .cntInner::before{
    left: 8px;
    max-width: 135px;
    width: 20%;
    height: 200px;
  }
  ._CTA .cntText{
    margin-bottom: 18px;
    font-size: 18px;
    margin-left: 50px;
  }
  ._CTA .cntBtn{
    max-width: 280px;
    width: 100%;
    padding: 20px 36px 20px 0;
    box-shadow: 0 4px #873310;
    font-size: 18px;
    margin-left: 50px;
  }
  ._CTA .cntBtn:hover{
    transform: translateY(4px);
  }
  ._CTA .cntBtn::before{
    right: 20px;
    width: 12px;
  }
}
/* SP */
@media screen and (max-width: 480px) {
  ._CTA .cntInner{
    padding: 30px 16px;
  }
  ._CTA .cntInner::before{
    left: 0;
  }
  ._CTA .cntText{
    font-size: 16px;
    margin-left: 0;
  }
  ._CTA .cntText .txt{
    padding: 0 25px;
    width: fit-content;
  }
  ._CTA .cntText .txt::before,
  ._CTA .cntText .txt::after{
    height: 30px;
  }
  ._CTA .cntBtn{
    max-width: 25.5rem;
    margin-left: 16px;
    padding: 2rem 3.6rem 2rem 8px;
    font-size: 16px;
  }
  ._CTA .cntBtn::before{
    width: 8px;
    right: 10px;
  }
}

/* ローディング */
#loading{
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	width: 100%;
	height: 100%;
	z-index: 999;
}

/* トップへ戻るボタン */
#top{
	position: fixed;
	top: auto;
	bottom: 0;
	right: 0;
	z-index: 100;
}

/* ヘッダー */
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
#header .cntInner{
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
}
#header .cntImg-logo{
	margin: 2.8rem 4.4rem 0;
	width: 272px;
  max-width: 25vw;
  position: absolute;
}
._Navbtn{
	position: relative;
	cursor: pointer;
}
._Navbtn span{
	position: absolute;
	left: 20px;
	display: inline-block;
	width: 30px;
	height: 2px;
	transition: all .5s;
}
._Navbtn span:nth-of-type(1){
	top: 27px;
}
._Navbtn span:nth-of-type(2){
	top: 50%;
	transform: translateY(-1px);
}
._Navbtn span:nth-of-type(3){
	bottom: 27px;
}
._Navbtn.active span:nth-of-type(1){
	transform: translateY(7px) rotate(45deg);
}
._Navbtn.active span:nth-of-type(2){
	opacity: 0;
}
._Navbtn.active span:nth-of-type(3){
	transform: translateY(-7px) rotate(-45deg);
}
/* TAB */
@media screen and (max-width: 899px) {
  #header .cntImg-logo{
    margin: 20px 20px 0;
    width: 190px;
    max-width: 40vw;
  }
}
/* SP */
@media screen and (max-width: 480px) {
  #header .cntImg-logo{
    margin: 14px 14px 0;
  }
}

/* スマホナビ */
#nav{
	display: none;
}

/*パンくずリスト*/
#breadcrumbs{
}
#breadcrumbs .cntList li{
  display: inline;
	margin-right: 10px;
}
#breadcrumbs .cntList li + li::before{
	content: ">";
	display: inline-block;
  white-space: pre-wrap;
}
#breadcrumbs .cntList li:last-child{
  pointer-events: none;
}
#breadcrumbs .cntList a{
  display: inline;
}

/* fv */
#fv{
  position: relative;
  overflow: hidden;
}
#fv::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-main-light);
  z-index: -1;
  clip-path: polygon(0 100%, 100% 35.35%, 100% 100%);
}
#fv .cntInner{
  max-width: 1600px;
  width: 100%;
  position: relative;
}
#fv .cntBox{
  width: 100%;
  max-width: 103.5rem;
  margin: 80px auto 0 17rem;
  background: url(../img/index/fv-bg.png) center 4.5rem / cover no-repeat;
  text-align: center;
  padding-bottom: 25px;
}
#fv .cntBox .tit{
  font-family: var(--ff-en);
  font-size: 8rem;
  font-weight: bold;
  color: var(--c-main);
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 5px var(--c-main);
  text-stroke: 5px var(--c-main);
  paint-order: stroke;
  filter: drop-shadow(0px 4px 4px #00000040);
  line-height: 1.2;
  margin-bottom: 11px;
}
#fv .cntBox .tit .small{
  font-size: 6rem;
}
#fv .cntBox .subtit{
  font-family: var(--ff-en);
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 0px 4px 4px #00000040;
  margin-bottom: 11px;
}
#fv .cntBox .list{
  max-width: 68.4rem;
  margin: 0 auto 35px;
}
#fv .cntBox .item{
  position: relative;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: 8.8rem;
  font-weight: 900;
  text-shadow: 0px 4px 4px #00000040;
  letter-spacing: .05em;
  line-height: 1.3;
}
#fv .cntBox .item::before{
  content: "";
  position: absolute;
  bottom: .4rem;
  left: 0;
  width: 100%;
  height: 1.1rem;
  background: #FFF000;
  box-shadow: 0px 4px 4px #00000040;
}
#fv .cntBox .item:not(:nth-of-type(1)){
  margin-top: 19px;
}
#fv .cntBox .capa .small{
  font-size: 5rem;
}
#fv .cntBox .price{
  display: block;
  width: 100%;
  color: var(--c-main);
  text-align: right;
}
#fv .cntBox .yen{
  margin-top: -0.4em;
  font-family: var(--ff-en);
  font-size: 3.3rem;
  font-weight: bold;
  text-align: left;
  letter-spacing: .1em;
  white-space: nowrap;
}
#fv .cntBox .catch{
  position: absolute;
  top: 120px;
  left: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 28.7rem;
  height: 28.7rem;
  font-family: var(--ff-en);
  font-size: 5.5rem;
  text-align: center;
  line-height: 1.2;
  z-index: 0;
}
#fv .cntBox .catch .small{
  font-size: 5rem;
}
#fv .cntBox .catch::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #FFF553;
  top: 6px;
  left: 6px;
  z-index: -1;
}
#fv .cntBox .catch::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #333;
  top: 0;
  left: 0;
}
#fv .cntBox .button{
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 55.6rem;
  width: 100%;
  background: var(--c-accent);
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 2.8rem 7.2rem 2.8rem 2.0rem;
  border-radius: 5px;
  box-shadow: 0 7px #873310;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
#fv .cntBox .button:hover{
  transform: translateY(7px);
  box-shadow: 0 0 #873310;
}
#fv .cntBox .button::before{
  content: "";
  position: absolute;
  top: calc(50% - 15px);
  right: 7rem;
  width: 1.7rem;
  height: 29px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2217%22%20height%3D%2229%22%20viewBox%3D%220%200%2017%2029%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M15.9097%2015.6151L3.1815%2028.1077L0%2024.9851L11.1375%2014.0538L0%203.12258L3.1815%200L15.9097%2012.4925C16.3316%2012.9067%2016.5685%2013.4683%2016.5685%2014.0538C16.5685%2014.6394%2016.3316%2015.201%2015.9097%2015.6151Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
}
#fv .cntImg{
  position: absolute;
  width: 54.4rem;
  height: 71.5rem;
  bottom: -2.5rem;
  right: -2.5rem;
}
#fv .cntImg .text{
  position: absolute;
  top: -64px;
  right: 21%;
  transform: rotate(8.63deg);
  text-align: center;
  font-size: 4rem;
  font-family: var(--ff-en);
  letter-spacing: .1em;
  line-height: 1.3;
}
#fv .cntImg .text .small{
  font-size: 3.2rem;
}
#fv .cntImg .text .col{
  color: var(--c-accent);
}
#fv .cntImg .text::before,
#fv .cntImg .text::after{
  content: "";
  position: absolute;
  background: transparent center/contain no-repeat;
}
#fv .cntImg .text::before{
  width: 5rem;
  height: 9.5rem;
  top: 3rem;
  left: -4.9rem;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2246%22%20height%3D%2299%22%20viewBox%3D%220%200%2046%2099%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cline%20x1%3D%227.76684%22%20y1%3D%2246.3283%22%20x2%3D%2236.7983%22%20y2%3D%2294.1841%22%20stroke%3D%22%23333333%22%20stroke-width%3D%223%22%2F%3E%3Cline%20x1%3D%2212.8993%22%20y1%3D%222.13582%22%20x2%3D%2243.947%22%20y2%3D%2289.5489%22%20stroke%3D%22%23333333%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E');
}
#fv .cntImg .text::after{
  width: 7rem;
  height: 9.8rem;
  top: 4.5rem;
  right: -4.8rem;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2272%22%20height%3D%2288%22%20viewBox%3D%220%200%2072%2088%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cline%20y1%3D%22-1.5%22%20x2%3D%2255.9732%22%20y2%3D%22-1.5%22%20transform%3D%22matrix(-0.690904%200.722947%200.722947%200.690904%2055.0269%2046.0906)%22%20stroke%3D%22%23333333%22%20stroke-width%3D%223%22%2F%3E%3Cline%20y1%3D%22-1.5%22%20x2%3D%2292.7631%22%20y2%3D%22-1.5%22%20transform%3D%22matrix(-0.530111%200.847928%200.847928%200.530111%2059.7363%201.59033)%22%20stroke%3D%22%23333333%22%20stroke-width%3D%223%22%2F%3E%3C%2Fsvg%3E')
}
/* TAB */
@media screen and (max-width: 899px) {
  #fv .cntInner{
    max-width: 600px;
    padding: 0 20px;
  }
  #fv .cntBox{
    margin: 70px auto 0;
    background: url(../img/index/fv-bg.png) center 40px / cover no-repeat;
    padding: 0 30px 250px;
    max-width: 500px;
  }
  #fv .cntBox .tit{
    font-size: 56px;
    margin-bottom: 7px;
    filter: drop-shadow(0px 3px 3px #00000040);
  }
  #fv .cntBox .tit .small{
    font-size: 36px;
  }
  #fv .cntBox .subtit{
    font-size: 21px;
    margin-bottom: 70px;
    text-shadow: 0px 3px 3px #00000040;
  }
  #fv .cntBox .list{
    margin: 0 auto 24px;
    max-width: 400px;
  }
  #fv .cntBox .item{
    gap: 40px;
    font-size: 44px;
    text-shadow: 0px 3px 3px #00000040;
  }
  #fv .cntBox .item::before{
    height: 6px;
    box-shadow: 0px 2px 2px #00000040;
  }
  #fv .cntBox .capa .small{
    font-size: 25px;
  }
  #fv .cntBox .yen{
    font-size: 17px;
  }
  #fv .cntBox .catch{
    width: 28%;
    height: auto;
    aspect-ratio: 1/1;
    font-size: 2.8rem;
    top: auto;
    bottom: 30px;
    left: 20px;
  }
  #fv .cntBox .catch .small{
    font-size: 2.5rem;
  }
  #fv .cntBox .catch::before{
    top: 4px;
    left: 4px;
  }
  #fv .cntBox .button{
    max-width: 340px;
    font-size: 16px;
    padding: 20px 40px 20px 8px;
    box-shadow: 0 4px #873310;
  }
  #fv .cntBox .button:hover{
    transform: translateY(4px);
  }
  #fv .cntBox .button::before{
    top: calc(50% - 10px);
    right: 9%;
    width: 11px;
    height: 20px;
  }
  #fv .cntImg{
    width: auto;
    height: 279px;
  }
  #fv .cntImg .text{
    top: 66px;
    right: auto;
    left: calc(-125px - (899px - 100vw) / (419 / -25));
    transform: rotate(-8.63deg);
    font-size: calc(24px - (899px - 100vw) / (419 / 5));
  }
  #fv .cntImg .text .small{
    font-size: calc(19px - (899px - 100vw) / (419 / 3));
  }
  #fv .cntImg .text::before{
    width: 3rem;
    top: 0;
    left: -2.9rem;
  }
  #fv .cntImg .text::after{
    width: 4rem;
    top: 0;
    right: -2.8rem;
  }
}
@media screen and (max-width: 480px) {
  #fv .cntInner{
    padding: 0 auto 16px;
  }
  #fv .cntBox{
    margin: 60px auto 0;
    background: url(../img/index/fv-bg.png) center 40px / contain no-repeat;
    padding: 0 2.5rem 25rem;
  }
  #fv .cntBox .tit{
    font-size: 5.6rem;
    filter: drop-shadow(0px 2px 2px #00000040);
  }
  #fv .cntBox .tit .small{
    font-size: 3.6rem;
  }
  #fv .cntBox .subtit{
    font-size: 2.1rem;
    margin-bottom: 30px;
    text-shadow: 0px 2px 2px #00000040;
  }
  #fv .cntBox .list{
    max-width: 320px;
    padding: 0 8px;
  }
  #fv .cntBox .item{
    gap: 8px;
    font-size: 4.4rem;
    text-shadow: 0px 2px 2px #00000040;
  }
  #fv .cntBox .item::before{
    height: 4px;
  }
  #fv .cntBox .item:not(:nth-of-type(1)){
    margin-top: 10px;
  }
  #fv .cntBox .capa .small{
    font-size: 2.5rem;
  }
  #fv .cntBox .yen{
    font-size: 1.7rem;
  }
  #fv .cntBox .catch{
    width: 25%;
    font-size: 2.5rem;
    left: 10px;
  }
  #fv .cntBox .catch .small{
    font-size: 2.2rem;
  }
  #fv .cntBox .catch::after{
  border: 2px solid #333;
}
  #fv .cntBox .button{
    padding: 15px 40px 15px 8px;
    max-width: 280px;
    font-size: 1.6rem;
  }
  #fv .cntBox .button::before{
    width: .8rem;
  }
  #fv .cntImg{
    width: 45%;
    height: auto;
  }
  #fv .cntImg .text{
    top: 44px;
    left: calc(-100px - (480px - 100vw) / (180 / -35));
    font-size: 1.9rem;
  }
  #fv .cntImg .text .small{
    font-size: 1.6rem;
  }
}

/* rental */
#rental{
  padding: 67px 20px 117px;
  background: var(--c-bg);
}
#rental .cntTitle{
  text-shadow: 
       3px  3px 0px #fff,
      -3px  3px 0px #fff,
       3px -3px 0px #fff,
      -3px -3px 0px #fff,
       3px  0px 0px #fff,
       0px  3px 0px #fff,
      -3px  0px 0px #fff,
       0px -3px 0px #fff, 0 5px 3px #00000040;
  font-family: var(--ff-en);
  font-size: 56px;
  text-align: center;
  margin-bottom: 11rem;
}
#rental .cntTitle span{
  display: inline-block;
}
#rental .cntTitle .xl{
  color: var(--c-main);
  font-size: 84px;
}
#rental .cntTitle .s{
  font-size: 56px;
}
#rental .cntBox{
  max-width: 1266px;
  margin: 0 auto 11rem;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
#rental .cntBox .item.i-1{
  max-width: 615px;
  width: 100%;
}
#rental .cntBox .item.i-2{
  max-width: 529px;
  width: 100%;
}
#rental .cntBox .item.i-2 .image{
  max-width: 489px;
}
#rental .cntBox .image{
  max-width: 497px;
  width: 100%;
  margin: 0 auto 6.5rem;
}
#rental .cntBox .texts{
  display: flex;
}
#rental .cntBox .num{
  font-size: 8rem;
  font-weight: 800;
  line-height: 1.5;
  height: fit-content;
  color: var(--c-main);
  position: relative;
  display: inline-block;
}
#rental .cntBox .num::after{
  position: absolute;
  content: "";
  width: 23.3rem;
  height: 5px;
  background: var(--c-main);
  transform: rotate(-43deg);
  transform-origin: center left;
  left: 0;
  bottom: -50px;
}
#rental .cntBox .text{
  padding-left: 12px;
  min-height: 150px;
  margin-top: 73px;
  display: flex;
  align-items: center;
}
#rental .cntBox .line{
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-thickness: 15px; 
  text-decoration-color: #FFF000; 
  text-underline-offset: -5px; 
  text-decoration-skip-ink: none; 
}
#rental .cntBox .small{
  font-size: 4rem
}
#rental .cntBox .dot{
  position: relative;
}
#rental .cntBox .dot::before{
  content: "";
  position: absolute;
  top: -22px; 
  left: 0;
  right: 0;
  height: 6px;
  background: radial-gradient(circle, var(--c-main) 0 3.5px, transparent 3.6px) 0 50% / 1em 7px  repeat-x;
  pointer-events: none;
}
#rental .cntText{
  background: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  padding: 3.3rem 20px;
  max-width: 1089px;
  width: 100%;
  margin: 0 auto;
  border: 3px solid #FFF553;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
/* TAB */
@media screen and (max-width: 899px) {
  #rental{
    padding: 45px 20px 70px;
  }
  #rental .cntTitle{
    font-size: 40px;
    margin-bottom: 75px;
  }
  #rental .cntTitle .xl{
    font-size: 59px;
  }
  #rental .cntTitle .s{
    font-size: 34px;
  }
  #rental .cntBox{
    margin: 0 auto 75px;
    flex-direction: column;
  }
  #rental .cntBox .item{
    margin: 0 auto;
  }
  #rental .cntBox .item.i-2 .image{
    max-width: 340px;
  }
  #rental .cntBox .image{
    max-width: 350px;
    margin-bottom: 32px;
  }
  #rental .cntBox .texts{
    width: fit-content;
    margin: 0 auto;
  }
  #rental .cntBox .num{
    font-size: 56px;
  }
  #rental .cntBox .num::after{
    width: 190px;
    height: 4px;
  }
  #rental .cntBox .text{
    min-height: auto;
    margin-top: 70px;
  }
  #rental .cntBox .line{
    font-size: 35px;
    text-decoration-thickness: 10px; 
    text-underline-offset: -3px; 
  }
  #rental .cntBox .small{
    font-size: 28px
  }
  #rental .cntBox .dot::before{
    top: -20px; 
  }
  #rental .cntText{
    font-size: 21px;
    padding: 20px;
    max-width: 760px;
  }
}
/* SP */
@media screen and (max-width: 480px) {
  #rental .cntTitle{
    font-size: 30px;
    margin-bottom: 55px;
  }
  #rental .cntTitle .xl{
    font-size: 44px;
  }
  #rental .cntTitle .s{
    font-size: 30px;
  }
  #rental .cntBox{
    margin-bottom: 40px;
  }
  #rental .cntBox .item.i-2 .image{
    max-width: 293px;
  }
  #rental .cntBox .image{
    max-width: 298px;
  }
  #rental .cntBox .num{
    font-size: 4.2rem;
  }
  #rental .cntBox .num::after{
    width: 3.69em;
    bottom: -1.19em;
  }
  #rental .cntBox .text{
    margin-top: 7rem;
  }
  #rental .cntBox .line{
    font-size: 26px;
  }
  #rental .cntBox .small{
    font-size: 21px
  }
  #rental .cntBox .dot::before{
    top: -15px;
  }
  #rental .cntText{
    font-size: 16px;
  }
}

/* Rental method */
#method{
  padding: 60px 20px 143px;
}
#method .cntInner{
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
#method .cntTitle{
  margin-bottom: 95px;
}
#method .cntBox{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4.46%;
}
#method .cntBox .item{
  background: #fff;
  border-radius: 10px;
  border: 5px solid #BBE6F6;
  padding: 7rem 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#method .cntBox .title{
  font-size: 30px;
  font-weight: 700;
  font-family: var(--ff-en);
  text-align: center;
  margin-bottom: 20px;
}
#method .cntBox .texts{
  min-height: 350px;
  max-width: 537px;
  width: 100%;
  margin: 0 auto 3.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#method .cntBox .bold{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 40px;
}
#method .cntBox .col{
  font-size: 25px;
  font-weight: 700;
  color: var(--c-main);
  text-align: center;
  margin-bottom: 40px;
}
#method .cntBox .std{
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}
#method .cntBox .button{
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 408px;
  width: 100%;
  background: var(--c-main);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  padding: 22px 79px 22px 20px;
  border-radius: 5px;
  position: relative;
}
#method .cntBox .button::before{
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: 5.3rem;
  width: 1.3rem;
  height: 21px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2217%22%20height%3D%2229%22%20viewBox%3D%220%200%2017%2029%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M15.9097%2015.6151L3.1815%2028.1077L0%2024.9851L11.1375%2014.0538L0%203.12258L3.1815%200L15.9097%2012.4925C16.3316%2012.9067%2016.5685%2013.4683%2016.5685%2014.0538C16.5685%2014.6394%2016.3316%2015.201%2015.9097%2015.6151Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
}
/* TAB */
@media screen and (max-width: 899px) {
  #method{
    padding: 45px 20px 70px;
  }
  #method .cntTitle{
    margin-bottom: 65px;
  }
  #method .cntBox{
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
  #method .cntBox .item{
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
  }
  #method .cntBox .title{
    font-size: 21px;
    margin-bottom: 28px;
  }
  #method .cntBox .texts{
    min-height: auto;
    max-width: 450px;
    margin-bottom: 16px;
  }
  #method .cntBox .bold{
    font-size: 16px;
    margin-bottom: 40px;
  }
  #method .cntBox .col{
    font-size: 20px;
    margin-bottom: 40px;
  }
  #method .cntBox .std{
    font-size: 16px;
    margin-bottom: 20px;
  }
  #method .cntBox .button{
    max-width: 285px;
    font-size: 16px;
    padding: 16px 45px 16px 8px;
  }
  #method .cntBox .button::before{
    top: calc(50% - 8px);
    right: 0;
    width: 9rem;
    height: 16px;
  }
}

/* Voice */
#voice{
  padding: 70px 20px 190px;
  overflow: hidden;
}
#voice .cntTitle{
  margin-bottom: 105px;
}
#voice .cntList{
  position: relative;
  max-width: 908px;
  margin: 0 auto;
  padding: 0 30px;
}
#voice .cntList .item{
  display: block;
  margin: 0 30px;
  border: 5px solid #BBE6F6;
  border-radius: 10px;
  padding: 46px 35px 89px;
}
#voice .cntList .img{
  position: relative;
  max-width: 211px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1/1;
  margin-bottom: 73px;
}
#voice .cntList .img::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-bg);
  border-radius: 50%;
  z-index: -1;
}
#voice .cntList .text{
  font-size: 20px;
  font-weight: 500;
}
#voice .cntList .slick-list{
  overflow: visible;
  display: flex;
}
#voice .cntList .slick-track{
  display: flex;
}
#voice .cntList .slick-arrow{
  position: absolute;
  top: calc(50% - 35px);
  display: block;
  width: 69px;
  height: 69px;
  background: var(--c-main);
  border-radius: 50%;
  box-shadow: 0 4px 4px #00000040;
  transition: opacity .3s;
  font-size: 0;
  z-index: 2;
}
#voice .cntList .slick-arrow:hover{
  opacity: .6;
}
#voice .cntList .slick-arrow::before{
  content: "";
  display: block;
  width: 18px;
  height: 100%;
  margin: 0 auto;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2218%22%20height%3D%2231%22%20viewBox%3D%220%200%2018%2031%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M17.0746%2017.0746L3.41444%2030.7348L0%2027.3204L11.953%2015.3674L0%203.41444L3.41444%200L17.0746%2013.6602C17.5273%2014.113%2017.7816%2014.7271%2017.7816%2015.3674C17.7816%2016.0077%2017.5273%2016.6218%2017.0746%2017.0746Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E') center/contain no-repeat;
  transform: translateX(15%);
}
#voice .cntList .slick-prev{
  left: -5px;
  right: auto;
}
#voice .cntList .slick-prev::before{
  transform: translateX(-15%) rotate(180deg);
}
#voice .cntList .slick-next{
  left: auto;
  right: -5px;
}
/* TAB */
@media screen and (max-width: 899px) {
  #voice{
    padding: 45px 20px 70px;
  }
  #voice .cntTitle{
    margin-bottom: 70px;
  }
  #voice .cntList .item{
    margin: 0 14px;
    padding: 32px 16px 60px;
  }
  #voice .cntList .img{
    margin-bottom: 50px;
  }
  #voice .cntList .text{
    font-size: 16px;
  }
  #voice .cntList .slick-arrow{
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
  }
  #voice .cntList .slick-arrow::before{
    width: 12px;
  }
  #voice .cntList .slick-prev{
    left: 4px;
  }
  #voice .cntList .slick-next{
    right: 4px;
  }
}

/* news */
#news{
  padding: 92px 20px 56px;
}
#news .cntInner{
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 0 28px;
}
#news .cntTitle{
  margin-top: 59px;
  margin-left: 4rem;
}
#news .cntTitle .jp{
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: .03em;
  margin-bottom: 5px;
  line-height: 1.2;
}
#news .cntTitle .en{
  font-size: 8rem;
  font-weight: 700;
  font-family: var(--ff-en);
  line-height: 1.2;
  color: var(--c-accent-light);
}
#news .cntBox{
  background: #fff;
  max-width: 1020px;
  width: 100%;
  border: 3px solid #BBE6F6;
  border-radius: 10px;
  padding: 8rem 8rem 8rem 9rem;
}
#news .cntList .item{
  border-bottom: 3px solid #D9D9D9;
  width: 100%;
  padding: 0 7px 37px;
}
#news .cntList li:not(:nth-of-type(1)){
  margin-top: 33px;
}
#news .cntList .date{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ff-en);
  color: #39B0FF;
  display: inline-block;
  margin-bottom: 15px;
}
#news .cntList .title{
  font-size: 20px;
  font-weight: 500;
}
/* TAB */
@media screen and (max-width: 899px) {
  #news{
    padding: 45px 20px 70px;
  }
  #news .cntInner{
    flex-direction: column;
    gap: 58px 0;
  }
  #news .cntTitle{
    margin-top: 0;
    margin-left: 0;
    text-align: center;
  }
  #news .cntTitle .jp{
    font-size: 18px;
  }
  #news .cntTitle .en{
    font-size: 56px;
  }
  #news .cntBox{
    padding: 56px 20px;
    max-width: 750px;
    margin: 0 auto;
  }
  #news .cntList li{
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }
  #news .cntList .item{
    padding: 0 3px 25px;
  }
  #news .cntList li:not(:nth-of-type(1)){
    margin-top: 25px;
  }
  #news .cntList .date{
    font-size: 16px;
    margin-bottom: 10px;
  }
  #news .cntList .title{
    font-size: 16px;
  }
}
/* SP */
@media screen and (max-width: 480px) {
  #news .cntBox{
    padding: 46px 16px;
  }
}

/* flow */
#flow{
  background: #007BCD;
  padding: 65px 20px 0;
}
#flow .cntTitle .ja{
  color: #fff;
}
#flow .cntTitle .en{
  color: #FFF660;
}
#flow .cntTitle{
  margin-bottom: 80px;
}
#flow .cntBox{
  max-width: 1367px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 55px 20px 105px;
}
#flow .cntBox .title{
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  font-family: var(--ff-en);
  color: var(--c-main);
  margin-bottom: 70px;
}
#flow .cntList-send{
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1194px;
  width: 100%;
  margin: 0 auto 141px;
}
#flow .cntList-send::before{
  content: "";
  position: absolute;
  top: 140px;
  left: 50%;
  width: calc(100% - 280px);
  height: 3px;
  background-color: #D9D9D9;
  transform: translateX(-50%);
}
#flow .cntList-send .item{
  position: relative;
  max-width: 284px;
  padding-top: 46px;
}
#flow .cntList-send .num{
  position: absolute;
  font-size: 50px;
  font-weight: 900;
  color: #39B0FF;
  letter-spacing: .05em;
  left: 14px;
  top: 0;
}
#flow .cntList-send .img{
  max-width: 190px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff;
  border: 5px solid #BBE6F6;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
#flow .cntList-send .text{
  font-size: 20px;
  font-weight: 500;
}
#flow .cntList-text{
  text-align: center;
}
#flow .cntList-text .list{
  display: inline-block;
}
#flow .cntList-text .item{
  text-align: left;
  font-size: 18px;
  padding-left: 1em;
  position: relative;
}
#flow .cntList-text .item::before{
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
/* TAB */
@media screen and (max-width: 899px) {
  #flow{
    padding: 45px 20px 0;
  }
  #flow .cntTitle{
    margin-bottom: 56px;
  }
  #flow .cntBox{
    padding: 35px 30px 70px;
  }
  #flow .cntBox .title{
    font-size: 28px;
    margin-bottom: 50px;
  }
  #flow .cntList-send{
    margin-bottom: 70px;
    flex-direction: column;
  }
  #flow .cntList-send::before{
    transform: none;
    width: 3px;
    height: calc(100% - 310px);
    left: 86px;
    top: 172px;
  }
  #flow .cntList-send .item{
    max-width: 100%;
    width: 100%;
    padding-top: 32px;
    display: grid;
    grid-template-columns: 156px 1fr;
    gap: 0 20px;
    align-items: center;
  }
  #flow .cntList-send .num{
    font-size: 35px;
    left: 0;
  }
  #flow .cntList-send .img{
    max-width: 140px;
    margin-bottom: 0;
    margin-left: 16px;
  }
  #flow .cntList-send .text{
    font-size: 16px;
  }
  #flow .cntList-text .item{
    font-size: 16px;
  }
}
/* SP */
@media screen and (max-width: 480px) {
  #flow .cntBox{
    padding: 35px 16px 70px;
  }
  #flow .cntList-send{
    margin-bottom: 50px;
    gap: 20px;
  }
  #flow .cntList-send::before{
    height: calc(100% - 200px);
    left: 53px;
    top: 110px;
  }
  #flow .cntList-send .item{
    padding-top: 20px;
    grid-template-columns: 90px 1fr;
  }
  #flow .cntList-send .num{
    font-size: 25px;
  }
  #flow .cntList-send .img{
    max-width: 90px;
    margin-left: 8px;
  }
}

/* device */
#device{
  background: #007BCD;
  padding: 0 20px 115px;
}
#device .cntInner{
  background: #fff;
  border-radius: 10px;
  max-width: 1367px;
  width: 100%;
  margin: 0 auto;
  padding: 74px 20px 140px;
}
#device .cntTitle{
  font-size: 40px;
  font-weight: 700;
  font-family: var(--ff-en);
  color: var(--c-main);
  margin-bottom: 26px;
  text-align: center;
}
#device .cntText-top{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 75px;
  line-height: 1.2;
  text-align: center;
}
#device .cntText-top .small{
  font-size: 18px;
  font-weight: 400;
}
#device .cntBox .subtit{
  margin-bottom: 64px;
}
#device .cntContainer-1{
  max-width: 1194px;
  width: 100%;
  margin: 0 auto 98px;
  display: grid;
  grid-template-columns: 531fr 612fr;
  gap: 0 4.27%;
  align-items: center;
}
#device .cntContainer-1 .item{
  font-size: 18px;
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}
#device .cntContainer-1 .item::before{
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
}
#device .cntContainer-2{
  display: flex;
  gap: 0 2.93%;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto 98px;
}
#device .cntContainer-2 .item{
  border: 5px solid #BBE6F6;
  border-radius: 10px;
  padding: 50px 16px 61px;
  margin-left: 32px;
  position: relative;
  width: 100%;
}
#device .cntContainer-2 .num{
  position: absolute;
  top: -28px;
  left: -32px;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: .05em;
  color: #39B0FF;
}
#device .cntContainer-2 .title{
  font-size: 20px;
  font-weight: 600;
  color: var(--c-main);
  text-align: center;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}
#device .cntContainer-2 .text{
  font-size: 18px;
  min-height: 47px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 270px;
  margin: 0 auto;
}
#device .cntContainer-2 .img{
  max-width: 218px;
  width: 100%;
  margin: 0 auto 22px;
}
#device .cntText-btm{
  max-width: 1051px;
  width: 100%;
  margin: 0 auto;
}
#device .cntText-btm .title{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--c-accent);
  text-align: center;
}
#device .cntText-btm .text{
  font-size: 18px;

}
/* TAB */
@media screen and (max-width: 899px) {
  #device{
    padding: 0 20px 70px;
  }
  #device .cntInner{
    padding: 45px 20px 60px;
  }
  #device .cntTitle{
    font-size: 28px;
    margin-bottom: 18px;
  }
  #device .cntText-top{
    font-size: 21px;
    margin-bottom: 52px;
  }
  #device .cntText-top .text{
    text-align: left;
    display: inline-block;
  }
  #device .cntText-top .small{
    font-size: 16px;
  }
  #device .cntBox .subtit{
    margin-bottom: 44px;
  }
  #device .cntContainer-1{
    margin-bottom: 68px;
    grid-template-columns: 1fr;
    gap: 32px 0;
  }
  #device .cntContainer-1 .item{
    font-size: 16px;
  }
  #device .cntContainer-1 .image{
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }
  #device .cntContainer-1 .list{
    display: inline-block;
    margin: 0 auto;
    width: fit-content;
    text-align: left;
  }
  #device .cntContainer-2{
    margin-bottom: 68px;
    flex-direction: column;
    gap: 30px 0;
  }
  #device .cntContainer-2 .item{
    padding: 35px 16px 42px;
    margin: 0 auto;
    max-width: 330px;
  }
  #device .cntContainer-2 .num{
    top: -18px;
    left: -20px;
    font-size: 35px;
  }
  #device .cntContainer-2 .title{
    font-size: 18px;
    margin-bottom: 16px;
  }
  #device .cntContainer-2 .text{
    font-size: 16px;
  }
  #device .cntContainer-2 .img{
    max-width: 150px;
    margin-bottom: 16px;
  }
  #device .cntText-btm .title{
    font-size: 21px;
    margin-bottom: 10px;
  }
  #device .cntText-btm .text{
    font-size: 16px;
  }
}
/* SP */
@media screen and (max-width: 480px) {
}

/* price */
#price{
  padding: 90px 20px 106px;
}
#price .cntInner{
  max-width: 1373px;
}
#price .cntTitle{
  margin-bottom: 63px;
  color: #fff;
  font-family: var(--ff-en);
  font-size: 50px;
  font-weight: bold;
  text-align: center;
}
#price .cntTitle .bg{
  display: inline-block;
  margin: 0 10px;
  background: #F66327;
  border-radius: 10px;
  width: 90px;
  line-height: 90px;
  text-align: center;
}
#price .cntTitle .bg:nth-child(2n){
  background-color: #F69927;
}
#price .cntTitle-c{
  margin-bottom: 45px;
  color: var(--c-main-light);
  font-size: 30px;
  font-weight: bold;
  letter-spacing: .01em;
  text-align: center;
}
#price .cntTitle-sub{
  max-width: 900px;
  margin: 0 auto 45px;
  padding: 8px 10px;
  background: #FFF000;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}
#price .cntText{
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
#price .cntList-tab{
  display: flex;
  gap: 14px;
  padding-left: 37px;
}
#price .cntList-tab .item{
  min-width: 41rem;
  padding: 20px;
  background: var(--c-main);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: .01em;
  white-space: nowrap;
}
#price .cntList-tab .item.active{
  background: var(--c-main-light);
}
#price .cntBox{
  display: none;
  border: 5px solid var(--c-main-light);
  border-radius: 10px;
  padding: 45px 4.5rem 14.7rem;
}
#price .cntList-plan{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
  text-align: center;
}
#price .cntList-plan .item{
  border-radius: 10px;
  border: 3px solid var(--c-main);
  box-shadow: 0 4px 4px #00000040;
}
#price .cntList-plan .title{
  padding: 20px 0;
  background: var(--c-main);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: .03em;
}
#price .cntList-plan .text{
  padding: 27px 0;
  background: #F4F4F4;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .01em;
}
#price .cntList-plan .price{
  padding: 18px 0;
  font-family: var(--ff-en);
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .1em;
}
#price .cntList-plan .price .l{
  margin-right: 2px;
  color: var(--c-main);
  font-family: var(--ff-main);
  font-weight: 900;
  font-size: 48px;
  letter-spacing: .05em;
}
#price .cntList-plan .price .s{
  font-size: 16px;
}
#price .cntList-traffic{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 45px auto 0;
  border: 3px solid var(--c-main-light);
  border-radius: 10px;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .01em;
  text-align: center;
}
#price .cntList-traffic .title{
  position: relative;
  padding: 16px 0;
  background: var(--c-main-light);
  color: #fff;
}
#price .cntList-traffic .title:nth-child(4n+1):before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 3px;
  background: #f4f4f4;
  z-index: 2;
}
#price .cntList-traffic .title:first-child::before{
  content: none;
}
#price .cntList-traffic .text{
  padding: 16px 0;
}
#price .cntText-traffic{
  max-width: 1007px;
  margin: 23px auto 125px;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
}
#price .cntList-price{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 16rem;
  text-align: center;
}
#price .cntList-price .table{
  border-radius: 10px;
  border: 3px solid var(--c-main);
  box-shadow: 0 4px 4px #00000040;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .01em;
  border-collapse: separate;
}
#price .cntList-price .table th,
#price .cntList-price .table td{
  padding: 18px 0;
}
#price .cntList-price .table th:first-child{
  border-right: 3px solid #D3D3D3;
}
#price .cntList-price .table thead th,
#price .cntList-price .table thead td{
  background: var(--c-main);
  color: #fff;
}
#price .cntList-price .table tbody th,
#price .cntList-price .table tbody td{
  border-top: 3px solid #D3D3D3;
}
#price .cntList-price .table tbody th{
  background: #F4F4F4;
}
#price .cntList-attention{
  max-width: 821px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.27;
}
#price .cntList-attention + .cntList-attention{
  margin-top: 24px;
}
#price .cntList-attention.important{
  font-size: 20px;
  font-weight: 600;
}
#price .cntList-attention strong{
  font-weight: 600;
}
#price .cntList-attention .item + .item{
  margin-top: 10px;
}
#price .cntList-attention.important .item{
  margin-top: 0 !important;
}
/* TAB */
@media screen and (max-width: 899px) {
  #price{
    overflow-x: hidden;
    padding: 45px 20px 70px;
  }
  #price .cntTitle{
    margin-bottom: 36px;
    font-size: 35px;
  }
  #price .cntTitle .bg{
    margin: 0 7px;
    width: 63px;
    line-height: 63px;
  }
  #price .cntTitle-c{
    margin-bottom: 30px;
    font-size: 21px;
  }
  #price .cntTitle-sub{
    margin-bottom: 30px;
    font-size: 18px;
  }
  #price .cntText{
    font-size: 16px;
  }
  #price .cntList-tab{
    gap: 8px;
    padding-left: 10px;
    width: calc(100% - 10px);
  }
  #price .cntList-tab .item{
    min-width: auto;
    max-width: 300px;
    width: 100%;
    padding: 14px;
    font-size: 21px;
    white-space: wrap;
  }
  #price .cntBox{
    padding: 30px 20px 70px;
  }
  #price .cntList-plan{
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px 20px;
    margin-bottom: 60px;
  }
  #price .cntList-plan .title{
    padding: 14px 0;
    font-size: 21px;
  }
  #price .cntList-plan .text{
    padding: 19px 0;
    font-size: 16px;
  }
  #price .cntList-plan .price{
    padding: 13px 0;
    font-size: 16px;
  }
  #price .cntList-plan .price .l{
    font-size: 34px;
  }
  #price .cntList-plan .price .s{
    font-size: 16px;
  }
  #price .cntList-traffic{
    margin-top: 30px;
    font-size: 16px;
  }
  #price .cntList-traffic .title{
    padding: 12px 0;
  }
  #price .cntList-traffic .text{
    padding: 12px 0;
  }
  #price .cntText-traffic{
    margin: 16px auto 60px;
    font-size: 16px;
  }
  #price .cntList-price{
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px 20px;
    margin-bottom: 60px;
  }
  #price .cntList-price .table{
    font-size: 16px;
  }
  #price .cntList-price .table td{
    font-size: 16px;
  }
  #price .cntList-attention{
    font-size: 16px;
  }
  #price .cntList-attention + .cntList-attention{
    margin-top: 17px;
  }
  #price .cntList-attention.important{
    font-size: 16px;
  }
  #price .cntList-attention .item + .item{
    margin-top: 7px;
  }
}
/* SP */
@media screen and (max-width: 480px) {
  #price .cntTitle{
    font-size: 30px;
  }
  #price .cntTitle .bg{
    margin: 0 4px;
    width: 54px;
    line-height: 54px;
  }
  #price .cntTitle-c{
    font-size: 18px;
  }
  #price .cntList-tab .item{
    padding: 10px;
    font-size: 16px;
  }
  #price .cntBox{
    padding: 30px 16px 70px;
  }
  #price .cntList-plan{
    grid-template-columns: 1fr;
  }
  #price .cntList-plan .title{
    font-size: 18px;
  }
  #price .cntList-plan .text{
    padding: 19px 0;
    font-size: 16px;
  }
  #price .cntList-plan .price .l{
    font-size: 28px;
  }
  #price .cntList-traffic{
    grid-template-columns: repeat(2, 1fr);
  }
  #price .cntList-traffic .title:not(:nth-of-type(1)):before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 2px;
    background: #f4f4f4;
    z-index: 2;
  }
  #price .cntList-price{
    grid-template-columns: 1fr;
  }
  #price .cntText-traffic{
    text-align: left;
  }
}

/* faq */
#faq{
  padding: 70px 20px 130px;
}
#faq .cntTitle{
  margin-bottom: 70px;
}
#faq .cntList + .cntSubtit{
  margin-top: 80px;
}
#faq .cntList{
  max-width: 900px;
  width: 100%;
  margin: 10px auto 0;
}
#faq .cntList .item{
  border-bottom: 3px solid #D9D9D9;
  padding: 42px 98px 42px 24px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
}
#faq .cntList .question{
  padding-left: 37px;
  position: relative;  
  cursor: pointer;
}
#faq .cntList .question .btn{
  position: absolute;
  content: "";
  width: 30px;
  height: 38px;
  right: -66px;
  top: -4px;
  cursor: pointer;
}
#faq .cntList .question .btn::before,
#faq .cntList .question .btn::after{
  content: "";
  position: absolute;
  width: 16px;
  height: 3px;
  background: #39B0FF;
  transform-origin: center;
  left: 7px;
  top: calc(50% - 1px);
  transition: all .3s ease;
}
#faq .cntList .question .btn::after{
  transform: rotate(90deg);
}
#faq .cntList .question.active .btn::after{
  opacity: 0;
}
#faq .cntList .answer{
  display: none;
  margin-top: 22px;
  padding-left: 37px;
  position: relative;
}
#faq .cntList .question::before,
#faq .cntList .answer::before{
  position: absolute;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  top: 0px;
  left: 0;
}
#faq .cntList .question::before{
  content: "Q";
  color: #39B0FF;
}
#faq .cntList .answer::before{
  content: "A";
  color: #FFF000;
}
/* TAB */
@media screen and (max-width: 899px) {
  #faq{
    padding: 45px 20px 70px;
  }
  #faq .cntTitle{
    margin-bottom: 45px;
  }
  #faq .cntList + .cntSubtit{
    margin-top: 65px;
  }
  #faq .cntList .item{
    padding: 30px 45px 30px 6px;
    font-size: 16px;
  }
  #faq .cntList .question{
    padding-left: 35px;
  }
  #faq .cntList .question .btn{
    right: -35px;
    top: -7px;
  }
  #faq .cntList .question .btn::before,
  #faq .cntList .question .btn::after{
    width: 12px;
    height: 2px;
    left: 9px;
  }
  #faq .cntList .answer{
    margin-top: 16px;
    padding-left: 35px;
  }
  #faq .cntList .question::before,
  #faq .cntList .answer::before{
    font-size: 23px;
  }
}
/* SP */
@media screen and (max-width: 480px) {
   #faq .cntList .item{
    padding: 30px 35px 30px 3px;
  }
  #faq .cntList .question .btn{
    right: -30px;
  }
}

/* company */
#company{
  background: #F1F9FF;
  padding: 80px 20px 60px;
}
#company .cntTitle{
  margin-bottom: 80px;
}
#company .cntTitle .en{
  color: #FCDC4A;
}
#company .cntList{
  background: #fff;
  border-radius: 10px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 85px 20px 120px;
}
#company .cntList .item{
  max-width: 646px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns:  1fr 1fr;
  font-size: 20px;
  border-bottom: 3px solid #D9D9D9;
  padding: 34px 20px 18px;
}
#company .cntList .tit{
  color: var(--c-main);
  font-weight: 600;
  padding-left: 22.29%;
}
/* TAB */
@media screen and (max-width: 899px) {
  #company{
    padding: 45px 20px 23px;
  }
  #company .cntTitle{
    margin-bottom: 45px;
  }
  #company .cntList{
    padding: 40px 20px 70px;
  }
  #company .cntList .item{
    grid-template-columns: 4fr 6fr;
    gap: 0 16px;
    font-size: 16px;
    padding: 24px 20px 13px;
  }
  #company .cntList .tit{
    padding-left: 10%;
  }
}
/* SP */
@media screen and (max-width: 480px) {
  #company .cntList{
    padding: 40px 16px 70px;
  }
  #company .cntList .item{
    grid-template-columns: 3fr 7fr;
    padding: 24px 8px 13px;
  }
  #company .cntList .tit{
    padding-left: 0;
  }
}

/* access */
#access{
  background: #F1F9FF;
  padding: 80px 20px 114px;
}
#access .cntTitle{
  margin-bottom: 80px;
}
#access .cntTitle .en{
  color: #FCDC4A;
}
#access .cntBox{
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  height: 471px;
}
#access .cntBox iframe{
  height: 100%;
  width: 100%;
}
/* TAB */
@media screen and (max-width: 899px) {
  #access{
    padding: 22px 20px 70px;
  }
  #access .cntTitle{
    margin-bottom: 45px;
  }
  #access .cntBox{
    height: 350px;
  }
}
/* SP */
@media screen and (max-width: 480px) {
}

/* フッター */
#footer{
  position: relative;
  padding: 79px 20px 31px;
}
#footer::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-main);
  z-index: -1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
#footer .cntInner{
  display: flex;
  justify-content: space-between;
  max-width: 1382px;
  width: 100%;
  margin: 0 auto;
}
#footer .cntImg-logo{
  max-width: 272px;
  width: 100%;
  margin-bottom: 27px;
}
#footer .cntBox-left{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#footer .cntText{
  font-size: 18px;
  margin-bottom: 76px;
}
#footer .cntList{
  max-width: 486px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  gap: 0 3.6rem;
  color: #fff;
  font-size: 18px;
  line-height: 2;
  padding-top: 107px;
  margin-right: 8.43%;
}
#copyright{
  display: block;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
/* TAB */
@media screen and (max-width: 899px) {
  #footer{
    padding: 45px 20px 20px;
  }
  #footer::before{
    clip-path: polygon(0 100%, 0 85%, 100% 0, 100% 100%);
  }
  #footer .cntImg-logo{
    max-width: 190px;
    margin-bottom: 19px;
  }
  #footer .cntBox-left{
    align-items: flex-start;
  }
  #footer .cntText{
    font-size: 16px;
  }
  #footer .cntBox-right{
    max-width: 60%;
    margin-bottom: 40px;
  }
  #footer .cntList{
    gap: 0 16px;
    font-size: 16px;
    padding-top: 170px;
  }
  #copyright{
    font-size: 14px;
  }
}
/* SP */
@media screen and (max-width: 480px) {
  #footer .cntBox-left{
    flex-basis: 50%;
  }
  #footer .cntText{
    font-size: 14px;
  }
  #footer .cntBox-right{
    flex-basis: 50%;
  }
  #footer .cntList{
    gap: 0 10px;
    font-size: 14px;
  }
  #copyright{
    font-size: 12px;
  }
}