@charset "UTF-8";
/* CSS Document */

/*セクション間余白----------------------------------------------------------- */
section {
  padding: 90px 0;
}

footer {
  padding: 60px 0;
}

/*色関連----------------------------------------------------------- */
.bg_cl1 {
  background-color: #ecebeb;
}

.bg_cl2 {
  background-color: #41a9a5;
}

.cl_base {
  color: #f1f341;
}

.cl_main {
  color: #41a9a5;
}

.cl_accent {
  color: #4265a1;
}

.cl_other1 {
  color: #4265a1;
}

.cl_other2 {
  color: #4265a1;
}
.cl_white {
  color: #fff;
}


/*テキスト関連----------------------------------------------------------- */
.highlight {
  background: -webkit-linear-gradient(transparent 50%, #f1f341 50%);
  background: -o-linear-gradient(transparent 50%, #f1f341 50%);
  background: linear-gradient(transparent 50%, #f1f341 50%);
  font-weight: bold;
}
.font_30 {
  font-size: 30px;
}
.font_40 {
  font-size: 40px;
}
.font_50 {
  font-size: 50px;
}
@media (min-width: 960px) {
h2{
  letter-spacing: .08em;
}
}
/*リンク色----------------------------------------------------------- */
a:link,
a:visited {
  color: #41a9a5;
  text-decoration: none;
}


/*Page Top----------------------------------------------------------- */
.pagetop a {
  background-color: #41a9a5;
}


/*===================================================================================================
btnDesign
===================================================================================================*/
.cvBtn,
.mv button {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0px 10px 10px -6px rgba(0,0,0,0.3);
}
.cvBtn .btnText,
.mv button .btnText {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  transition: color .4s;
}
.cvBtn::before,
.mv button::before{
  content: "";
  display: block;
  padding-top: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%,-50%) scale(0);
  border-radius: 100%;
  transform-origin: center left;
  transition: transform .4s,opacity .4s,color .4s,background .6s;
}
.cvBtn:hover::before,
.mv button:hover::before{
  transform: translate(-50%,-50%) scale(1.1);
  opacity: 1;
}
.cvBtn .icon {
  font-size: 1.6rem;
  margin-right: 10px;
}
.cvBtn.green {
  color: #fff;
  background: #41a9a5;
  border: 2px solid #41a9a5;
}
.cvBtn.green:hover{
  color: #41a9a5;
  opacity: 1;
}
.cvBtn.green::before{
  background: #fff;
}
.cvBtn.white {
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}
.cvBtn.white:hover{
  color: #fff;
  opacity: 1;
}
.cvBtn.white::before{
  background: #000;
}
.cvBtn.white.green {
  color: #41a9a5;
  background: #fff;
  border: 2px solid #41a9a5;
}
.cvBtn.white.green:hover{
  color: #fff;
  opacity: 1;
}
.cvBtn.white.green::before{
  background: #41a9a5;
}
.cvBtn.black {
  color: #fff;
  background: #000;
  border: 2px solid #000;
}
.cvBtn.black:hover{
  color: #000;
  opacity: 1;
}
.cvBtn.black::before{
  background: #fff;
}
.cvBtn.orange,
.mv button.orange {
  color: #fff;
  background: #e04622;
  border: 2px solid #e04622;
}
.cvBtn.orange:hover{
  color: #e04622;
  opacity: 1;
}
.cvBtn.orange::before{
  background: #fff;
}
.cvBtn.white.orange {
  color: #e04622;
  background: #fff;
  border: 2px solid #e04622;
}
.cvBtn.white.orange:hover{
  color: #fff;
  opacity: 1;
}
.cvBtn.white.orange::before{
  background: #e04622;
}
.cvBtn.glay {
  color: #fff;
  background: #4c4c4c;
  border: 2px solid #4c4c4c;
}
.cvBtn.glay:hover{
  color: #4c4c4c;
  opacity: 1;
}
.cvBtn.glay::before{
  background: #fff;
}

.btn_wh {
  border-radius: 60px;
  background: #fff;
  border: 5px solid #e04622;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  width: 520px;
  margin: 0 auto;
  position: relative;
  vertical-align: middle;
  line-height: 1.2;
  margin-top: 30px;
  background-color: #e04622;
}
@media screen and (max-width: 930px) {
  .btn_wh {
    width: 48%;
  }
}
.btn_wh a {
  display: block;
  color: #fff;
  padding: 25px;
  font-size: 30px;
}
.btn_wh::after {
  content: '';
  width: 13px;
  height: 13px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 7%;
  bottom: 44%;
}
/*Header----------------------------------------------------------- */
.header.change-color {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(24px);
  transition: 0.3s;
}
.logo_area .logo{
  width:240px
}
header a:link,
header a:visited {
  color: #fff;
}
header a:hover {
  opacity: 1;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  padding: 15px 0;
  z-index: 99999;
}
header:before {
  position: absolute;
  content: "";
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}
header .container,
header nav,
.nav_main,
.nav_sub {
  display: flex;
  align-items: center;
}
header .container {
  justify-content: space-between;
}
header .logo_area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav_main {
  font-size: 14px;
  border-bottom: 1px solid #fff;
  margin-right: 15px;
}
.nav_main a {
  display: block;
  width: 100%;
  padding: 8px;
}
.nav_main a:hover {
  background: #41a9a5;
}
.nav_sub {
  font-size: 12px;
  font-weight: bold;
}
.nav_sub a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 30px;
  height: 42px;
}
.nav_sub a span {
  line-height: 20px;
}
.nav_favorite a {
  background: #fff;
  border: 1px solid #41a9a5;
}
.nav_favorite a:link,
.nav_favorite a:visited {
  color: #fff;
}
.nav_contact a {
  background: #e04622;
  border: 1px solid #e04622;
  width: 42px;
}
.nav_favorite {
  margin-right: 10px;
}

@media screen and (max-width: 1229px) {

  /*はみ出し画像中央----------------------------------------------------------- */
  .wic1 img {width: 100%;}
  .wic1 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .wic2 img {width: 100%;}
  .wic2 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .wic3 img {width: 100%;}
  .wic3 {
    margin-left: -15px;
    margin-right: -15px;
  }

  /*Header----------------------------------------------------------- */
  #nav_toggle {
    position: absolute;
    top: 0;
    /**/
    right: 15px;
    /**/
    width: 40px;
    /**/
    height: 30px;
  }
  #nav_toggle div {
    position: relative;
    width: 30px;
    /**/
    margin: 0 auto;
  }
  #nav_toggle span {
    display: block;
    height: 4px;
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    transition: 0.5s;
    border-radius: 3px;
  }
  #nav_toggle span:nth-child(1) {
    top: 5px;
    /**/
  }
  #nav_toggle span:nth-child(2) {
    top: 15px;
    /**/
  }
  #nav_toggle span:nth-child(3) {
    top: 25px;
    /**/
  }
  .open #nav_toggle span:nth-child(1) {
    top: 12px;
    /**/
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 12px;
    /**/
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  div#nav_toggle:after {
    content: "MENU";
    color: #fff;
    display: block;
    padding-top: 80%;
    /**/
    font-family: "Roboto Condensed",sans-serif;
    font-style: italic;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-align: center;
  }
  .open div#nav_toggle:after {
    content: "CLOSE";
  }
  nav ul.container {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  nav li {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }
  nav li:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  nav li a {
    flex-direction: row;
    color: #fff;
  }
  .nav_jp {
    padding-bottom: 0;
    padding-right: 10px;
  }
  nav li {
    position: relative;
  }
  nav li:before {
    position: absolute;
    content: "";
    right: 10px;
    width: 8px;
    height: 12px;
    background-image: url(/img/common/sp_menu_arrow.png);
    top: calc(50% - 6px);
  }
  header {
    height: auto;
  }
  header .contact {
    display: none;
  }
  header.open .contact {
    display: block;
    width: 100%;
  }
  header .container,
  header nav,
  .nav_main,
  .nav_sub {
    flex-direction: column;
    align-items: flex-start;
  }
  header .logo_area {
    width: 40%;
  }
  .nav_main,
  .nav_sub {
    width: 100%;
    margin-right: 0;
  }
  .nav_sub li {
    margin-top: 10px;
  }
  .nav_sub li:not(:last-child) {
    border-bottom: 0;
  }
  .nav_main li a {
    text-align: center;
    padding: 15px;
  }
  .nav_sub li a {
    padding: 15px;
    text-align: center;
    font-size: 16px;
  }
  .nav_contact a {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1229px) {
  .nav_sub {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    gap: 15px;
  }
  .nav_sub li {
    width: 50%;
  }
  .nav_favorite {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #nav_toggle {
    top: 15px;
  }
  header .logo_area {
    width: 80%;
  }
}

/*MV----------------------------------------------------------- */
.mv{
  padding: 130px 0 100px;
  background: url(../img/pc_mv_bg.png) no-repeat center;
  background-size: cover;
}

/*CTA----------------------------------------------------------- */


/*CTA2----------------------------------------------------------- */


/*sec01----------------------------------------------------------- */
.sec01{
  background: url(../img/pc_sec01_bg.png) no-repeat center/cover;
}
.sec01 h2{
  color: #FFF;
}
.sec01 h2 .font_50{
  line-height: 1.2;
  margin-top: 10px;
}
@media (min-width: 960px) {
.inner{
  width: 930px;
  margin: 0 auto;
}
}
/*sec02----------------------------------------------------------- */
.sec02 .btn_wh{
  margin-top: 45px;
}

/*sec03----------------------------------------------------------- */
.sec03 h2{
  background-color: #41a9a5;
  color: #FFF;
  padding: 45px 0;
}
.sec03 h2 .font_l {
  font-size: 70px;
}
.sec03 h2 .font_50{
  line-height: 1.2;
}
.sec03 .inner{
  margin-top: 45px;
}
.sec03 .box {
  position: relative;
  padding: 30px;
}
.sec03 .box:before, .sec03 .box:after {
  content: '';
  width: 30px;
  height: 30px;
  position: absolute;
  display: inline-block;
}
.sec03 .box:before {
  border-left: solid 1px #41a9a5;
  border-top: solid 1px #41a9a5;
  top: 0;
  left: 0;
}
.sec03 .box:after {
  border-right: solid 1px #41a9a5;
  border-bottom: solid 1px #41a9a5;
  bottom: 0;
  right: 0;
}
.sec03 .tokuten h3{
  margin-bottom: 30px;
}
.sec03 .tokuten h3 span{
  background-color: #41a9a5;
  font-weight: bold;
  color: #FFF;
  font-size: 30px;
  display: inline-block;
  padding: 0 10px;
}
.sec03 .tokuten .font_s {
  font-size: 18px;
}
.sec03 .tokuten .font_m {
  font-size: 22px;
}
.sec03 .white_box_s{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 30px 10px;
}
.sec03 .store{
  background-color: #fafafa;
}
.sec03 .store .font_m {
  font-size: 30px;
}
.sec03 .store .font_s {
  font-size: 14px;
}
/*sec04----------------------------------------------------------- */
.sec04 h2 .font_l {
  font-size: 70px;
}
.sec04 h3 {
  text-align: left;
  border-bottom: 2px solid #41a9a5;
  padding-bottom: 15px;
  font-size: 26px;
  font-weight: bold;
}
.sec04 .en {
  font-family: roboto;
  font-size: 200%;
  font-style: italic;
  margin-right: 15px;
}
.sec04 .step{
  font-size: 30px;
  margin-right: 3px;
}
.sec04 .box:not(:last-child){
  margin-bottom: 30px;
}
.sec04 .gr_box{
  background-color: #ecebeb;
  margin-top: 30px;
  padding: 45px;
}
.sec04 .gr_box .btn_wh {
  border-radius: 60px;
  background: #fff;
  border: 3px solid #e04622;
  font-weight: bold;
  text-align: center;
  width: 300px;
  margin: 0;
  position: relative;
  vertical-align: middle;
  line-height: 1.2;
  margin-top: 30px;
  background-color: #e04622;
}
.sec04 .gr_box .btn_wh a{
  padding: 15px;
  font-size: 18px;
}
.sec04 .gr_box .btn_wh .font_l {
  font-size: 18px;
}
.sec04 .gr_box .btn_wh::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 7%;
  bottom: 45%;
}
@media (min-width: 960px) {
  .sec04 .fx-col-70-s {
    flex-basis: 62%;
    max-width: 62%;
  }
  .sec04 .fx-col-30-s {
    flex-basis: 38%;
    max-width: 38%;
  }
}

