@charset "utf-8";

/*---------------------------------------------------------------------------------------------

ベース

---------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: 'Zen Maru Gothic', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.poppins {
  font-family: 'Poppins', sans-serif;
}

.noto {
  font-family: 'Noto Sans JP', sans-serif;
}

.main {
  padding-top: 80px;
  /* background: #FFF; */
  background: #FDF8EF;
}

.contents {
  width: 90%;
  max-width: 1000px;
  min-width: 1000px;
  margin: auto;
}

.check_cont.first {
  margin-bottom: 80px;
}

.disabled {
  pointer-events: none;
}

.disactive {
  pointer-events: none;
}

.hidden {
  display: none;
}

.nav_wrap {
  padding-top: 80px;
  margin-top: -80px;
}

.nav_wrap.step02 {
  position: relative;
  top: -50px;
}

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

  body {
  }

  .main {
    padding-top: 65px;
  }

  .contents {
    min-width: auto;
  }

  .nav_wrap {
    padding-top: 65px;
    margin-top: -65px;
  }

}


/*---------------------------------------------------------------------------------------------

フェードインアニメーション

---------------------------------------------------------------------------------------------*/


.view.on {
    opacity: 1;
    transform: translate(0px,0px);
    visibility: visible;
}
.view {
    transition: 1.2s;
    opacity: 0;
    transform: translate(0px,60px);
}

/*---------------------------------------------------------------------------------------------

ハンバーガーメニュー

---------------------------------------------------------------------------------------------*/

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

.hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 40px;
  height: 25px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  border-radius: 1px;
  left    : 6px;
  background : #EB6001;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span {
  background: #FFF;
}
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  background: #FDF8EF;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: block;
}

nav.globalMenuSp ul li {
  position: relative;
  list-style-type: none;
  padding: 0;
  width: 90%;
  margin: 15px auto;
  display:flex;
	justify-content: flex-start;
	align-items: center;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: block;
  padding: 1em 0;
  color: #EB6001;
  text-decoration :underline;
  font-size: 2.3rem;
  letter-spacing: .1em;
  font-weight: bold;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

}

/*---------------------------------------------------------------------------------------------

ヘッダー

---------------------------------------------------------------------------------------------*/

header {
  width: 100%;
  background: #FFF;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  padding: 15px 10px;
  box-shadow: 0px 6px 6px 0px rgba(0,0,0,0.3);
}

.head_cont {
  width: 100%;
  margin: auto;
}

.head_cont ul {
  width: 100%;
  margin-right: 80px;
}

.head_cont ul li:nth-of-type(2) {
  margin: 0 50px;
}

.head_cont ul li a {
  font-size: 1.9rem;
  font-weight: bold;
  color: #222;
  position: relative;
  transition: .3s;
}

.head_cont ul li a:hover {
  color: #EB6001;
}

