@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Medula+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* ------------------------------
    mixin
------------------------------ */
/* ------------------------------
    reset
------------------------------ */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 959px) {
  html {
    font-size: 1.0416666667vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.2222222222vw;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

a {
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}

img, object, picture, svg {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
    base
------------------------------ */
html {
  overflow: inherit;
}

body {
  color: #000;
  font-size: 1rem;
  text-align: left;
}

section {
  position: relative;
}

main {
  display: block;
}

.wrap {
  width: 90%;
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 1.6rem;
  line-height: 1.8;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.bold, strong {
  font-weight: bold;
}

.is-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.preload *, .preload *::before, .preload *::after {
  transition: none !important;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.medula {
  font-family: "Medula One", system-ui;
}

.en {
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .fade {
    transition: opacity 0.3s ease;
  }
  .fade:hover {
    opacity: 0.6;
    cursor: pointer;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  input, textarea, select, .select {
    font-size: max(1.6rem, 16px) !important;
  }
}
/* ------------------------------
    header
------------------------------ */
#main_header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to right, #002512, #044624);
}
#main_header .wrap {
  width: 100%;
  height: 110px;
  max-width: inherit;
  padding: 0 130px 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#main_header .logo_wrap {
  flex-grow: 1;
}
#main_header .logo_wrap .logo img {
  width: auto;
  height: 60px;
}
#main_header .menu-trigger {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  z-index: 997;
}
#main_header .menu-trigger .ico {
  width: 40px;
  height: 40px;
  position: relative;
}
#main_header .menu-trigger .ico span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #002512;
}
#main_header .menu-trigger .ico span:nth-of-type(1) {
  top: 20%;
}
#main_header .menu-trigger .ico span:nth-of-type(2) {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 80%;
}
#main_header .menu-trigger .ico span:nth-of-type(3) {
  bottom: 20%;
}
#main_header .menu-trigger .open {
  color: #002512;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}
#main_header .nav_wrap .nav {
  display: flex;
  gap: 5rem;
}
#main_header .nav_wrap .nav li {
  font-size: 2.2rem;
  font-weight: 600;
}
#main_header .nav_wrap .nav li a {
  color: #fff;
}
#main_header #header_nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}
#main_header #header_nav .inner {
  background: url("../img/menu_bg_pc.png") no-repeat center/contain;
  width: 87.4rem;
  height: 34.5rem;
  position: relative;
  padding: 13rem 5rem 5rem;
  margin: 0;
  z-index: 999;
}
#main_header #header_nav .close {
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
}
#main_header #header_nav .close a {
  display: block;
  width: 5rem;
  height: 5rem;
  border: 1px solid #fff;
  overflow: hidden;
  text-indent: -1000px;
  position: relative;
}
#main_header #header_nav .close a::before, #main_header #header_nav .close a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  rotate: 45deg;
  width: 70%;
  height: 1px;
  background: #fff;
}
#main_header #header_nav .close a::after {
  rotate: -45deg;
}
#main_header #header_nav .nav {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
#main_header #header_nav .nav li {
  font-size: 2.4rem;
  font-weight: 600;
}
#main_header #header_nav .nav li a {
  color: #fff;
}
#main_header #header_nav .btn {
  margin-top: 4rem;
  text-align: center;
}
#main_header #header_nav .btn a {
  background: #ffff00;
  color: #002512;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  width: 33rem;
  height: 6rem;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 900;
}
#main_header.navOpen #header_nav {
  opacity: 1;
  pointer-events: auto;
}
#main_header .overlay {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}
#main_header .overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  #main_header,
  #main_header .wrap,
  #main_header .logo_wrap {
    width: 100%;
    height: 60px;
  }
  #main_header {
    padding: 0;
    margin: 0;
    z-index: 999;
  }
  #main_header .wrap {
    padding: 0;
    display: block;
    position: relative;
    min-width: inherit;
  }
  #main_header .logo_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  #main_header .logo_wrap .logo {
    padding-left: 20px;
  }
  #main_header .logo_wrap .logo img {
    width: 140px;
    height: auto;
  }
  #main_header .menu-trigger {
    width: 60px;
    height: 60px;
  }
  #main_header .menu-trigger .ico {
    width: 30px;
    height: 30px;
  }
  #main_header .menu-trigger .ico span {
    height: 2px;
  }
  #main_header .menu-trigger .open {
    font-size: 10px;
  }
  #main_header #header_nav {
    grid-template-columns: 80%;
  }
  #main_header #header_nav .inner {
    background: linear-gradient(25deg, #044624, #002512 30%, #044624);
    width: 100%;
    height: auto;
    padding: 8rem 5rem 5rem;
    border-radius: 2rem;
  }
  #main_header #header_nav .close {
    right: 2.5rem;
    top: 2.5rem;
  }
  #main_header #header_nav .close a {
    width: 5rem;
    height: 5rem;
  }
  #main_header #header_nav .nav {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  #main_header #header_nav .nav li a {
    display: block;
    padding: 0.5em 0;
  }
  #main_header #header_nav .btn a {
    width: 100%;
  }
}
/* ------------------------------
    footer
------------------------------ */
#floating_btn {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 800;
}
@media screen and (max-width: 767px) {
  #floating_btn {
    right: 3vw;
    bottom: 3vw;
  }
}
#floating_btn img {
  width: 35rem;
}
@media screen and (max-width: 959px) {
  #floating_btn img {
    width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  #floating_btn img {
    width: 45vw;
  }
}