/*sec05----------------------------------------------------------- */
.sec05 .box{
  background-color: #FFF;
  padding: 10px;
}
.sec05 .white_box{
  border: solid 1px #41a9a5;
}
.sec05 h2 .font_50{
  line-height: 1.2;
}
.sec05 .btn_wh {
  border-radius: 60px;
  background: #fff;
  border: 3px solid #e04622;
  font-weight: bold;
  text-align: center;
  width: 300px;
  margin: 0;
  position: relative;
  vertical-align: middle;
  line-height: 1.2;
  margin-top: 30px;
  background-color: #e04622;
}
.sec05 .btn_wh a{
  padding: 15px;
  font-size: 18px;
}
.sec05 .btn_wh .font_l {
  font-size: 18px;
}
.sec05 .btn_wh::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 7%;
  bottom: 45%;
}
@media (min-width: 960px) {
  .sec05 .fx-col-60-s {
    flex-basis: 58%;
    max-width: 58%;
  }
  .sec05 .fx-col-40-s {
    flex-basis: 42%;
    max-width: 42%;
  }
}

/*sec20----------------------------------------------------------- */

/*Footer----------------------------------------------------------- */
footer {
  background: #000;
}
footer a:link,
footer a:visited {
  color: #fff;
}
footer a:hover {
  color: #41a9a5;
}
footer .footer_slash {
  padding: 0 10px;
}
footer .footer_list li a{
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  footer a:link,
  footer a:visited {
    font-size: 12px;
    display: block;
    padding: 10px 0;
  }
  footer .footer_logo img {
    margin: 0 auto;
  }
  footer .fx-col-100-xs {
    margin-top: 0;
  }
  footer .footer_slash {
    display: none;
  }
}