.head_cont ul li:nth-of-type(2) a::before {
  position: absolute;
  content: "｜";
  font-size: 1.9rem;
  font-weight: bold;
  color: #222;
  top: 50%;
  left: -15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.head_cont ul li:nth-of-type(2) a::after {
  position: absolute;
  content: "｜";
  font-size: 1.9rem;
  font-weight: bold;
  color: #222;
  top: 50%;
  right: -15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.head_logo {
  max-width: 216px;
}

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

  .sp_head_logo {
    max-width: 120px;
  }

  .nav_bar {
    padding: 15px 10px 20px 10px;
    background: #EB6001;
  }




}


/*---------------------------------------------------------------------------------------------

フッター

---------------------------------------------------------------------------------------------*/

footer {
  background: #FFF;
}

.foot_cont {

}

.copy {
  font-size: 1.6rem;
}

nav {
  position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 1000px;
    width: 100%;
    margin: auto;
  z-index: 10;
}


/*---------------------------------------------------------------------------------------------

コンテンツ

---------------------------------------------------------------------------------------------*/

.mv_cont {
  width: 100%;
  background: #EB6001;
  margin: auto;
}

.mv_image {
  max-width: 80%;
  margin: auto;
}

.mv_image img {
  width: 100%;
}

.whats_box {
  position: relative;
  max-width: 896px;
  margin: auto;
  /* background: #FFF; */
  border: none;
  border-radius: 0px;
}

.whats_box h2 {
  font-size: 4.2rem;
  font-weight: bold;
  color: #EB6001;
  position: relative;
}

.whats_box h2::before {
  position: absolute;
  content: "";
  background: url("../img/ico_tit_left.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29px;
  height: 56px;
  top: 0;
  left: 20%;
}

.whats_box h2::after {
  position: absolute;
  content: "";
  background: url("../img/ico_tit_right.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29px;
  height: 56px;
  top: 0;
  right: 21%;
}

.whats_box span {
  display: block;
  font-size: 1.6rem;
  color: #EB6001;
  letter-spacing: .4em;
}

.whats_txt {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.9;
}

.btn_box {
  position: relative;
  z-index: 1;
}

.whats_btn {
  position: relative;
  width: 434px;
  height: 64px;
  background: #FFF;
  border: 3px solid #EB6001;
  border-radius: 32px;
  font-size: 2.1rem;
  font-weight: bold;
  color: #EB6001;
  margin: auto;
}

.whats_btn:hover {
  background: #EB6001;
  color: #FFF;
  transition: all 0.2s ease;
}

.whats_btn::before {
  position: absolute;
  content: "";
  width: 434px;
  height: 64px;
  background: #EB6001;
  border: 3px solid #EB6001;
  border-radius: 32px;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
  transition: all 0.2s ease;
}

.whats_btn:hover::before {
  border: none;
  top: 0;
}

.whats_btn p {
  position: relative;
  padding-right: 30px;
}

.whats_btn p::after {
  position: absolute;
  content: "";
  background: url("../img/ico_link_btn.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30px;
  height: 30px;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: all 0.2s ease;
}

.whats_btn:hover p::after {
  position: absolute;
  content: "";
  background: url("../img/ico_link_btn_hover.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30px;
  height: 30px;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.whats_photo {
  width: 155px;
  margin: auto;
}

.check_wrap {
  position: relative;
}

.bg_white {
  background: #FFF;
}

.check_tit {
  width: 785px;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  /* width: 785px;
  margin: auto;
  margin-bottom: 120px;
  position: relative; */
}

.check_tit p:first-of-type {
  font-size: 3rem;
  font-weight: bold;
  color: #EB6001;
}

.check_tit p:last-of-type {
  position: relative;
  font-size: 2.6rem;
  font-weight: bold;
  color: #FFF;
  background: #EB6001;
  width: 80%;
  height: 50px;
  line-height: 50px;
  box-sizing: border-box;
  margin: 0 auto 15px auto;
}

.check_tit p:last-of-type::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 27px 0 27px 20px;
  border-color: transparent transparent transparent #FFF;
  top: 50%;
  left: -0.2%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.check_tit p:last-of-type::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 27px 20px 27px 0;
  border-color: transparent #FFF transparent transparent;
  top: 50%;
  right: -0.2%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.check_tit h2 {
  max-width: 750px;
  position: relative;
  font-size: 5.5rem;
  font-weight: bold;
  color: #EB6001;
  line-height: 1.5;
  margin: auto;
}

.check_tit h2::before {
  position: absolute;
  content: "";
  background: url("../img/ico_tit_left.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29px;
  height: 56px;
  bottom: 0;
  left: 0;
}

.check_tit h2::after {
  position: absolute;
  content: "";
  background: url("../img/ico_tit_right.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29px;
  height: 56px;
  bottom: 0;
  right: 0;
}

.step_tit {
  position: relative;
  width: 100%;
  height: 64px;
}

/* .step_tit.step02 {
  top: -50px;
} */

.step_tit::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #EB6001;
  top: 45%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.step_tit::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: #EB6001;
  top: 52%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.step_tit h3 {
  position: absolute;
  font-size: 4.6rem;
  font-weight: bold;
  letter-spacing: .1em;
  color: #EB6001;
  background: #FFF;
  padding: 10px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}

.check_step_txt {
  color: #414141;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.8;
  flex-flow: column;
}

.check_step_txt_box {
  position: relative;
  z-index: 1;
}

.check_step_txt p {
  position: relative;
  display: inline-block;
}

.check_step_txt p::before {
  position: absolute;
  content: "";
  width: 105%;
  height: 11px;
  background: #FFCE3D;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}

.check_map {
  position: relative;
  padding-bottom: 150px;
}

.map_photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@keyframes anim01 {
    0% {
        top: -20%;
    }
    50% {
        top: -25%;
    }
    100% {
        top: -20%;
    }
}

@keyframes anim02 {
    0% {
        top: -28%;
    }
    50% {
        top: -33%;
    }
    100% {
        top: -28%;
    }
}

@keyframes anim03 {
    0% {
        bottom: 20%;
    }
    50% {
        bottom: 25%;
    }
    100% {
        bottom: 20%;
    }
}

.map_photo img:first-of-type {
  position: absolute;
  max-width: 277px;
  top: -33%;
  left: -10%;
  transition: all .2s ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 1.6s;
  animation-name: anim02;
}

.map_photo img:nth-of-type(3) {
  position: absolute;
  max-width: 273px;
  right: -10%;
  transition: all .2s ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-name: anim01;
}

.map_photo img:nth-of-type(4) {
  position: absolute;
  max-width: 273px;
  bottom: 25%;
  left: -10%;
  transition: all .2s ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 1.4s;
  animation-name: anim03;
}

/*
.map_photo img:last-of-type {
  position: absolute;
  max-width: 440px;
  bottom: 0;
  right: 0;
}
*/

.map_btn {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@keyframes fade {
    0%, 50% {
        opacity: 0;
        transform: scale(0);
    }
}

@keyframes pulsation_before {
  0% { transform: translate(-50%, -47%) scale(1); }
  50% { transform: translate(-50%, -47%) scale(0.9); }
  100% { transform: translate(-50%, -47%) scale(1.1); }
}

@keyframes pulsation_after {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(0.9); }
  100% { transform: translate(-50%, -50%) scale(1.1); }
}

.step01_photo {
  max-width: 400px;
  margin: auto;
}

label.step01_btn {
  position: absolute;
  top: 0;
  left: 0;
  color: #EB6001;
  font-size: 1.3rem;
  text-align: center;
}

.step01_radio:checked + label.step01_btn {
  color: #FFF;
}

label.step01_btn.od {
  top: 26%;
  left: 18%;
}

label.step01_btn.cb {
  top: 25%;
  left: 48%;
}

label.step01_btn.ak {
  top: 52%;
  left: 35%;
}

label.step01_btn::before {
  position: absolute;
  content: "";
  width: 95px;
  height: 95px;
  background: #EB6001;
  border: 3px solid #EB6001;
  border-radius: 47.5%;
  z-index: -2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -47%);
  -webkit-transform: translate(-50%, -47%);
  -ms-transform: translate(-50%, -47%);
}

label.step01_btn:hover::before {
  animation: pulsation_before .7s alternate infinite;
}

.step01_radio:checked + label.step01_btn::before {
  top: 50%;
}

label.step01_btn::after {
  position: absolute;
  content: "";
  width: 95px;
  height: 95px;
  background: #FFF;
  border: 3px solid #EB6001;
  border-radius: 47.5%;
  z-index: -1;
  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

label.step01_btn:hover::after {
  animation: pulsation_after .7s alternate infinite;
}

.step01_radio:checked + label.step01_btn::after {
  background: #EB6001;
}

[type="radio"],
[type="checkbox"] {
    display: none;
}

@keyframes pulsation_list {
  0% { transform: scale(1); }
  50% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.check_list ul li {
  position: relative;
  width: calc(25% - 12px);
  margin-bottom: 38px;
  margin-left: 15px;
}

.check_list ul li:hover {
  animation: pulsation_list .7s alternate infinite;
}

.check_list ul li:nth-of-type(1),
.check_list ul li:nth-of-type(5),
.check_list ul li:nth-of-type(9),
.check_list ul li:nth-of-type(13) {
  margin-left: 0;
}

.step02_img {
  border-radius: 12px;
  transition: .3s;
}

.step01_radio:checked + label .step02_img {
  border: 4px solid #EB6001;
}

.step02_radio:checked + label .step02_img {
  border: 4px solid #EB6001;
}

.step02_tit {
  position: absolute;
  width: 200px;
  height: 30px;
  color: #414141;
  background: #FFF;
  border: 2px solid #414141;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transition: .3s;
}

.step01_radio:checked + label .step02_tit {
  color: #EB6001;
  border: 2px solid #EB6001;
}

.step02_radio:checked + label .step02_tit {
  color: #EB6001;
  border: 2px solid #EB6001;
}

.submit_btn {
  position: relative;
  width: 340px;
  height: 64px;
  background: #FFF;
  border: 3px solid #EB6001;
  border-radius: 32px;
  font-size: 2.1rem;
  font-weight: bold;
  color: #EB6001;
  margin: auto;
  transition: all 0.2s ease;
}

.submit_btn:hover {
  background: #EB6001;
  color: #FFF;
}

.submit_btn.disactive {
  background: #969696;
  border: 3px solid #414141;
  color: #414141;
}


.submit_btn::before {
  position: absolute;
  content: "";
  width: 340px;
  height: 64px;
  background: #EB6001;
  border: 3px solid #EB6001;
  border-radius: 32px;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
  transition: all 0.2s ease;
}

.submit_btn:hover::before {
  border: none;
  top: 0;
}

.submit_btn.disactive::before {
  background: #414141;
  border: 3px solid #414141;
}


.submit_btn p {
  width: 100%;
  text-align: center;
  position: relative;
}

.submit_btn p::after {
  position: absolute;
  content: "";
  background: url(../img/ico_link_btn.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.submit_btn:hover p::after {
  position: absolute;
  content: "";
  background: url(../img/ico_link_btn_hover.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.submit_btn.disactive p::after {
  position: absolute;
  content: "";
  background: url(../img/ico_link_btn_off.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.result_box h2 {
  width: 230px;
  margin: 70px auto 30px auto;
  font-size: 5.5rem;
  font-weight: bold;
  color: #EB6001;
  position: relative;
}

.result_box h2::before {
  position: absolute;
  content: "";
  background: url(../img/ico_tit_left.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29px;
  height: 56px;
  top: 5%;
  left: -30%;
}

.result_box h2::after {
  position: absolute;
  content: "";
  background: url(../img/ico_tit_right.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29px;
  height: 56px;
  top: 5%;
  right: -31%;
}

.result_bar {
  position: relative;
  width: 100%;
  background: #EB6001;
  padding: 15px;
  margin-top: 40px;
  color: #FFF;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
}

.result_bar::before {
  position: absolute;
  content: "";
  background: url("../img/arrow_result01.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 33px;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.result_bar img {
  max-width: 103px;
  margin-right: 20px;
}

.result_pattern_image_box {
  max-width: 296px;
  width: 30%;
}

.result_pattern_image_box:first-of-type {
  margin-right: 13px;
}

.result_pattern_thumb {
  position: relative;
}

.result_pattern_thumb a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
  background-color: rgba(255,255,255, 0);
  transition: .3s;
}

.result_pattern_thumb a:hover::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 8px;
  background-color: rgba(255,255,255, 0.5);
}

.result_pattern_thumb.special {
  border: 5px solid #EB6001;
  border-radius: 15px;
}

.result_pattern_image_box p {
  position: absolute;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFF;
    background: #EB6002;
    display: inline-block;
    padding: 10px;
    border-radius: 8px;
    top: 5%;
    left: 3%;
}

.result_pattern_image_box .result_pattern_thumb.special p {
  display: block;
    width: 90%;
    text-align: center;
    padding: 5px 2px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.result_pattern_tit {
  font-size: 1.8rem;
    margin: 25px auto 0 auto;
    text-align: center;
}

.plus {
  position: relative;
  width: 35px;
  height: 35px;
  margin: 0 7px;
  margin-top: 95px;
}

.plus::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 4px;
  background: #EB6002;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.plus::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 35px;
  background: #EB6002;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.result_pattern_calc {
  margin: 30px auto 40px auto;
}

.result_freepass_txt {
  color: #414141;
  font-size: 3.6rem;
  margin-top: 30px;
  font-weight: bold;
  line-height: 1.8;
  flex-flow: column;
}

.result_freepass_txt .check_step_txt_box p span {
  font-size: 4.8rem;
  color: #EB6001;
}

.result_freepass_txt .check_step_txt_box p {
  position: relative;
}

.result_freepass_txt .check_step_txt_box p b {
  color: #EB6001;
}

.result_freepass_txt .check_step_txt_box p::before {
    position: absolute;
    content: "";
    width: 102%;
    height: 13px;
    background: #FFCE3D;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
}

.calc_before {
  position: relative;
  width: 330px;
  height: 70px;
  background: #FFF;
  border: 4px solid #EB6001;
  border-radius: 8px;
  color: #414141;
  font-size: 2rem;
  font-weight: 500;
}

.calc_before::before {
  position: absolute;
  content: "";
  background: url("../img/ico_train.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 31px;
  height: 36px;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.calc_before p {
  padding-left: 45px;
}

.calc_before p span {
  font-size: 3.5rem;
}

.result_pattern_calc img {
  margin: 15px 15px 0 15px;
}

.calc_after {
  position: relative;
  width: 520px;
  height: 70px;
  background: #FFF;
  border: 4px solid #EB6001;
  border-radius: 8px;
  color: #414141;
  font-size: 2.4rem;
  font-weight: 500;
}

.calc_after::before {
  position: absolute;
  content: "";
  background: url("../img/ico_ticket.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 42px;
  height: 33px;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.calc_after p {
  padding-left: 55px;
  margin-top: -5px;
}

.calc_after p span {
  font-size: 4.2rem;
  color: #EB6001;
}

.calc_coution {
  font-size: 1.3rem;
  text-align: right;
}

.acc_btn {
  position: relative;
  width: 340px;
  height: 64px;
  background: #FFF;
  border: 3px solid #EB6001;
  border-radius: 32px;
  font-size: 2.1rem;
  font-weight: bold;
  color: #EB6001;
  margin: auto;
}

.acc_btn::before {
    position: absolute;
    content: "";
    width: 340px;
    height: 64px;
    background: #EB6001;
    border: 3px solid #EB6001;
    border-radius: 32px;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
}

.acc_btn p {
  width: 100%;
  text-align: center;
  position: relative;
}

.acc_btn p::after {
  position: absolute;
  content: "+";
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 25px;
  color: #FFF;
  background: #EB6001;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.acc_btn.active p::after {
  position: absolute;
  content: "ー";
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 26px;
  color: #FFF;
  background: #EB6001;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.result_root_txt {
  width: 90%;
  font-size: 3.6rem;
  font-weight: bold;
  color: #414141;
  margin: 40px auto 0 auto;
}

.result_root_txt span {
  font-size: 4.8rem;
  color: #EB6001;
}

.result_root_txt b {
  color: #EB6001;
}

.result_root_image {
  width: 100%;
  margin: auto;
  text-align: center;
}

.close_btn {
  position: relative;
  width: 193px;
    height: 50px;
    background: #FFF;
    border: 3px solid #EB6001;
    border-radius: 25px;
    font-size: 2.1rem;
    font-weight: bold;
    color: #EB6001;
    margin: 70px auto;
}

.close_btn::after {
  position: absolute;
  content: "";
  background: url("../img/ico_close.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

#acc_cont {
  display: none;
}

#acc_cont.open {
  display: block;
}

.acc__trigger {
  font-size: 2.6rem;
  font-weight: bold;
  color: #FFF;
  padding: 10px;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: #EB6002;
  border-radius: 20px;
  border: 0;
  cursor: pointer;
  position: relative;
  margin-top: 50px;
}

.acc__trigger_demo {
  font-size: 2.6rem;
  font-weight: bold;
  color: #FFF;
  padding: 10px;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: #EB6002;
  border-radius: 20px;
  border: 0;
  cursor: pointer;
  position: relative;
  margin-top: 50px;
}

.acc__trigger[aria-expanded="true"] {
}

/* 開閉アイコン（プラス→マイナス） */
.acc__trigger::after {
  text-align: center;
  position: absolute;
    content: "+";
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 25px;
    color: #EB6001;
    background: #FFF;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.acc__trigger[aria-expanded="true"]::after {
    text-align: center;
    position: absolute;
    content: "ー";
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 26px;
    color: #EB6001;
    background: #FFF;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

/* パネル（JSでheightをアニメ制御） */
.acc__panel {
  overflow: hidden;
  height: 0;
  transition: height 240ms ease;
}
.acc__panel-inner {
  padding: 16px;
}

.result_pattern_box {
  width: 90%;
  max-width: 1000px;
  min-width: 1000px;
  margin: auto;
}

.gourmet_wrap {
  padding: 250px 0 80px 0;
  position: relative;
}

.gourmet_img {
  position: absolute;
    max-width: 330px;
    margin: auto;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.gourmet_list_box {
  width: 30%;
  margin: 0 0.5%;
}

.gourmet_list_tit {
  font-size: 1.5rem;
  color: #FFF;
  padding: 5px;
  text-align: center;
  margin-bottom: 10px;
}

.gourmet_list_box.blue .gourmet_list_tit {
  background: #4D7FB2;
}

.gourmet_list_box.pink .gourmet_list_tit {
  background: #D680AB;
}

.gourmet_list_box.green .gourmet_list_tit {
  background: #87B45B;
}

.gourmet_list li {
  color: #FFF;
  position: relative;
  width: calc(50% - 5px);
  margin-top: 10px;
  margin-left: 10px;
  border-radius: 11px;
  overflow: hidden;
}

.gourmet_list_box.blue .gourmet_list li {
  border: 3px solid #4D7FB2;
}

.gourmet_list_box.pink .gourmet_list li {
  border: 3px solid #D680AB;
}

.gourmet_list_box.green .gourmet_list li {
  border: 3px solid #87B45B;
}

.gourmet_list li:first-of-type,
.gourmet_list li:nth-of-type(3) {
  margin-left: 0;
}

.gourmet_list li p {
  width: 95%;
  position: absolute;
  text-align: center;
  font-size: 1.2rem;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.gourmet_cont {
  width: 90%;
  max-width: 1000px;
  min-width: 1000px;
  margin: auto;
}

.top_back {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 50;
}

.step02_btn.disabled::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  background-size: cover;
  background-position: center;
  opacity: .4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.step02_btn.disabled .step02_tit {
  background: #969696;
}

.gourmet_list a {
  opacity: 1;
  transition: .3s;
}

.gourmet_list a:hover {
  opacity: .6;
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {
  color: transparent;
}

.ex_tit {
  font-size: 2.2rem;
    color: #FFF;
    text-align: center;
    width: 95%;
    background: #EB6001;
    padding: 5px 0;
    margin: 30px auto;
}

.exsample_list ul li {
  max-width: 145px;
    margin-right: 15px;
}

.exsample_list ul li p {
  font-size: 1.6rem;
    margin-top: 20px;
    text-align: center;
}

.ex_step_txt {
    color: #EB6001;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.8;
    flex-flow: column;
  margin-left: 20px;
}

.ex_step_txt_box {
    position: relative;
    z-index: 1;
}

.ex_step_txt p {
    position: relative;
    display: inline-block;
}

.ex_step_txt p::before {
    position: absolute;
    content: "";
    width: 105%;
    height: 11px;
    background: #FFCE3D;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
}

.ex_step_txt p span {
  font-size: 4.5rem;
    letter-spacing: 0;
    line-height: 1.4;
    display: inline;
}

.check_coution {
  width: 95%;
    font-size: 1.3rem;
    text-align: right;
}

.check_coution_link {
  display: block;
  text-decoration: underline;
  margin-top: 10px;
}

.check_coution_link p {
  position: relative;
  padding-right: 10px;
}

.check_coution_link p::after {
  position: absolute;
  content: ">";
  font-size: 1.1rem;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.result_coution {
  width: 100%;
    font-size: 1.3rem;
    text-align: right;
    margin: 10px auto 40px auto;
}

.result_bottom_link {
  display: block;
    text-align: center;
    font-size: 2.6rem;
    text-decoration: underline;
    margin-top: 10px;
  opacity: 1;
  transition: .3s;
}

.result_bottom_link:hover {
  opacity: .6;
}

.ex_coution {
  width: 95%;
  text-align: right;
  margin: auto;
  font-size: 1.4rem;
}

.footNav_link {
	width: 48%;
}

.result_area_tit {
  max-width: 1000px;
  width: 90%;
  position: relative;
  font-size: 4rem;
  font-weight: bold;
  color: #EB6002;
  text-align: center;
  margin: auto;
  margin-top: 50px;
}

.result_area_tit p {
  display: inline-block;
}

.result_area_tit::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 1px;
  background: #EB6002;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.result_area_tit::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 1px;
  background: #EB6002;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}


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

  .mv_image {
    max-width: 100%;
  }

  .whats_cont {
    width: 100%;
    background: #FFF;
    margin-top: 0px !important;
  }

  .btn_box {
    margin-bottom: 70px;
  }

  .whats_box {
    width: 90%;
  }

  .whats_box h2 {
    font-size: 2.4rem;
  }

  .whats_box h2::before {
    width: 16px;
    height: 32px;
    left: 10%;
  }

  .whats_box h2::after {
    width: 16px;
    height: 32px;
    right: 11%;
  }

  .whats_box span {
    font-size: 1.4rem;
  }

  .whats_txt {
    width: 90%;
    text-align: left;
    margin: auto;
    font-size: 1.6rem;
  }

  .whats_btn {
    width: 90%;
    height: 60px;
    font-size: 1.5rem;
  }

  .whats_btn::before {
    width: 102%;
    height: 60px;
    top: 2%;
  }

  .whats_btn p {
    text-align: center;
    padding-right: 0;
  }

  .whats_btn p::after {
    width: 24px;
    height: 24px;
    right: -40%;
  }

  .whats_btn:hover p::after {
    right: -40%;
  }

  .whats_photo {
    width: 140px;
  }

  .check_map {
    padding-top: 50px;
    padding-bottom: 185px;
  }

  .bg_white {
    padding-top: 150px !important;
    padding-bottom: 80px;
  }

  .check_tit {
    width: 90%;
    top: 0;
    /* width: 90%;
    margin-bottom: 60px; */
  }

  .check_tit p:first-of-type {
    font-size: 1.5rem;
  }

  .check_tit p:last-of-type {
    width: 100%;
    font-size: 1.4rem;
    height: 30px;
    line-height: 30px;
  }

  .check_tit h2 {
    font-size: 3.2rem;
    width: 80%;
  }

  .check_tit h2::before {
    width: 43px;
    height: 85px;
    bottom: 6%;
    left: -5%;
  }

  .step_tit {
    margin-top: 50px;
  }

  .step_tit.step02 {
    margin-top: 10px;
  }

  .step_tit h3 {
    font-size: 2.8rem;
    padding: 10px 15px;
  }

  .step_tit::before {
    height: 1px;
    top: 47%;
  }

  .step_tit::after {
    height: 2px;
    top: 52%;
  }

  .check_step_txt {
    margin-top: 0px !important;
  }

  .check_step_txt.step02 {
    margin-top: -50px !important;
  }

  .check_step_txt p {
    font-size: 1.8rem;
    letter-spacing: .1em;
    display: block;
  }

  .check_step_txt p::before {
    width: 100%;
    height: 5px;
    bottom: 15%;
  }

  .map_photo img:nth-of-type(2) {
    position: absolute;
    max-width: 165px;
    top: -9%;
    left: 0;
    animation-name: none;
  }

  .map_photo img:nth-of-type(3) {
    max-width: 125px;
    top: -12%;
    right: 0;
    animation-name: none;
  }

  .map_photo img:nth-of-type(4) {
    max-width: 125px;
    bottom: 22%;
    left: 0;
    animation-name: none;
  }

/*
  .map_photo img:last-of-type {
    max-width: 250px;
  }
*/

  .check_tit h2::after {
    width: 43px;
    height: 85px;
    bottom: 6%;
    right: -5%;
  }

  .check_list ul li {
    position: relative;
    width: calc(50% - 20px);
    margin: 0 10px;
    margin-bottom: 38px;
  }

  .step02_tit {
    width: 100%;
    font-size: 1.05rem;
    text-align: center;
  }

  label.step01_btn {
    font-size: 1rem;
  }

  label.step01_btn::before {
    width: 70px;
    height: 70px;
    border: 2px solid #EB6001;
    border-radius: 35px;
  }

  label.step01_btn::after {
    width: 70px;
    height: 70px;
    border: 2px solid #EB6001;
    border-radius: 35px;
  }

  label.step01_btn.od {
    top: 23%;
    left: 16%;
  }

  label.step01_btn.cb {
    top: 27%;
    left: 45%;
  }

  label.step01_btn.ak {
    top: 45%;
    left: 30%;
  }

  .submit_btn {
    width: 80%;
    height: 56px;
    font-size: 1.6rem;
    border-radius: 28px;
  }

  .submit_btn::before {
    width: 102%;
    height: 56px;
    border-radius: 28px;
    top: 2%;
  }

  .result_box h2 {
    font-size: 3.7rem;
  }

  .result_box h2::before {
    width: 20px;
    height: 38px;
    left: 0;
  }

  .result_box h2::after {
    width: 20px;
    height: 38px;
    right: 0;
  }

  .result_bar {
    font-size: 2rem;
  }

  .result_pattern_image_box .result_pattern_thumb span {
    width: 100%;
    height: 120px;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
  }

  .result_pattern_image_box .result_pattern_thumb.special span {
    border: 3px solid #EB6001;
    border-radius: 8px;
  }

  .result_pattern_image_box .result_pattern_thumb span img {
    width: 150%;
    max-width: 200%;
  }

  .result_pattern_box {
    width: 95%;
    min-width: auto;
  }

  .result_pattern_image_box p {
    font-size: 1rem;
    letter-spacing: .1em;
    padding: 5px;
    border-radius: 3px;
  }

  .result_pattern_tit {
    font-size: 1.4rem;
    margin: 10px auto;
  }

  .plus {
    width: 13px;
    height: 13px;
    margin-top: 60px;
  }

  .plus::before {
    width: 13px;
    height: 3px;
  }

  .plus::after {
    width: 3px;
    height: 13px;
  }

  .result_pattern_thumb.special {
    border: none;
    border-radius: 0;
  }

  .result_pattern_image_box p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .result_freepass_txt {
    font-size: 1.6rem;
    flex-flow: column;
  }

  .result_freepass_txt .check_step_txt_box p::before {
    height: 5px;
  }

  .result_freepass_txt .check_step_txt_box p span {
    font-size: 3.3rem;
  }

  .calc_before {
    width: 100%;
    height: 48px;
    font-size: 1.4rem;
    border: 2px solid #EB6001;
  }

  .calc_before::before {
    width: 21px;
    height: 25px;
    left: 27%;
  }

  .calc_before p span {
    font-size: 2.4rem;
  }

  .result_pattern_calc img {
    width: 25px;
    height: auto;
    margin: 10px auto;
    display: block;
    transform: rotate(90deg);
  }

  .calc_after {
    width: 100%;
    height: 48px;
    border: 2px solid #EB6001;
    font-size: 1.5rem;
  }

  .calc_after::before {
    width: 28px;
    height: 23px;
    top: 52%;
    left: 6%;
  }

  .calc_after p {
    padding-left: 45px;
  }

  .calc_after p span {
    font-size: 2.9rem;
  }

  .calc_coution {
    font-size: 1.5rem;
  }

  .acc_btn {
    width: 80%;
    height: 56px;
    font-size: 1.6rem;
    border-radius: 28px;
  }

  .acc_btn::before {
    width: 102%;
    height: 56px;
    border-radius: 28px;
    top: 2%;
  }

  .gourmet_cont {
    width: 100%;
    min-width: auto;
    margin: auto;
  }

  .slick-dots {
    bottom: -40px;
  }

  .slick-dots li {
    width: 16px;
    height: 16px;
    margin: 0 8px;
  }

  .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 16px;
    height: 16px;
    padding: 5px;
    cursor: pointer;
    color: #DEDEDE;
    border: 0;
    border-radius: 8px;
    outline: none;
    background: #DEDEDE;
  }

  .slick-dots li.slick-active button {
    color: #EB6001;
    background: #EB6001;
  }

  .result_root_txt {
    font-size: 2.2rem;
  }

  .result_root_txt span {
    font-size: 3.3rem;
  }

  .check_tit p:last-of-type::before {
    left: -1%;
  }

  .check_tit p:last-of-type::after {
    right: -1%;
  }

  .result_cont {
    position: relative;
  }

  .gourmet_img {
    top: -1%;
    max-width: 206px;
  }

  .exsample_box {
    width: 95%;
    margin: auto;
  }

  .exsample_list ul li:last-of-type {
    margin-right: 0;
  }

  .gourmet_wrap {
    padding: 150px 0 80px 0;
  }

  .result_bottom_link {
    font-size: 1.6rem;
  }

  .ex_step_txt {
    margin-left: 0;
    font-size: 2rem;
  }

  .ex_step_txt p span {
    font-size: 3.6rem;
  }

  .ex_step_txt p {
    display: block;
  }

  .ex_coution {
    width: 95%;
    margin: 10px auto;
    text-align: center;
    font-size: 1.2rem;
  }

  .sp_ticket_btn {
    position: relative;
    background: #FFF;
    padding: 0px 25px 0px 15px;
    color: #EB6001;
    border: 2px solid;
    height: 32px;
    border-radius: 16px;
    font-size: 1.2rem;
    margin-left: 15px;
  }

  .sp_ticket_btn::after {
    position: absolute;
    content: "";
    background: url("../img/ico_link_btn_hover.svg") no-repeat;
    background-size: 100%;
    background-position: center;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .acc__trigger {
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
  }

  .acc__trigger_demo {
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
  }

  .acc__trigger::after {
    font-size: 1.6rem;
    line-height: 22px;
    width: 24px;
    height: 24px;
  }

  .acc__trigger[aria-expanded="true"]::after {
    font-size: 1.6rem;
    line-height: 22px;
    width: 24px;
    height: 24px;
  }

  .footNav_link > a {
    font-size: 1.6rem !important;
  }

  .footNav_link > a::before,
  .footNav_link > a::after {
    width: 20px !important;
    height: 20px !important;
    right: 10px !important;
  }

  .top_back {
    bottom: 14%;
  }

  .result_area_tit {
    font-size: 2.1rem;
  }

  .result_root_image {
    width: 100%;
    overflow: hidden;
    overflow-x: scroll;
  }

  .result_root_image img {
    max-width: 1000px;
  }

}