#main_footer {
  padding-top: 12rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #main_footer {
    padding-top: 8rem;
  }
}
#main_footer .logo img {
  width: 63rem;
}
@media screen and (max-width: 767px) {
  #main_footer .logo img {
    width: 70vw;
  }
}
#main_footer .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  #main_footer .sns {
    margin-top: 6rem;
    gap: 2rem;
  }
}
#main_footer .sns .item {
  width: 7.5rem;
}
#main_footer .sns .item img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #main_footer .sns .item {
    width: 6rem;
  }
}
#main_footer .bg {
  background: url("../img/footer_bg.png") no-repeat center/cover !important;
  padding: 15rem 0 3rem;
  margin-top: 10rem;
  position: relative;
}
#main_footer .bg .mark {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -30%;
  width: 10rem;
}
@media screen and (max-width: 767px) {
  #main_footer .bg .mark {
    width: 9rem;
  }
}
#main_footer .bg .copy {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}

/* ------------------------------
    main
------------------------------ */
.ttl_sec {
  color: #044624;
  text-align: center;
}
.ttl_sec .en {
  font-size: 4.5rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .ttl_sec .en {
    font-size: 3.5rem;
  }
}
.ttl_sec .en span {
  display: inline-block;
  padding: 0 1.8em;
  position: relative;
}
.ttl_sec .en span::before, .ttl_sec .en span::after {
  content: "";
  background: url("../img/ttl_ico.png") no-repeat center/contain;
  width: 1.5em;
  height: 1em;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.ttl_sec .en span::after {
  left: auto;
  right: 0;
  scale: -1 1;
}
.ttl_sec .ja {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .ttl_sec .ja {
    font-size: 2.4rem;
  }
}
.ttl_sec._white {
  color: #fff;
}

#sec_fv img {
  width: 100%;
}

.bg_outline {
  background: url("../img/outline_bg.jpg") no-repeat center/cover;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .bg_outline {
    margin-top: 6rem;
  }
}

#sec_outline {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  #sec_outline {
    padding: 4rem 0;
  }
}
#sec_outline .catch {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  font-style: italic;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  #sec_outline .catch {
    font-size: 2rem;
  }
}
#sec_outline .catch strong {
  color: #ffff00;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #sec_outline .catch strong {
    font-size: 3.2rem;
  }
}
#sec_outline .catch small {
  display: inline-block;
  font-size: 80%;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  #sec_outline .catch small {
    margin-top: 1em;
  }
}
#sec_outline .list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 63rem;
  margin: 2rem auto 0;
  counter-reset: count;
}
#sec_outline .list .item {
  display: flex;
  gap: 0.5rem;
}
#sec_outline .list .item span {
  flex: 1 1 auto;
  background: #fff;
  border: 2px solid #0c703e;
  color: #044624;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 800;
  padding: 0.3em 0.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_outline .list .item span {
    font-size: 1.6rem;
  }
}
#sec_outline .list .item span small {
  font-size: 70%;
}
#sec_outline .list .item span::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 2rem 2rem;
  border-color: transparent transparent #0c703e transparent;
}
#sec_outline .list .item::before {
  flex: 0 0 auto;
  counter-increment: count;
  content: counter(count, decimal-leading-zero);
  background: #0c703e;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Medula One", system-ui;
  font-size: 4.8rem;
  line-height: 1;
  width: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #sec_outline .list .item::before {
    font-size: 3.4rem;
  }
}
#sec_outline .list .item:nth-child(even) span {
  background: #ddd;
  border-color: #044624;
}
#sec_outline .list .item:nth-child(even) span::before {
  border-bottom-color: #044624;
}
#sec_outline .list .item:nth-child(even)::before {
  background-color: #044624;
}

