@charset "UTF-8";

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

ul,
ol,
menu {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

textarea {
  resize: vertical;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 5px solid #293869;
}

.header>div {
  padding: 0 .5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 100%;
  height: 70px;
}

.header>div .header_logo {
  width: 60px;
  z-index: 1001;
}

.header>div .header_logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header>div .hamburger {
  display: none;
}

@media (max-width: 727px) {
  .header>div .hamburger {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
  }

  .header>div .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #293869;
    transition: all 0.3s ease;
  }

  .header>div .hamburger span:nth-child(1) {
    top: 0;
  }

  .header>div .hamburger span:nth-child(2) {
    top: 11px;
  }

  .header>div .hamburger span:nth-child(3) {
    bottom: 0;
  }

  .header>div .hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
  }

  .header>div .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .header>div .hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(45deg);
  }
}

@media (min-width: 727px) {
  .header>div .header_nav {
    width: 100%;
  }

  .header>div .header_nav ul {
    display: flex;
    align-items: center;
    width: fit-content;
    color: #293869;
    font-size: 16px;
    font-weight: bold;
    list-style: none;
    margin: 0 0 0 auto;
  }

  .header>div .header_nav ul li {
    border-left: 1px solid #293869;
    transition: background 0.3s, color 0.3s;
  }

  .header>div .header_nav ul li a {
    display: block;
    padding: 1em;
    color: inherit;
    text-decoration: none;
  }

  .header>div .header_nav ul li:hover {
    background: #293869;
    color: #fff;
  }
}

@media (max-width: 727px) {
  .header>div .header_nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .header>div .header_nav.active {
    right: 0;
  }

  .header>div .header_nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    list-style: none;
    padding: 0;
  }

  .header>div .header_nav ul li {
    width: 80%;
    text-align: center;
    margin: .5em auto;
  }

  .header>div .header_nav ul li a {
    display: block;
    padding: 20px;
    font-size: 1.2rem;
    color: #293869;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid;
  }
}

.footer {
  background: #004888;
  color: #fff;
  padding: .5em 1em;
  display: flex;
  justify-content: space-between;
}

.footer>p {
  width: fit-content;
}

.scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background-color: #444;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  border: none;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.scroll-top-btn .arrow {
  background: #fff;
  display: block;
  position: relative;
  width: 12px;
  height: 18px;
  margin-top: 10px;
}

.scroll-top-btn .arrow::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid #fff;
}

.scroll-top-btn.is-show {
  opacity: 1;
  visibility: visible;
}

.fvbox {
  width: 100%;
  background: url(./img/fv_bg.png) center center no-repeat;
  background-size: cover;
  padding: 0;
  padding-top: 65px;
}

.fvbox .fvtext {
  margin: auto;
  max-width: 1700px;
  width: 90%;
}

