@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
:root {
  --txt--black: #424242;
  --blue: #4AADD8;
  --title-bg-gray: #8699B3;
}

body {
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #4D4D4D;
  background: #fff;
  font-weight: 400;
  font-size: 3.8vw;
  font-feature-settings: "palt";
  line-height: 1.8em;
  letter-spacing: 0em;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    width: 100%;
    position: relative;
  }
}

img {
  max-width: 100%;
}

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

.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .inline-block {
    display: inline-block;
  }
}

header {
  position: relative;
  z-index: 10;
}
header.active div.header-inner {
  opacity: 1;
  pointer-events: fill;
  transform: scale(1);
}
@media screen and (min-width: 768px) {
  header.active div.header-inner {
    transform: scale(1) translate(0);
  }
}
header.active button.c-burger span.c-burger__line--top {
  transform: translate(-50%, 0) rotate(45deg);
  top: 50%;
}
header.active button.c-burger span.c-burger__line--middle {
  opacity: 0;
}
header.active button.c-burger span.c-burger__line--bottom {
  transform: translate(-50%, 0) rotate(-45deg);
  top: auto;
  bottom: auto;
}
header a.hd-logo {
  display: block;
  position: fixed;
  width: 24%;
  top: 3vw;
  left: 5vw;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  header a.hd-logo {
    width: 120px;
    top: 20px;
    left: 28px;
  }
}
@media screen and (min-width: 1280px) {
  header a.hd-logo {
    width: 178px;
  }
}
header div.header-inner {
  width: 100%;
  background: #EBFFFC;
  position: fixed;
  padding: 20% 0 10%;
  transition: all 0.5s;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.94);
}
@media screen and (min-width: 768px) {
  header div.header-inner {
    padding: 60px 0;
    z-index: 3;
    transition: all 0.4s;
    transform: translate(0, -100%) scale(1);
  }
}
header div.header-inner nav.g-nav {
  width: 64.2%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  header div.header-inner nav.g-nav {
    width: 85%;
    margin: 0 0 0 4%;
    max-width: 1100px;
  }
}
@media screen and (min-width: 1280px) {
  header div.header-inner nav.g-nav {
    margin: auto;
    width: 77%;
  }
}
header div.header-inner nav.g-nav ul {
  width: 100%;
}
@media screen and (min-width: 768px) {
  header div.header-inner nav.g-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
header div.header-inner nav.g-nav ul li {
  margin-bottom: 7%;
}
@media screen and (min-width: 768px) {
  header div.header-inner nav.g-nav ul li {
    margin: 0;
    width: 18%;
  }
}
header div.header-inner nav.g-nav ul li a {
  display: flex; /* 中央寄せ */
  align-items: center;
  justify-content: center;
  min-height: 3em;
  line-height: 1.2em;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  background: #FCFFCA;
  color: var(--blue);
  font-weight: 500;
  border: solid 2px var(--blue);
  border-radius: 0.4em;
  box-shadow: #B6E5FF 0px 4px 0;
  min-height: 4em;
  position: relative;
}
@media screen and (min-width: 768px) {
  header div.header-inner nav.g-nav ul li a {
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0;
    font-size: 1.3vw;
    min-height: 5.4em;
    line-height: 1.2em;
    transition: all 0.3s;
  }
  header div.header-inner nav.g-nav ul li a:hover {
    transform: translate(0, 4px);
    box-shadow: none;
    background: #FFA866;
    border: solid 2px #ff7f1d;
    color: #fff;
  }
  header div.header-inner nav.g-nav ul li a:hover svg path {
    stroke: #fff;
  }
}
@media screen and (min-width: 1000px) {
  header div.header-inner nav.g-nav ul li a {
    font-size: 14px;
    min-height: 4.6em;
  }
}
@media screen and (min-width: 1280px) {
  header div.header-inner nav.g-nav ul li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  header div.header-inner nav.g-nav ul li a.br span.txt {
    margin-bottom: 0.6em;
  }
}
header div.header-inner nav.g-nav ul li a span.arrow {
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  header div.header-inner nav.g-nav ul li a span.arrow {
    right: auto;
    left: 50%;
    transform: translate(-50%, 0) rotate(90deg);
    top: auto;
    bottom: 6px;
    width: 0.5em;
  }
}
header div.header-inner nav.g-nav ul li a span.arrow svg {
  display: block;
}

button.c-burger {
  position: fixed;
  right: 3vw;
  top: 3vw;
  background-color: var(--blue);
  width: 12vw;
  height: 12vw;
  border-radius: 50%;
  box-shadow: 0 0 14px 0 #4AADD8;
  z-index: 3;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  button.c-burger {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 43px 0 #4AADD8;
    transition: all 0.3s;
    top: 35px;
    right: 35px;
  }
  button.c-burger:hover {
    background: #FFA866;
    box-shadow: 0 0 15px 0 #FFA866;
    transform: scale(0.9);
  }
}
@media screen and (min-width: 1000px) {
  button.c-burger {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1280px) {
  button.c-burger {
    top: 50px;
    right: 50px;
  }
}
button.c-burger span.c-burger__line {
  display: block;
  width: 4vw;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  transform-origin: center center;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  button.c-burger span.c-burger__line {
    width: 18px;
  }
}
@media screen and (min-width: 1000px) {
  button.c-burger span.c-burger__line {
    width: 25px;
  }
}
button.c-burger span.c-burger__line--top {
  top: 35%;
}
button.c-burger span.c-burger__line--middle {
  top: 50%;
  transform: translate(-50%, -50%);
}
button.c-burger span.c-burger__line--bottom {
  bottom: 35%;
}

main {
  overflow: hidden;
}

div.hero-wrap {
  overflow: hidden;
}
div.hero-wrap div.hero-img {
  max-width: 1360px;
  margin: 0 auto;
}
div.hero-wrap div.hero-video {
  position: relative;
  width: 100%;
}
div.hero-wrap div.hero-video.smp-block {
  padding-top: 177.78%;
}
div.hero-wrap div.hero-video.pc-block {
  padding-top: 56.25%;
}
div.hero-wrap div.hero-video video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

section.sec00 {
  position: relative;
  z-index: 0;
  padding: 15% 0 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.sec00 {
    padding: 170px 0 0;
  }
}
section.sec00 div.sec00-box01 {
  position: relative;
}
section.sec00 div.sec00-box01 h1 {
  text-align: center;
  color: var(--blue);
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 1em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  section.sec00 div.sec00-box01 h1 {
    font-size: 34px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec00 div.sec00-box01 h1 {
    font-size: 38px;
  }
}
section.sec00 div.sec00-box01 p {
  text-align: center;
}
@media screen and (min-width: 768px) {
  section.sec00 div.sec00-box01 p {
    font-size: 18px;
    line-height: 2.2em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec00 div.sec00-box01 p {
    font-size: 20px;
  }
}
section.sec00 div.sec00-box01 div.sec00-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  transform: translate(-50%, 0);
  z-index: -1;
  transform-origin: left;
}
@media screen and (min-width: 768px) {
  section.sec00 div.sec00-box01 div.sec00-bg {
    max-width: 860px;
    top: -50px;
    transform: translate(-50%, 0);
  }
}
section.sec00 div.movie-box-wrap {
  width: 78%;
  margin: 0 auto;
  padding: 10% 0 0;
}
@media screen and (min-width: 768px) {
  section.sec00 div.movie-box-wrap {
    width: 80%;
    max-width: 721px;
    padding: 100px 0 0;
  }
}
section.sec00 div.movie-box-wrap h2 {
  text-align: center;
  background: #AAAAAA;
  margin: 0 0 7%;
  color: #fff;
  border-radius: 50em;
  line-height: 1.4em;
  padding: 0.4em 0;
}
@media screen and (min-width: 768px) {
  section.sec00 div.movie-box-wrap h2 {
    font-size: 20px;
  }
}
section.sec00 div.movie-box-wrap p {
  text-align: center;
  margin-top: 0.4em;
}
@media screen and (min-width: 768px) {
  section.sec00 div.movie-box-wrap p {
    font-size: 16px;
  }
}
section.sec00 div.movie-box-wrap div.movie-inner {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  section.sec00 div.movie-box-wrap div.movie-inner:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
section.sec00 div.movie-box-wrap div.movie-inner::after {
  content: "";
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  background-image: url("../myimg/play-btn.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  section.sec00 div.movie-box-wrap div.movie-inner::after {
    width: 83px;
    height: 83px;
    transition: all 0.3s;
  }
}
section.sec00 div.movie-box-wrap div.sec00--movie-box01 {
  margin-bottom: 10%;
}
@media screen and (min-width: 768px) {
  section.sec00 div.movie-box-wrap div.sec00--movie-box01 {
    margin-bottom: 40px;
  }
}
section.sec00 div.movie-box-wrap div.sec00--movie-box01 div.movie-inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec00 div.movie-box-wrap div.sec00--movie-box02-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec00 div.movie-box-wrap div.sec00--movie-box02 {
  margin-bottom: 10%;
}
@media screen and (min-width: 768px) {
  section.sec00 div.movie-box-wrap div.sec00--movie-box02 {
    width: 48%;
  }
}
section.sec00 div.movie-box-wrap div.sec00--movie-box02 div.movie-inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec00 div.movie-box-wrap div.sec00--movie-box02 div.movie-inner::after {
    width: 39px;
    height: 39px;
  }
}

section.sec01 div.bg-blue-wrap {
  background-image: url(../myimg/sec01--bg_sp.png);
  background-size: 100% 100%;
  padding: 30% 0 20%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.bg-blue-wrap {
    background-image: url(../myimg/sec01--bg_pc.png);
    padding: 250px 0;
  }
}
section.sec01 div.bg-blue-wrap div.sec01-inner {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec01 div.bg-blue-wrap div.sec01-inner {
    max-width: 796px;
  }
}
section.sec01 div.bg-blue-wrap h2 {
  text-align: center;
  font-size: 1.34em;
  letter-spacing: 0.2em;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 2em;
  color: var(--txt--black);
  position: relative;
  margin-bottom: 1.6em;
}
@media screen and (min-width: 768px) {
  section.sec01 div.bg-blue-wrap h2 {
    font-size: 28px;
    width: 500px;
    margin: auto;
    line-height: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.bg-blue-wrap h2 {
    font-size: 38px;
    width: 577px;
  }
}
section.sec01 div.bg-blue-wrap h2::after, section.sec01 div.bg-blue-wrap h2::before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 1.4em;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
section.sec01 div.bg-blue-wrap h2::after {
  background-image: url("../myimg/kakko--blue01.png");
  left: 2%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.bg-blue-wrap h2::after {
    left: 0;
  }
}
section.sec01 div.bg-blue-wrap h2::before {
  background-image: url("../myimg/kakko--blue02.png");
  right: 2%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.bg-blue-wrap h2::before {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.bg-blue-wrap h2 {
    margin-bottom: 55px;
  }
}
section.sec01 div.bg-blue-wrap h2::after {
  background-image: url("../myimg/kakko--white01.png");
}
section.sec01 div.bg-blue-wrap h2::before {
  background-image: url("../myimg/kakko--white02.png");
}
section.sec01 div.bg-blue-wrap h3 {
  text-align: center;
  color: var(--blue);
  font-size: 1.4em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  section.sec01 div.bg-blue-wrap h3 {
    font-size: 38px;
    margin-bottom: 0.6em;
  }
}
section.sec01 div.bg-blue-wrap p.sec01--txt01 {
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 1em;
  line-height: 2em;
  color: var(--txt--black);
  font-size: 0.96em;
}
@media screen and (min-width: 768px) {
  section.sec01 div.bg-blue-wrap p.sec01--txt01 {
    font-size: 20px;
    margin-bottom: 2em;
  }
}
section.sec01 div.sec01-box01 p.en-copy {
  width: 80%;
  margin: 0 auto 5%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box01 p.en-copy {
    max-width: 655px;
    width: 90%;
  }
}
section.sec01 div.sec01--movie-box {
  margin-bottom: 20%;
}
section.sec01 div.sec01--movie-box div.movie-inner {
  position: relative;
  cursor: pointer;
  /*width: 100%;
  padding-top: 56.25%;
  border-radius: 8px;
  box-sizing: border-box;
  overflow: hidden;
  iframe {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
  }*/
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01--movie-box div.movie-inner:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
section.sec01 div.sec01--movie-box div.movie-inner::after {
  content: "";
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  background-image: url("../myimg/play-btn.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01--movie-box div.movie-inner::after {
    width: 76px;
    height: 76px;
    transition: all 0.3s;
  }
}
section.sec01 div.sec01-box02 div.wave-mark {
  width: 30%;
  margin: 0 auto 5%;
  mix-blend-mode: hard-light;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 div.wave-mark {
    width: 183px;
  }
}
section.sec01 div.sec01-box02 div.sec01--icon01 {
  width: 45%;
  margin: 0 auto 8%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 div.sec01--icon01 {
    width: 237px;
    margin: 40px auto;
  }
}
section.sec01 div.sec01-box02 p.sec01--txt02 {
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 1em;
  line-height: 2em;
  color: var(--txt--black);
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 p.sec01--txt02 {
    font-size: 16px;
  }
}
section.sec01 div.sec01-box02 ul {
  width: 90%;
  margin: auto;
  margin-top: 10%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 ul {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.sec01-box02 ul {
    width: 100%;
  }
}
section.sec01 div.sec01-box02 ul li {
  margin-bottom: 20%;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 ul li {
    width: 43.2%;
    z-index: 0;
    margin-bottom: 10%;
  }
  section.sec01 div.sec01-box02 ul li:hover .btn {
    background: #FFA866;
  }
}
section.sec01 div.sec01-box02 ul li div.video-box {
  border-radius: 1em;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: 5%;
}
section.sec01 div.sec01-box02 ul li div.video-box div.video-wrap {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}
section.sec01 div.sec01-box02 ul li div.video-box div.video-wrap video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
section.sec01 div.sec01-box02 ul li div.video-box span {
  display: block;
  background: #454545;
  color: #fff;
  text-align: center;
  font-size: 1.3em;
  letter-spacing: 0;
  padding: 0.2em 0;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 ul li div.video-box span {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.sec01-box02 ul li div.video-box span {
    font-size: 19px;
  }
}
section.sec01 div.sec01-box02 ul li div.video-box span::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: -1px;
  left: 0;
  background: #454545;
  z-index: -1;
}
section.sec01 div.sec01-box02 ul li figure {
  border-radius: 1em;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: 5%;
}
section.sec01 div.sec01-box02 ul li figure figcaption {
  display: block;
  background: #454545;
  color: #fff;
  text-align: center;
  font-size: 1.3em;
  letter-spacing: 0;
  padding: 0.2em 0;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 ul li figure figcaption {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.sec01-box02 ul li figure figcaption {
    font-size: 19px;
  }
}
section.sec01 div.sec01-box02 ul li div.txt-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5%;
}
section.sec01 div.sec01-box02 ul li div.txt-box span.nuuber {
  display: block;
  width: 8%;
  margin-top: 1%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 ul li div.txt-box span.nuuber {
    margin: 0;
    position: absolute;
    top: -30px;
    left: -70px;
    width: 70px;
    z-index: -1;
  }
}
section.sec01 div.sec01-box02 ul li div.txt-box p {
  width: 85%;
  font-size: 1.2em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 ul li div.txt-box p {
    width: 100%;
    text-align: center;
    font-size: 1.9vw;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.sec01-box02 ul li div.txt-box p {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 ul li div.txt-box p.v01 {
    height: calc(5vw + 27px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.sec01-box02 ul li div.txt-box p.v01 {
    height: 60px;
  }
}
section.sec01 div.sec01-box02 ul li div.txt-box p span.small {
  display: block;
  line-height: 1.2em;
  font-size: 0.72em;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 ul li div.txt-box p span.small {
    font-size: 11px;
  }
}
section.sec01 div.sec01-box02 ul li .btn {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  background: var(--blue);
  font-size: 1.2em;
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 50em;
  font-weight: 500;
  padding: 0.4em 0;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 ul li .btn {
    font-size: 20px;
    transition: all 0.3s;
  }
}
section.sec01 div.sec01-box02 span.arrow {
  display: block;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 span.arrow {
    width: 80%;
    margin: auto;
  }
}
section.sec01 div.sec01-box02 p.border-txt {
  text-align: center;
  font-size: 1.4em;
  line-height: 1.8em;
  margin: 10% 0;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 p.border-txt {
    font-size: 24px;
    margin: 30px 0 50px;
  }
}
section.sec01 div.sec01-box02 p.border-txt span {
  position: relative;
  z-index: 0;
}
section.sec01 div.sec01-box02 p.border-txt span::after {
  content: "";
  display: block;
  width: 100%;
  height: 30%;
  background: #FFFC38;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}
section.sec01 div.sec01-box02 .line {
  width: 90%;
  margin: auto;
  height: 0.4em;
  background-image: url(../myimg/line.png);
  background-repeat: repeat-x;
  background-size: 50%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 .line {
    width: 100%;
    background-size: 284px;
  }
}
section.sec01 div.sec01-box02 h4 {
  text-align: center;
  font-size: 1.2em;
  font-weight: 500;
  margin: 10% 0 5%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 h4 {
    font-size: 20px;
    margin: 50px 0 20px;
  }
}
section.sec01 div.sec01-box02 p.sec01--txt03 {
  text-align: center;
  letter-spacing: 0;
  line-height: 2em;
  font-size: 0.98em;
}
@media screen and (min-width: 768px) {
  section.sec01 div.sec01-box02 p.sec01--txt03 {
    font-size: 16px;
  }
}

div.youtube-wrap {
  padding-top: 56.25%;
  position: relative;
}
div.youtube-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

div.modaal-container {
  border-radius: 1em;
  box-shadow: rgba(0, 0, 0, 0.1254901961) 10px 10px 30px;
}
@media screen and (min-width: 768px) {
  div.modaal-container {
    border-radius: 2em;
    max-width: 716px;
  }
}
div.modaal-container .modaal-close {
  position: absolute;
  background: #B1D4E3;
  right: 0;
  top: 0;
  transform: translate(30%, -30%);
  width: 10vw;
  height: 10vw;
}
@media screen and (min-width: 768px) {
  div.modaal-container .modaal-close {
    width: 46px;
    height: 46px;
    transform: translate(0);
    right: 30px;
    top: 30px;
  }
}
@media screen and (min-width: 768px) {
  div.modaal-container .modaal-close:hover {
    background: #FFA866;
    transform: scale(0.9);
  }
}
div.modaal-container .modaal-close:hover::after, div.modaal-container .modaal-close:hover::before {
  background: #fff;
}
div.modaal-container .modaal-close.v02 {
  transform: translate(0, -130%);
  background: none;
}
@media screen and (min-width: 768px) {
  div.modaal-container .modaal-close.v02 {
    top: 0;
    right: 0;
  }
}
div.modaal-container .modaal-close::after, div.modaal-container .modaal-close::before {
  border-radius: 0;
  width: 3px;
  height: 5vw;
  top: 50%;
  left: 50%;
}
@media screen and (min-width: 768px) {
  div.modaal-container .modaal-close::after, div.modaal-container .modaal-close::before {
    height: 22px;
  }
}
div.modaal-container .modaal-close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
div.modaal-container .modaal-close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
div.modaal-container div.modaal-content-container {
  padding: 0;
}

div.modal-area {
  padding: 7%;
}
@media screen and (min-width: 768px) {
  div.modal-area {
    padding: 8% 14%;
  }
}
div.modal-area h3 {
  padding: 3% 4%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  border-radius: 50em;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  div.modal-area h3 {
    padding: 10px;
  }
}
div.modal-area h3 span {
  display: block;
}
div.modal-area h3 span.txt01 {
  width: 15%;
}
@media screen and (min-width: 768px) {
  div.modal-area h3 span.txt01 {
    width: 53px;
  }
}
div.modal-area h3 span.txt02 {
  width: 80%;
  font-size: 1.2em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  div.modal-area h3 span.txt02 {
    font-size: 26px;
    width: calc(100% - 70px);
  }
}
div.modal-area div.modal-video {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 1.4em;
}
@media screen and (min-width: 768px) {
  div.modal-area div.modal-video {
    border-radius: 2em;
  }
}
div.modal-area div.modal-video video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
div.modal-area p.modal-txt01 {
  text-align: center;
  font-size: 1.2em;
  letter-spacing: 0;
  margin: 1em 0;
}
@media screen and (min-width: 768px) {
  div.modal-area p.modal-txt01 {
    font-size: 20px;
  }
}
div.modal-area p.modal-txt02 {
  text-align: justify;
  word-break: break-all;
  margin: 1.6em 0;
  font-size: 1.1em;
  line-height: 2em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  div.modal-area p.modal-txt02 {
    font-size: 16px;
  }
}
div.modal-area p.modal-txt02 span {
  display: block;
  font-size: 0.82em;
  line-height: 1.4em;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  div.modal-area p.modal-txt02 span {
    font-size: 11px;
  }
}
div.modal-area p.modal-txt02 span.ast {
  display: inline;
}
div.modal-area dl {
  background: #F6F6EB;
  padding: 5%;
  border-radius: 0.6em;
}
div.modal-area dl dt {
  text-align: center;
  color: var(--blue);
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.6em;
  letter-spacing: 0;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  div.modal-area dl dt {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  div.modal-area dl dd {
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
div.modal-area dl dd ul li {
  text-indent: -1.08em;
  padding-left: 2em;
  font-size: 1.14em;
  margin-bottom: 0.4em;
}
@media screen and (min-width: 768px) {
  div.modal-area dl dd ul li {
    margin-bottom: 0.4em;
    font-size: 16px;
    line-height: 1.4em;
  }
}
div.modal-area dl dd ul li:last-child {
  margin-bottom: 0;
}
div.modal-area dl dd ul li span.dots {
  color: var(--blue);
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  div.modal-area dl dd ul li span.dots {
    vertical-align: 0.1em;
  }
}
div.modal-area dl dd ul li span.small {
  font-size: 0.8em;
}
div.modal-area p.modal-txt03 {
  text-align: justify;
  word-break: break-all;
  font-size: 0.9em;
  line-height: 1.4em;
  margin-top: 1em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  div.modal-area p.modal-txt03 {
    font-size: 11px;
    margin-top: 2em;
  }
}

section.sec02 {
  padding: 15% 0;
}
@media screen and (min-width: 768px) {
  section.sec02 {
    padding: 100px 0;
  }
}
section.sec02 div.sec02-inner {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec02 div.sec02-inner {
    max-width: 942px;
  }
}
section.sec02 h2 {
  text-align: center;
  font-size: 1.34em;
  letter-spacing: 0.2em;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 2em;
  color: var(--txt--black);
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec02 h2 {
    font-size: 28px;
    width: 500px;
    margin: auto;
    line-height: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 h2 {
    font-size: 38px;
    width: 577px;
  }
}
section.sec02 h2::after, section.sec02 h2::before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 1.4em;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
section.sec02 h2::after {
  background-image: url("../myimg/kakko--blue01.png");
  left: 2%;
}
@media screen and (min-width: 768px) {
  section.sec02 h2::after {
    left: 0;
  }
}
section.sec02 h2::before {
  background-image: url("../myimg/kakko--blue02.png");
  right: 2%;
}
@media screen and (min-width: 768px) {
  section.sec02 h2::before {
    right: 0;
  }
}
section.sec02 p.sec02-txt01 {
  font-size: 0.96em;
  text-align: center;
  padding: 2em 0;
}
@media screen and (min-width: 768px) {
  section.sec02 p.sec02-txt01 {
    font-size: 16px;
    padding: 60px 0;
    line-height: 2.4em;
  }
}
section.sec02 div.sec02-box {
  background: #DFEEF1;
  border-radius: 1em;
  padding: 10% 5%;
  box-shadow: rgba(88, 193, 222, 0.1568627451) 10px 20px 15px;
  margin-bottom: 20%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.sec02-box {
    padding: 50px 7%;
    margin-bottom: 85px;
  }
}
section.sec02 div.sec02-box:last-child {
  margin-bottom: 0;
}
section.sec02 div.sec02-box p.sec02-box-txt01 {
  text-align: center;
  color: var(--txt--black);
  margin-bottom: 0.6em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  section.sec02 div.sec02-box p.sec02-box-txt01 {
    font-size: 21px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.sec02-box p.sec02-box-txt01 {
    font-size: 24px;
  }
}
section.sec02 div.sec02-box p.sec02-box-txt02 {
  text-align: center;
  color: #C22E2E;
  font-weight: 900;
  font-size: 1.54em;
  line-height: 1.4em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  section.sec02 div.sec02-box p.sec02-box-txt02 {
    font-size: 2.8vw;
    letter-spacing: 0;
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.sec02-box p.sec02-box-txt02 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec02 div.sec02-box p.sec02-box-txt02 {
    font-size: 30px;
  }
}
section.sec02 div.sec02-box p.sec02-box-txt02 span.line {
  position: relative;
  z-index: 0;
}
section.sec02 div.sec02-box p.sec02-box-txt02 span.line::after {
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
section.sec02 div.sec02-box p.sec02-box-txt02 span.big {
  font-size: 1.2em;
}
section.sec02 div.sec02-box p.sec02-box-txt03 {
  text-align: center;
  font-size: 0.84em;
  letter-spacing: 0.04em;
  line-height: 1.6em;
}
@media screen and (min-width: 768px) {
  section.sec02 div.sec02-box p.sec02-box-txt03 {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.sec02-box p.sec02-box-txt03 {
    font-size: 20px;
  }
}
section.sec02 div.sec02-box h3 {
  text-align: center;
  background: #8699B3;
  font-size: 1.2em;
  color: #fff;
  font-weight: 500;
  border-radius: 1.2em;
  padding: 0.4em 0;
  margin-bottom: 5%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.sec02-box h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.sec02-box h3 {
    font-size: 24px;
  }
}
section.sec02 div.sec02-box h3 span {
  font-size: 0.5em;
  display: block;
  line-height: 1.4em;
}
@media screen and (min-width: 768px) {
  section.sec02 div.sec02-box h3 span {
    display: inline-block;
    font-size: 11px;
    vertical-align: 0.4em;
  }
}
section.sec02 div.sec02-box p.note {
  font-size: 0.72em;
  letter-spacing: 0;
  line-height: 1.6em;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  section.sec02 div.sec02-box p.note {
    font-size: 11px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 768px) {
  section.sec02 .sec02-box01-img {
    width: 87%;
    margin: 20px auto 0;
  }
}
section.sec02 div.figure-wrap.v01 {
  width: 106%;
}
section.sec02 div.figure-wrap.v02 {
  padding: 10% 0 0;
}
@media screen and (min-width: 768px) {
  section.sec02 div.figure-wrap.v02 {
    padding: 40px 0 0;
  }
}
@media screen and (min-width: 768px) {
  section.sec02 div.figure-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
  }
}
section.sec02 div.figure-wrap figure {
  margin-bottom: 6%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.figure-wrap figure {
    width: 49%;
  }
}
section.sec02 button.more-btn {
  background: #fff;
  border-radius: 50em;
  padding: 0.5em 1em 0.4em 1em;
  display: block;
  width: 100%;
  position: relative;
  font-size: 1.12em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  section.sec02 button.more-btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 button.more-btn {
    font-size: 18px;
    transition: all 0.3s;
  }
  section.sec02 button.more-btn:hover {
    background: #FFA866;
  }
  section.sec02 button.more-btn:hover span.txt {
    color: #fff;
  }
  section.sec02 button.more-btn:hover path {
    stroke: #fff;
  }
}
section.sec02 button.more-btn span.arrow {
  transition: all 0.4s;
  height: auto;
  display: block;
  transform-origin: center center;
  position: absolute;
  top: 51%;
  right: 5%;
  transform-origin: center center;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  section.sec02 button.more-btn span.arrow {
    right: 20px;
  }
}
section.sec02 button.more-btn span.arrow svg {
  display: block;
}
section.sec02 button.more-btn span.txt {
  color: var(--txt--black);
}
section.sec02 button.more-btn.active span.arrow {
  display: block;
  transform: translate(0, -50%) rotate(180deg);
}

section.sec03 {
  padding: 20% 0;
}
@media screen and (min-width: 768px) {
  section.sec03 {
    padding: 100px 0 170px;
  }
}
section.sec03 div.sec03-inner {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-inner {
    max-width: 942px;
  }
}
section.sec03 h2 {
  text-align: center;
  font-size: 1.34em;
  letter-spacing: 0.2em;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 2em;
  color: var(--txt--black);
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec03 h2 {
    font-size: 28px;
    width: 500px;
    margin: auto;
    line-height: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  section.sec03 h2 {
    font-size: 38px;
    width: 577px;
  }
}
section.sec03 h2::after, section.sec03 h2::before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 1.4em;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
section.sec03 h2::after {
  background-image: url("../myimg/kakko--blue01.png");
  left: 2%;
}
@media screen and (min-width: 768px) {
  section.sec03 h2::after {
    left: 0;
  }
}
section.sec03 h2::before {
  background-image: url("../myimg/kakko--blue02.png");
  right: 2%;
}
@media screen and (min-width: 768px) {
  section.sec03 h2::before {
    right: 0;
  }
}
section.sec03 p.sec03-txt01 {
  text-align: center;
  padding: 2em 0;
}
@media screen and (min-width: 768px) {
  section.sec03 p.sec03-txt01 {
    font-size: 16px;
    padding: 60px 0;
    line-height: 2.4em;
  }
}
section.sec03 div.sec03-box {
  background: #DFEEF1;
  border-radius: 1em;
  padding: 10% 5%;
  box-shadow: rgba(88, 193, 222, 0.1568627451) 10px 20px 15px;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-box {
    padding: 40px 7%;
  }
}
section.sec03 div.sec03-box h3 {
  text-align: center;
  background: #8699B3;
  font-size: 1.2em;
  color: #fff;
  font-weight: 500;
  border-radius: 1.2em;
  padding: 0.4em 0;
  margin-bottom: 8%;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-box h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec03 div.sec03-box h3 {
    font-size: 24px;
  }
}
section.sec03 div.sec03-box h3 span {
  font-size: 0.5em;
  display: block;
  margin-top: 0.4em;
  line-height: 1.4em;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-box h3 span {
    display: inline-block;
    margin: 0;
    font-size: 11px;
    vertical-align: 0.4em;
  }
}
section.sec03 div.sec03-box div.figure-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-box div.figure-wrap {
    width: 87%;
    margin: 20px auto 0;
  }
}
section.sec03 div.sec03-box div.figure-wrap div.box01 {
  position: absolute;
  bottom: 2%;
  left: 62%;
  width: 35%;
  height: 76%;
  background: #C22E2E;
  box-sizing: border-box;
  border: solid 5px #FFD8D8;
  box-shadow: rgba(194, 46, 46, 0.2235294118) 0 8px 11px;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-box div.figure-wrap div.box01 {
    width: 26%;
    bottom: 3%;
    left: 57%;
  }
}
section.sec03 div.sec03-box div.figure-wrap div.box01 span {
  position: absolute;
  display: block;
}
section.sec03 div.sec03-box div.figure-wrap div.box01 span.txt01 {
  width: 82%;
  bottom: 25%;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-box div.figure-wrap div.box01 span.txt01 {
    width: 56%;
    bottom: 16%;
  }
}
section.sec03 div.sec03-box div.figure-wrap div.box01 span.txt02 {
  width: 120%;
  top: 0;
  left: 50%;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-box div.figure-wrap div.box01 span.txt02 {
    width: 100%;
  }
}
section.sec03 div.sec03-box div.figure-wrap .arrow {
  position: absolute;
  display: block;
  width: 15%;
  left: 48%;
  top: 28%;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-box div.figure-wrap .arrow {
    width: 9%;
    left: 47%;
    top: 21%;
  }
}
section.sec03 div.sec03-box p.note {
  font-size: 0.72em;
  letter-spacing: 0;
  line-height: 1.6em;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-box p.note {
    font-size: 11px;
    text-align: center;
  }
}

section.sec04 {
  padding: 20% 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.sec04 {
    padding: 100px 0 145px;
  }
}
section.sec04 div.sec04-inner {
  width: 90%;
  margin: auto;
}
section.sec04 h2 {
  text-align: center;
  font-size: 1.34em;
  letter-spacing: 0.2em;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 2em;
  color: var(--txt--black);
  position: relative;
  margin-bottom: 15%;
}
@media screen and (min-width: 768px) {
  section.sec04 h2 {
    font-size: 28px;
    width: 500px;
    margin: auto;
    line-height: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  section.sec04 h2 {
    font-size: 38px;
    width: 577px;
  }
}
section.sec04 h2::after, section.sec04 h2::before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 1.4em;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
section.sec04 h2::after {
  background-image: url("../myimg/kakko--blue01.png");
  left: 2%;
}
@media screen and (min-width: 768px) {
  section.sec04 h2::after {
    left: 0;
  }
}
section.sec04 h2::before {
  background-image: url("../myimg/kakko--blue02.png");
  right: 2%;
}
@media screen and (min-width: 768px) {
  section.sec04 h2::before {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  section.sec04 h2 {
    margin-bottom: 75px;
  }
}
section.sec04 div.sec04-slide-wrap {
  padding-bottom: 20%;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec04 div.sec04-slide-wrap {
    padding-bottom: 100px;
  }
}
section.sec04 div.sec04-slide-wrap div.swiper-button-prev, section.sec04 div.sec04-slide-wrap div.swiper-button-next {
  bottom: 0.2em;
  top: auto;
  width: 2.6em;
  z-index: 2;
  transition: all 0.3s;
}
section.sec04 div.sec04-slide-wrap div.swiper-button-prev::after, section.sec04 div.sec04-slide-wrap div.swiper-button-next::after {
  content: none;
}
section.sec04 div.sec04-slide-wrap div.swiper-button-prev img, section.sec04 div.sec04-slide-wrap div.swiper-button-next img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  section.sec04 div.sec04-slide-wrap div.swiper-button-prev {
    left: 50%;
    transform: translate(-200px, 0);
  }
  section.sec04 div.sec04-slide-wrap div.swiper-button-prev:hover {
    transform: translate(-200px, 0) scale(1.2);
  }
}
@media screen and (min-width: 768px) {
  section.sec04 div.sec04-slide-wrap div.swiper-button-next {
    right: 50%;
    transform: translate(200px, 0);
  }
  section.sec04 div.sec04-slide-wrap div.swiper-button-next:hover {
    transform: translate(200px, 0) scale(1.2);
  }
}
section.sec04 div.sec04-slide-wrap div.swiper-pagination {
  z-index: 1;
}
section.sec04 div.sec04-slide-wrap div.swiper-pagination span.swiper-pagination-bullet {
  background: var(--blue);
  border: solid 0.2em #fff;
  opacity: 1;
}
section.sec04 div.sec04-slide-wrap div.swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  border: solid 0.2em var(--blue);
}
section.sec04 p.sec04-txt01 {
  text-align: center;
  font-weight: 500;
  font-size: 1.3em;
  padding: 15% 0 7%;
}
@media screen and (min-width: 768px) {
  section.sec04 p.sec04-txt01 {
    font-size: 26px;
    padding: 100px 0 1em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec04 p.sec04-txt01 {
    font-size: 30px;
  }
}
section.sec04 p.sec04-txt02 {
  text-align: center;
  font-size: 0.98em;
}
@media screen and (min-width: 768px) {
  section.sec04 p.sec04-txt02 {
    font-size: 16px;
    line-height: 2.4em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec04 p.sec04-txt02 {
    font-size: 18px;
  }
}
section.sec04 p.sec04-txt03 {
  text-align: center;
  font-size: 0.98em;
  font-weight: 600;
  margin-top: 1.4em;
}
@media screen and (min-width: 768px) {
  section.sec04 p.sec04-txt03 {
    font-size: 16px;
    line-height: 2.4em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec04 p.sec04-txt03 {
    font-size: 18px;
  }
}
section.sec04 a {
  display: block;
  background: var(--blue);
  color: #fff;
  position: relative;
  border-radius: 0.8em;
  padding: 1em 0;
  width: 90%;
  margin: 15% auto 0;
}
@media screen and (min-width: 768px) {
  section.sec04 a {
    width: 560px;
    margin: 87px auto 0;
    padding: 1.6em 0;
    font-size: 16px;
    transition: all 0.3s;
  }
  section.sec04 a:hover {
    background: #FFA866;
  }
}
@media screen and (min-width: 1000px) {
  section.sec04 a {
    width: 597px;
    font-size: 20px;
  }
}
section.sec04 a span {
  display: block;
}
section.sec04 a span.txt {
  text-align: center;
  font-weight: 600;
}
section.sec04 a span.arrow {
  position: absolute;
  width: 1em;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  section.sec04 a span.arrow {
    width: 10px;
  }
}
section.sec04 a span.arrow img {
  display: block;
}

footer {
  background: #F6F6EB;
}
footer div.ft-box01 {
  padding: 10% 0;
}
@media screen and (min-width: 768px) {
  footer div.ft-box01 {
    padding: 90px 0 40px;
  }
}
footer div.ft-box01 a.btn01 {
  display: block;
  background: #DDDCAC;
  color: var(--txt--black);
  position: relative;
  border-radius: 0.8em;
  padding: 1em 0;
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  footer div.ft-box01 a.btn01 {
    width: 560px;
    font-size: 16px;
    padding: 1.8em 0;
    transition: all 0.3s;
  }
  footer div.ft-box01 a.btn01:hover {
    background: #FFA866;
    color: #fff;
  }
}
@media screen and (min-width: 1000px) {
  footer div.ft-box01 a.btn01 {
    width: 597px;
    font-size: 18px;
  }
}
footer div.ft-box01 a.btn01 span {
  display: block;
}
footer div.ft-box01 a.btn01 span.txt {
  text-align: center;
  font-weight: 500;
}
footer div.ft-box01 a.btn01 span.txt span {
  display: inline-block;
  font-size: 1.4em;
}
footer div.ft-box01 a.btn01 span.arrow {
  position: absolute;
  width: 1em;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  footer div.ft-box01 a.btn01 span.arrow {
    width: 10px;
  }
}
footer div.ft-box01 a.btn01 span.arrow img {
  display: block;
}
footer div.ft-box02 {
  padding: 10% 0;
}
@media screen and (min-width: 768px) {
  footer div.ft-box02 {
    padding: 80px 0 40px;
    width: 90%;
    max-width: 1000px;
    margin: auto;
  }
}
footer div.ft-box02 a.btn02 {
  display: block;
  background: #DDDCAC;
  color: var(--txt--black);
  position: relative;
  border-radius: 0.8em;
  padding: 1em 0;
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  footer div.ft-box02 a.btn02 {
    width: 327px;
    font-size: 16px;
    letter-spacing: 0;
    transition: all 0.3s;
  }
  footer div.ft-box02 a.btn02:hover {
    background: #FFA866;
    color: #fff;
  }
}
@media screen and (min-width: 1000px) {
  footer div.ft-box02 a.btn02 {
    font-size: 18px;
  }
}
footer div.ft-box02 a.btn02 span {
  display: block;
}
footer div.ft-box02 a.btn02 span.txt {
  text-align: center;
  font-weight: 500;
}
footer div.ft-box02 a.btn02 span.arrow {
  position: absolute;
  width: 0.6em;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  footer div.ft-box02 a.btn02 span.arrow {
    width: 10px;
  }
}
footer div.ft-box02 a.btn02 span.arrow img {
  display: block;
}
footer div.ft-box02 ul {
  width: 63.6%;
  margin: 8% auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  footer div.ft-box02 ul {
    width: 49%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px auto 0;
  }
}
footer div.ft-box02 ul li {
  margin-bottom: 5%;
}
@media screen and (min-width: 768px) {
  footer div.ft-box02 ul li {
    width: 48%;
    margin: 0;
    overflow: hidden;
  }
  footer div.ft-box02 ul li:hover img {
    transform: scale(1.08);
  }
  footer div.ft-box02 ul li img {
    transition: all 0.3s;
  }
}
footer div.ft-box03 {
  padding: 10% 0 6%;
  border-top: solid 1px #E6E6E2;
}
@media screen and (min-width: 768px) {
  footer div.ft-box03 {
    padding: 40px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
  }
}
footer div.ft-box03 p {
  text-align: center;
  margin-bottom: 7%;
}
@media screen and (min-width: 768px) {
  footer div.ft-box03 p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1000px) {
  footer div.ft-box03 p {
    font-size: 18px;
  }
}
footer div.ft-box03 ul {
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 768px) {
  footer div.ft-box03 ul {
    width: 100%;
  }
}
footer div.ft-box03 ul li {
  width: 48%;
  margin-bottom: 4%;
}
@media screen and (min-width: 768px) {
  footer div.ft-box03 ul li {
    width: 24%;
    margin-bottom: 1.6%;
    overflow: hidden;
  }
  footer div.ft-box03 ul li:hover img {
    transform: scale(1.08);
  }
  footer div.ft-box03 ul li img {
    transition: all 0.3s;
  }
}
footer div.ft-box04 {
  text-align: center;
  border-top: solid 1px #fff;
  padding: 10% 0;
}
@media screen and (min-width: 768px) {
  footer div.ft-box04 {
    padding: 70px 0;
  }
}
footer div.ft-box04 a {
  display: block;
  color: var(--txt--black);
  line-height: 1.6em;
}
@media screen and (min-width: 768px) {
  footer div.ft-box04 a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  footer div.ft-box04 a {
    font-size: 18px;
  }
}
footer div.ft-box04 a span {
  text-decoration: underline;
}
footer div.ft-box04 a.logo {
  display: block;
  width: 90%;
  margin: 5% auto;
}
@media screen and (min-width: 768px) {
  footer div.ft-box04 a.logo {
    width: 455px;
    margin: 50px auto 10px;
  }
}
footer div.ft-box04 p {
  font-size: 0.8em;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  footer div.ft-box04 p {
    font-size: 11px;
  }
}

.iziModal {
  max-width: 800px !important;
  background: none !important;
  box-shadow: none !important;
}

.iziModal-content {
  position: relative;
  width: 100% !important;
  padding-top: 56.25% !important; /* 16:9 = 9 ÷ 16 = 0.5625 → 56.25% */
}

.iziModal-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}/*# sourceMappingURL=style.css.map */