#sec_grade {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  #sec_grade {
    padding: 4rem 0;
  }
}
#sec_grade .list_wrap {
  position: relative;
}
#sec_grade .list_wrap::before, #sec_grade .list_wrap::after {
  content: "";
  background: url("../img/grade_line.png") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #sec_grade .list_wrap::before, #sec_grade .list_wrap::after {
    display: none;
  }
}
#sec_grade .list_wrap::after {
  left: auto;
  right: 0;
}
#sec_grade .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 75rem;
  margin: 6rem auto;
}
@media screen and (max-width: 767px) {
  #sec_grade .list {
    grid-template-columns: 1fr;
    margin: 3rem auto;
  }
}
#sec_grade .list .item {
  background: url("../img/grade_thumb_bg.png") no-repeat center/cover;
  border-radius: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #sec_grade .list .item {
    padding-bottom: 0;
    border-radius: 0;
  }
}
#sec_grade .list .item a {
  display: block;
}
#sec_grade .list .item .ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3em 1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #sec_grade .list .item .ttl {
    justify-content: flex-start;
  }
}
#sec_grade .list .item .ttl .en {
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
#sec_grade .list .item .ttl .ja {
  font-size: 1.6rem;
  margin-left: 1em;
}
#sec_grade .list .item .inner {
  background: #fff;
  padding: 1.5rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_grade .list .item .inner {
    padding: 0.5rem 1rem;
  }
}
#sec_grade .list .item .inner .txt {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 800;
  margin-bottom: 0.5em;
}
#sec_grade .list .item .inner .price {
  display: flex;
  align-items: center;
}
#sec_grade .list .item .inner .price .sttl {
  background: #044624;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 600;
  padding: 0 0.5em;
  margin-right: 0.5em;
}
#sec_grade .list .item .inner .price .num {
  flex: 1 1 auto;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 800;
}
#sec_grade .list .item .inner .price .num .en {
  font-size: 3.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  vertical-align: -0.1em;
  margin-right: 0.1em;
}
#sec_grade .list .item .inner .price .more {
  background: #044624;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 1.5em;
  border-radius: 100px;
}
@media screen and (min-width: 768px) {
  #sec_grade .list .item .inner .price .more {
    position: absolute;
    left: 50%;
    top: 100%;
    translate: -50% -50%;
  }
}
@media screen and (max-width: 767px) {
  #sec_grade .list .item .inner .price .more {
    padding: 0 0.5em;
  }
}
#sec_grade .list .item._02 {
  background: #0c703e;
}
#sec_grade .list .item._02 .inner .price .sttl {
  background-color: #0c703e;
}
#sec_grade .list .item._02 .inner .price .more {
  background-color: #0c703e;
}
#sec_grade .list .item._03 {
  background: #ff00ae;
}
#sec_grade .list .item._03 .inner .price .sttl {
  background-color: #ff00ae;
}
#sec_grade .list .item._03 .inner .price .more {
  background-color: #ff00ae;
}
#sec_grade .list .item._04 {
  background: #00c3ff;
}
#sec_grade .list .item._04 .inner .price .sttl {
  background-color: #00c3ff;
}
#sec_grade .list .item._04 .inner .price .more {
  background-color: #00c3ff;
}
#sec_grade .season {
  color: #999;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.5em;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  #sec_grade .season {
    font-size: 1.1rem;
    margin: 8rem 0 5rem;
  }
}

#popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: grid;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#popup.is-active {
  opacity: 1;
  pointer-events: auto;
}
#popup .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
#popup .contents {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 75rem;
  margin: 5% auto;
}
#popup .contents .box {
  background: #fff;
  position: relative;
  display: none;
}
#popup .contents .box.is-active {
  display: block;
}
#popup .contents .box .ttl {
  background: url("../img/grade_popup_bg.png") no-repeat center/cover;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 800;
  text-align: center;
  padding: 0.5em 1em;
}
@media screen and (max-width: 767px) {
  #popup .contents .box .ttl {
    font-size: 3rem;
  }
}
#popup .contents .box .catch {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  padding: 1em;
  border-bottom: 15px solid #044624;
}
@media screen and (max-width: 767px) {
  #popup .contents .box .catch {
    font-size: 1.8rem;
    border-bottom-width: 10px;
  }
}
#popup .contents .box .scroll {
  max-height: calc(100vh - 60rem);
  min-height: 30rem;
  overflow-y: auto;
  padding: 3rem 6rem;
}
#popup .contents .box .scroll::-webkit-scrollbar {
  width: 1.5rem;
}
#popup .contents .box .scroll::-webkit-scrollbar-track {
  background-color: #fff;
}
#popup .contents .box .scroll::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  #popup .contents .box .scroll {
    padding: 8vw;
  }
}
#popup .contents .box .scroll .sttl {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 1.5em;
}
#popup .contents .box .scroll .sttl:first-child {
  margin-top: 0;
}
#popup .contents .box .scroll .sttl::before {
  content: "■";
  color: #ff0004;
  margin-right: 0.5em;
  font-size: 70%;
  vertical-align: 0.1em;
}
@media screen and (max-width: 767px) {
  #popup .contents .box .scroll .sttl {
    font-size: 2rem;
  }
}
#popup .contents .box .scroll .txt {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #popup .contents .box .scroll .txt {
    font-size: 1.8rem;
  }
}
#popup .contents .box .btn img {
  width: 100%;
}
#popup .contents .box .close {
  position: absolute;
  right: 2.5rem;
  top: 2.5rem;
  display: block;
  width: 5rem;
  height: 5rem;
  border: 1px solid #fff;
  overflow: hidden;
  text-indent: -1000px;
}
#popup .contents .box .close::before, #popup .contents .box .close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  rotate: 45deg;
  width: 70%;
  height: 1px;
  background: #fff;
}
#popup .contents .box .close::after {
  rotate: -45deg;
}
@media screen and (max-width: 767px) {
  #popup .contents .box .close {
    right: 1rem;
    top: 1rem;
    width: 3rem;
    height: 3rem;
  }
}
#popup .contents .box#popup02 .ttl {
  background: #0c703e;
}
#popup .contents .box#popup02 .catch {
  border-bottom-color: #0c703e;
}
#popup .contents .box#popup03 .ttl {
  background: #ff00ae;
}
#popup .contents .box#popup03 .catch {
  border-bottom-color: #ff00ae;
}
#popup .contents .box#popup04 .ttl {
  background: #00c3ff;
}
#popup .contents .box#popup04 .catch {
  border-bottom-color: #00c3ff;
}

#sec_change {
  background: url("../img/change_bg_pc.png") no-repeat right bottom/100%;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  #sec_change {
    background: url("../img/change_bg_sp.png") no-repeat right bottom -1rem/100%;
  }
}
#sec_change .slider {
  display: flex;
  overflow: hidden;
  margin-top: 4rem;
}
#sec_change .slider .item {
  flex: 0 0 auto;
  padding-right: 1rem;
  animation: change_slider 30s linear infinite;
}
#sec_change .slider .item img {
  flex: 0 0 auto;
  width: 80vw;
  max-width: inherit;
}
@media screen and (max-width: 767px) {
  #sec_change .slider .item img {
    width: 150vw;
  }
}
@keyframes change_slider {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -100% 0;
  }
}
#sec_change .ttl {
  text-align: center;
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  #sec_change .ttl {
    margin-top: 8rem;
  }
}
#sec_change .ttl span {
  background: #044624;
  color: #fff;
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.2em 1.5em;
}
@media screen and (max-width: 767px) {
  #sec_change .ttl span {
    font-size: 2rem;
  }
}
#sec_change .list {
  max-width: 71rem;
  margin: 6rem auto 0;
}
@media screen and (max-width: 767px) {
  #sec_change .list {
    margin-top: 4rem;
  }
}
#sec_change .list .item {
  color: #044624;
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: 700;
  padding: 0.3em 2em;
  position: relative;
}
#sec_change .list .item::before {
  content: "";
  background: #97976e;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.5em;
  height: 0.5em;
  margin: 0.9em 0.8em;
  border-radius: 100%;
}
#sec_change .list .item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #97976e 2em, #044624 2em);
}
@media screen and (max-width: 767px) {
  #sec_change .list .item {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 960px) {
  #sec_change .img {
    position: absolute;
    left: 4rem;
    bottom: 0;
    width: 19rem;
  }
}
@media screen and (max-width: 959px) {
  #sec_change .img {
    text-align: center;
    margin-top: 4rem;
  }
  #sec_change .img img {
    width: 15vw;
  }
}
@media screen and (max-width: 767px) {
  #sec_change .img img {
    width: 25vw;
  }
}