.fvbox .fvtext img {
  padding: 2em 0;
  opacity: 1;
  animation: fvBreathing 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes fvBreathing {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

.moviebox {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.moviebox .video-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moviebox .video-container .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
  filter: blur(15px);
  transform: translateZ(0);
  will-change: transform;
}

.moviebox .video-container .main-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 90%;
  margin: auto;
  text-align: center;
}

.moviebox .video-container .main-content .main-video {
  width: 90%;
  margin: 5%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.ctabox {
  width: 100%;
  background: url(./img/cta_bg.png) center center no-repeat;
  background-size: cover;
  border-top: 5px solid #293869;
  border-bottom: 5px solid #293869;
}

.ctabox ul {
  padding: 5em 0;
  width: fit-content;
  display: flex;
  margin: auto;
}

.ctabox ul li {
  margin: 0 1em;
}

.bg_color {
  background: #FFE900;
}

.bg_dot {
  background: url(./img/bg_dot.png) left top repeat-x;
  background-size: inherit;
}

.h_bg {
  background: url(./img/cta_bg.png) center center no-repeat;
  background-size: inherit;
}

.zoom-in,
.fade-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

.zoom-in.is-visible,
.fade-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

h2 {
  margin: auto;
  width: 90%;
  max-width: 1000px;
  padding-top: 2em;
  position: relative;
  z-index: 2;
}

section {
  padding: 5em 2em;
  overflow: hidden;
}

.borderbox {
  border: 10px solid #000000;
  background: #FFE906;
}

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

.scrollbox {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbox::-webkit-scrollbar {
  display: none;
}

.scrollbox ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.scrollbox ul li {
  flex: 0 0 auto;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.left-arrow {
  left: -50px;
  content: url(./img/arrow.png);
  transform: rotate(180deg) translateY(50%);
  opacity: 0;
  pointer-events: none;
}

.right-arrow {
  right: -50px;
  content: url(./img/arrow.png);
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.is-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.left-arrow.is-visible,
.right-arrow.is-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 1000;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  height: 80%;
  border: 3px solid #fff;
  border-radius: 5px;
}

.modal-close {
  position: absolute;
  top: 60px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.section01 {}

.section01 h2 {
  position: relative;
}

.section01 h2 img {
  position: relative;
  z-index: 2;
}

.section01 h2::before,
.section01 h2::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.section01 h2::before {
  background-image: url(./img/section01_h_note.png);
  width: clamp(100px, 20vw, 203px);
  aspect-ratio: 203 / 149;
  z-index: 2;
  transform: translate(-20%, -70%);
}

.section01 h2::after {
  background-image: url(./img/h_bg.png);
  background-position: center;
  width: 120%;
  aspect-ratio: 1095 / 227;
  z-index: 1;
  transform: translate(-10%, -70%);
}

.section01>div {
  margin: 8em auto 3em;
}

.section01>div p {
  max-width: fit-content;
  width: 90%;
  margin: 2em;
}

.section01>div p img {
  width: 100%;
}

.section01>div p:nth-child(2n+1) {
  margin-right: auto;
  margin-left: 0;
}

.section01>div p:nth-child(2n) {
  margin-right: 0;
  margin-left: auto;
}

.section02 .bgbox {
  max-width: 1200px;
  width: 95%;
  margin: -3em auto 0;
}

.section03 ul {
  display: flex;
  margin: 3em auto;
}

.section03 ul li {
  margin: 1em;
  width: calc(25% - 2em);
}

.section03 ul li img {
  width: 100%;
}

.section03 p {
  margin: 1em auto;
  width: fit-content;
}

.section04 {
  padding: 1em 0 0;
}

.section04 .visualbox {
  background: url(./img/section04_bg.png) center center no-repeat;
  background-size: cover;
}

.section04 .visualbox h2 {
  width: 40%;
  padding: 5em 0;
  margin-right: 2em;
  max-width: fit-content;
}

.section04 ul {
  display: flex;
}

.section04 ul li {
  width: calc(25% - 1em);
  margin: 1em 0;
  margin-left: 1em;
}

.section04 ul li img {
  width: 100%;
}

.section04 ul li:last-child {
  margin-right: 1em;
}

.section05 h2 {
  position: relative;
}

.section05 h2 img {
  position: relative;
  z-index: 2;
}

.section05 h2::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(./img/h_bg.png);
  background-position: center;
  width: 120%;
  aspect-ratio: 1095 / 227;
  z-index: 1;
  transform: translate(-8%, -70%);
}

.section05 .scrollbox {
  margin: 8em auto 0;
}

.section05 .scrollbox ul {
  width: max-content;
  display: flex;
}

.section05 .scrollbox ul li {
  margin: 1em;
}

.section05 .note {
  max-width: 1200px;
  width: 90%;
  margin: 1em auto;
}

.section05 .text {
  margin: 5em auto;
  width: fit-content;
}

.section06 {}

.section06 .reviews:nth-child(odd) {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1000px;
  width: 90%;
  margin: 4em auto;
  gap: 15px;
}

.section06 .reviews:nth-child(odd) .iconbox {
  width: 70px;
  flex-shrink: 0;
}

.section06 .reviews:nth-child(odd) .iconbox img {
  width: 100%;
  border-radius: 50%;
  background: #eee;
}

.section06 .reviews:nth-child(odd) .textbox {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background-color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  max-width: 70%;
  margin-right: auto;
}

.section06 .reviews:nth-child(odd) .textbox::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -10px;
  border-style: solid;
  border-width: 5px 10px 5px 0;
  border-color: transparent #ffffff transparent transparent;
}

.section06 .reviews:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  max-width: 1000px;
  width: 90%;
  margin: 4em auto;
  gap: 15px;
}

.section06 .reviews:nth-child(even) .iconbox {
  width: 70px;
  flex-shrink: 0;
}

.section06 .reviews:nth-child(even) .iconbox img {
  width: 100%;
  border-radius: 50%;
  background: #eee;
}

.section06 .reviews:nth-child(even) .textbox {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background-color: #E2F0D9;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  max-width: 70%;
  margin-left: auto;
}

.section06 .reviews:nth-child(even) .textbox::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -10px;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #E2F0D9;
}

.section06 .reviews .textbox .star {
  color: #FABB03;
  margin-bottom: 5px;
}

.section06 .reviews .textbox .text {
  font-size: 22px;
  line-height: 1.6;
  margin: 0;
}

.section06 .reviews .textbox .text span {
  background: linear-gradient(transparent 70%, #FABB03 30%);
}

.section06 .media {
  max-width: fit-content;
  width: 90%;
  margin: 5em auto 0;
}

.section07 h2 {
  position: relative;
}

.section07 h2 img {
  position: relative;
  z-index: 2;
}

.section07 h2::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(./img/h_bg.png);
  background-position: center;
  width: 120%;
  aspect-ratio: 1095 / 227;
  z-index: 1;
  transform: translate(-8%, -70%);
}

.section07 .storebox {
  max-width: 1200px;
  width: 90%;
  margin: 8em auto;
}

.section07 .storebox .storelist {
  display: flex;
  margin-bottom: 5em;
}

.section07 .storebox .storelist .imgbox {
  width: 34%;
}

.section07 .storebox .storelist .textbox {
  width: calc(66% - 1em);
  margin-left: 1em;
  font-size: 24px;
}

.section07 .storebox .storelist .textbox .btnlist {
  display: flex;
  margin-top: 1em;
}

.section07 .storebox .storelist .textbox .btnlist li {
  margin-right: 1em;
}

.section07 .text {
  max-width: fit-content;
  width: 90%;
  margin: 2em auto;
}

.section08 {
  width: 100%;
  padding: 0;
}

.section08 .l_box,
.section08 .r_box {
  display: flex;
  align-items: center;
}

.section08 .l_box>div,
.section08 .r_box>div {
  width: 50%;
}

.section08 .l_box .text,
.section08 .r_box .text {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.section08 .l_box .text img,
.section08 .r_box .text img {
  max-width: fit-content;
  width: 80%;
}

.section08 .l_box .text {
  order: 1;
}

.section08 .l_box .img {
  order: 2;
}

.section08 .r_box .text {
  order: 2;
}

.section08 .r_box .img {
  order: 1;
}

.president {
  margin: 0;
  padding: 0;
  background: url("./img/president_bg.png") right center/contain repeat-y #FFE900;
  display: flex;
}

.president .img {
  width: 24.5%;
  background: url(./img/president_img.png) center center no-repeat;
  background-size: cover;
}

.president .textbox {
  width: calc(75.5% - 1em);
  margin-left: 1em;
}

.president .textbox h2 {
  max-width: fit-content;
  width: 90%;
  margin: 0 auto 2em;
}

.president .textbox .text {
  width: 90%;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 18px;
  max-width: 1200px;
}

.president .textbox .namebox {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1em;
  padding: 1em;
}

@media screen and (max-width: 767px) {
  .fvbox .fvtext {
    width: 90%;
  }

  .ctabox ul {
    padding: 1em 0;
    width: 90%;
    display: block;
  }

  .ctabox ul li {
    width: 80%;
    margin: 1em auto;
  }

  h2 {
    padding-top: 1em;
  }

  section {
    padding: 1em 0 2em;
  }

  .scroll-arrow {
    width: 30px;
    height: 30px;
  }

  .left-arrow {
    left: -.5em;
  }

  .right-arrow {
    right: -.5em;
  }

  .fccta .fcctabox {
    padding: 2em 1em;
  }

  .fccta .fcctabox .btn {
    margin-top: 1em;
  }

  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: 1000;
  }

  .modal-content {
    width: 80%;
    height: auto;
  }

  .section01 {
    padding: 2em .5em;
  }

  .section01>div {
    margin: 2em auto;
  }

  .section01>div .rogo {
    margin-top: 2em;
  }

  .section02 .bgbox {
    margin: -1em auto 0;
  }

  .section03 ul {
    display: flex;
    flex-wrap: wrap;
    margin: 1em auto;
  }

  .section03 ul li {
    margin: 1em;
    width: calc(50% - 2em);
  }

  .section03 ul li img {
    width: 100%;
  }

  .section03 p {
    margin: 1em auto;
    width: fit-content;
  }

  .section04 .visualbox h2 {
    width: 70%;
    padding: 3em 0;
    margin-left: 30%;
    margin-right: 0;
    max-width: fit-content;
  }

  .section04 ul {
    display: flex;
    flex-wrap: wrap;
  }

  .section04 ul li {
    width: calc(50% - 1em);
    margin: .5em;
  }

  .section04 ul li:last-child {
    margin-right: .5em;
  }

  .section05 .scrollbox {
    margin: 3em auto 0;
  }

  .section05 .scrollbox ul {
    width: max-content;
    display: flex;
  }

  .section05 .scrollbox ul li {
    margin: 1em;
    width: 200px;
  }

  .section05 .note {
    margin: 1em auto;
  }

  .section05 .text {
    margin: 1em auto;
  }

  .section06 .reviews {
    background: #fff;
    margin: 1em auto;
  }

  .section06 .reviews .iconbox {
    width: 50px !important;
  }

  .section06 .reviews .textbox {
    width: 100%;
  }

  .section06 .reviews .textbox .text {
    font-size: 16px;
  }

  .section06 .media {
    max-width: fit-content;
    width: 90%;
    margin: 5em auto 0;
  }

  .section07 .storebox {
    margin: 2em auto;
  }

  .section07 .storebox .storelist {
    display: block;
    margin-bottom: 5em;
  }

  .section07 .storebox .storelist .imgbox {
    width: 100%;
  }

  .section07 .storebox .storelist .textbox {
    width: 100%;
    margin: 1em auto;
    font-size: 16px;
  }

  .section07 .storebox .storelist .textbox .btnlist {
    display: flex;
  }

  .section07 .storebox .storelist .textbox .btnlist li {
    margin: .5em;
  }

  .section08 .l_box,
  .section08 .r_box {
    display: block;
  }

  .section08 .l_box>div,
  .section08 .r_box>div {
    width: 100%;
  }

  .section08 .l_box .text,
  .section08 .r_box .text {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }

  .section08 .l_box .text img,
  .section08 .r_box .text img {
    max-width: fit-content;
    width: 80%;
    margin: 2em auto;
  }

  .section08 .l_box .text {
    order: 1;
  }

  .section08 .l_box .img {
    order: 2;
  }

  .section08 .r_box .text {
    order: 2;
  }

  .section08 .r_box .img {
    order: 1;
  }

  .president {
    display: block;
  }

  .president .img {
    width: 100%;
    height: 250px;
    background-position-y: -140px;
  }

  .president .textbox {
    width: 90%;
    margin: 1em auto 0;
  }

  .president .textbox h2 {
    max-width: fit-content;
    width: 90%;
    margin: 0 auto 1em;
  }

  .president .textbox .text {
    font-size: 16px;
  }

  .president .textbox .namebox {
    margin-bottom: 0;
  }
}