#sec_benefits .sec_01 {
  background: url("../img/benefits_bg.jpg") no-repeat center/cover;
  padding: 6rem 0 10rem;
  position: relative;
}
#sec_benefits .sec_01::before {
  content: "";
  background: url("../img/benefits_line.png") no-repeat center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3rem;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_01 {
    background: #000;
  }
}
#sec_benefits .sec_01 .wrap {
  max-width: 90rem;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_01 .list_wrap {
    position: relative;
    padding-bottom: 10rem;
  }
}
#sec_benefits .sec_01 .list_wrap .btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  background: #044624;
  color: #fff;
  width: 90%;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
  padding: 0.7em;
}
#sec_benefits .sec_01 .list_wrap .btn .ico {
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
  background: #fff;
  width: 1em;
  height: 1em;
  border-radius: 100%;
}
#sec_benefits .sec_01 .list_wrap .btn .ico::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -70%;
  rotate: 45deg;
  width: 40%;
  height: 40%;
  border-right: 2px solid #044624;
  border-bottom: 2px solid #044624;
}
#sec_benefits .sec_01 .list_wrap .btn.is-open .ico {
  scale: 1 -1;
}
#sec_benefits .sec_01 .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  #sec_benefits .sec_01 .list {
    display: grid !important;
  }
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_01 .list {
    grid-template-columns: 1fr;
    padding: 0 3vw;
  }
}
#sec_benefits .sec_01 .list:nth-child(n+2) {
  margin-top: 2rem;
}
#sec_benefits .sec_01 .list .item {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 2rem;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_01 .list .item {
    border-radius: 0;
  }
}
#sec_benefits .sec_01 .list .item .img {
  height: 14.8rem;
}
#sec_benefits .sec_01 .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_01 .list .item .img {
    margin: -2rem -2rem 1rem;
    height: 22rem;
  }
}
#sec_benefits .sec_01 .list .item .ttl {
  color: #0d605b;
  border-left: 5px solid #0d605b;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 800;
  padding-left: 0.5em;
  margin-top: 0.3em;
}
#sec_benefits .sec_01 .list .item .txt {
  flex: 1 1 auto;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 800;
  margin-top: 0.3em;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_01 .list .item .txt {
    font-size: 1.6rem;
  }
}
#sec_benefits .sec_01 .list .item .cate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_01 .list .item .cate {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3px;
  }
}
#sec_benefits .sec_01 .list .item .cate span {
  display: block;
  background: url("../img/grade_popup_bg.png") no-repeat center/cover;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: center;
}
#sec_benefits .sec_01 .list .item .cate span._02 {
  background: #0c703e;
}
#sec_benefits .sec_01 .list .item .cate span._03 {
  background: #ff00ae;
}
#sec_benefits .sec_01 .list .item .cate span._04 {
  background: #00c3ff;
}
#sec_benefits .sec_01 .list .item .cate span._hide {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_01 .list .item .cate span {
    font-size: 1.2rem;
  }
}
#sec_benefits .sec_02 {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_02 {
    padding: 6rem 0;
  }
}
#sec_benefits .sec_02 .wrap {
  max-width: 110rem;
}
#sec_benefits .sec_02 .ttl_sec {
  position: relative;
}
#sec_benefits .sec_02 .ttl_sec::before, #sec_benefits .sec_02 .ttl_sec::after {
  content: "";
  background: url("../img/benefits_ttl.png") no-repeat center/contain;
  width: 15em;
  height: 10em;
  position: absolute;
  left: -3rem;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_02 .ttl_sec::before, #sec_benefits .sec_02 .ttl_sec::after {
    display: none;
  }
}
#sec_benefits .sec_02 .ttl_sec::after {
  left: auto;
  right: -3rem;
  scale: -1 1;
}
#sec_benefits .sec_02 .table_wrap {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_02 .table_wrap {
    margin-top: 3rem;
  }
}
#sec_benefits .sec_02 .table_wrap .table {
  width: 100%;
  border-collapse: collapse;
}
#sec_benefits .sec_02 .table_wrap .table tr:nth-child(even) th:nth-last-child(5) {
  background: #ddd;
}
#sec_benefits .sec_02 .table_wrap .table th, #sec_benefits .sec_02 .table_wrap .table td {
  border: 1px solid #fff;
  background: #eee;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  padding: 0.5em;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_02 .table_wrap .table th, #sec_benefits .sec_02 .table_wrap .table td {
    font-size: 1rem;
  }
}
#sec_benefits .sec_02 .table_wrap .table th._01, #sec_benefits .sec_02 .table_wrap .table td._01 {
  background: #044624;
  color: #fff;
}
#sec_benefits .sec_02 .table_wrap .table th._02, #sec_benefits .sec_02 .table_wrap .table td._02 {
  background: #008f38;
  color: #fff;
}
#sec_benefits .sec_02 .table_wrap .table th._03, #sec_benefits .sec_02 .table_wrap .table td._03 {
  background: #ff00ae;
  color: #fff;
}
#sec_benefits .sec_02 .table_wrap .table th._04, #sec_benefits .sec_02 .table_wrap .table td._04 {
  background: #00c3ff;
  color: #fff;
}
#sec_benefits .sec_02 .table_wrap .table th._red, #sec_benefits .sec_02 .table_wrap .table td._red {
  background: #d10000;
  color: #fff;
}
#sec_benefits .sec_02 .table_wrap .table th._yellow, #sec_benefits .sec_02 .table_wrap .table td._yellow {
  background: #edf700;
  color: #000;
}
#sec_benefits .sec_02 .table_wrap .table th._blue, #sec_benefits .sec_02 .table_wrap .table td._blue {
  background: #003feb;
  color: #fff;
}
#sec_benefits .sec_02 .table_wrap .table th._black, #sec_benefits .sec_02 .table_wrap .table td._black {
  background: #000;
  color: #fff;
}
#sec_benefits .sec_02 .table_wrap .table th {
  text-align: left;
}
#sec_benefits .sec_02 .table_wrap .table th._tate {
  text-align: center;
}
#sec_benefits .sec_02 .table_wrap .table th._tate span {
  display: inline-block;
  width: 1.8em;
  line-height: 1.2;
  text-align: center;
}
#sec_benefits .sec_02 .table_wrap .table thead th {
  background: #ddd;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
}
#sec_benefits .sec_02 .table_wrap .table thead th small {
  font-size: 70%;
}
@media screen and (max-width: 959px) {
  #sec_benefits .sec_02 .table_wrap .table thead th {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_02 .table_wrap .table thead th {
    font-size: 1rem;
    white-space: nowrap;
  }
  #sec_benefits .sec_02 .table_wrap .table thead th small {
    font-size: 50%;
  }
}
#sec_benefits .sec_02 .attention {
  margin-top: 3rem;
  border: 1px solid #044624;
  color: #044624;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_02 .attention {
    padding: 3vw;
  }
}
#sec_benefits .sec_02 .attention .kome .item {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_02 .attention .kome .item {
    font-size: 1.4rem;
  }
}
#sec_benefits .sec_03 {
  background: url("../img/benefits_footer.png") no-repeat center bottom/47rem auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_03 {
    background-size: 60vw auto;
    padding-bottom: 6rem;
  }
}
#sec_benefits .sec_03::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  rotate: -15deg;
  height: 10rem;
  width: 150vw;
  background: #000;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_03::before {
    height: 5rem;
  }
}
#sec_benefits .sec_03 .ttl {
  text-align: center;
}
#sec_benefits .sec_03 .ttl span {
  background: #044624;
  color: #fff;
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.2em 1.5em;
  width: 58rem;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_03 .ttl span {
    font-size: 2rem;
  }
}
#sec_benefits .sec_03 .img {
  max-width: 118rem;
  margin: 3rem auto 0;
}
#sec_benefits .sec_03 .img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #sec_benefits .sec_03 .img {
    margin-top: 4rem;
  }
}
#sec_benefits .sec_04 {
  margin: 8rem 0 5rem;
}
#sec_benefits .sec_04 img {
  width: 100%;
}

#sec_faq {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  #sec_faq {
    padding-top: 5rem;
  }
}
#sec_faq .bg {
  background: #e6e6e6 !important;
  padding-bottom: 8rem;
}
#sec_faq .wrap {
  max-width: 99rem;
}
#sec_faq .ttl_sec {
  translate: 0 -3rem;
}
@media screen and (max-width: 767px) {
  #sec_faq .ttl_sec {
    translate: 0 -2.5rem;
  }
}
#sec_faq .img {
  text-align: center;
}
#sec_faq .img img {
  width: 18rem;
  translate: 10% 0;
}
@media screen and (max-width: 767px) {
  #sec_faq .img img {
    width: 14rem;
  }
}
#sec_faq .faq {
  margin: 4rem 0;
  border-top: 1px solid #044624;
}
#sec_faq .faq .item {
  border-bottom: 1px solid #044624;
}
#sec_faq .faq .item .ttl, #sec_faq .faq .item .txt {
  color: #044624;
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: 800;
  padding: 2rem 8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sec_faq .faq .item .ttl, #sec_faq .faq .item .txt {
    font-size: 1.6rem;
    padding: 2rem 5rem;
  }
}
#sec_faq .faq .item .ttl::before, #sec_faq .faq .item .txt::before {
  content: "Q";
  background: #0c703e;
  color: #fff;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  left: 3rem;
  top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #sec_faq .faq .item .ttl::before, #sec_faq .faq .item .txt::before {
    font-size: 2.4rem;
    left: 1rem;
  }
}
#sec_faq .faq .item .ttl {
  padding-right: 8rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #sec_faq .faq .item .ttl {
    padding-right: 5rem;
  }
}
#sec_faq .faq .item .ttl .ico {
  position: absolute;
  right: 3rem;
  top: 2rem;
  height: 3rem;
  width: 3rem;
}
#sec_faq .faq .item .ttl .ico::before, #sec_faq .faq .item .ttl .ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 4px;
  background: #0c703e;
}
@media screen and (max-width: 767px) {
  #sec_faq .faq .item .ttl .ico::before, #sec_faq .faq .item .ttl .ico::after {
    height: 3px;
  }
}
#sec_faq .faq .item .ttl .ico::after {
  height: 100%;
  width: 4px;
  transition: rotate 0.3s ease;
}
@media screen and (max-width: 767px) {
  #sec_faq .faq .item .ttl .ico::after {
    width: 3px;
  }
}
@media screen and (max-width: 767px) {
  #sec_faq .faq .item .ttl .ico {
    right: 1rem;
    width: 2.2rem;
    height: 2.2rem;
  }
}
#sec_faq .faq .item .ttl.is-open .ico::after {
  rotate: 90deg;
}
#sec_faq .faq .item .txt {
  padding-top: 0;
  padding-right: 0;
}
#sec_faq .faq .item .txt::before {
  content: "A";
  background: #ff00ae;
  top: 0;
}
#sec_faq .btn {
  text-align: center;
  margin: 6rem 0;
}
@media screen and (max-width: 767px) {
  #sec_faq .btn {
    margin-bottom: 4rem;
  }
}
#sec_faq .btn a {
  background: #044624;
  color: #fff;
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.2em 1.5em;
  width: 39rem;
  max-width: 90%;
  position: relative;
}
#sec_faq .btn a::before {
  content: "▶";
  position: absolute;
  right: 2em;
  top: 50%;
  translate: 0 -50%;
  font-size: 50%;
}
@media screen and (max-width: 767px) {
  #sec_faq .btn a {
    font-size: 2rem;
    width: 70vw;
    padding: 0.5em;
  }
}
#sec_faq .attention {
  background: #fff;
  padding: 2rem;
}
#sec_faq .attention .txt {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #sec_faq .attention .txt {
    font-size: 1.2rem;
  }
}

/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .tb-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden; /* 隙間対応 */
  font-size: 0.1em; /* 隙間対応 */
  line-height: 0; /* 隙間対応 */
}
