@charset "utf-8";
/*============================
    common
============================*/
:root {
  /* color */
  --font: #333333;
  --main: #d6082e;
  --white: #fff;

  /* font */
  --en: "Montserrat", sans-serif;
  --ja: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
}
::selection {
  background: #d6566d;
  color: white;
}
::-moz-selection {
  background: #d6566d;
  color: white;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  image-rendering: -webkit-optimize-contrast;
  user-select: none
}
body {
  font-size: 1.6rem;
  font-family: var(--ja);
  font-weight: 500;
  color: var(--font);
  animation: fadeIn 4s forwards;
  scroll-behavior: inherit;
}
a {
  text-decoration: none;
  color: initial;
  transition: 0.4s all;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.flex {
  display: flex;
}
h2{
  font-family: var(--serif);
  text-align: center;
  letter-spacing: .05em;
}
h3{
  letter-spacing: .05em;
}
@media screen and (max-width: 1200px) {
  .wrap {
    width: 90%;
  }
}
@media screen and (max-width: 1000px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*=========================
  animation
=========================*/
/*---------------------
  delayScrollAnime box
---------------------*/
.delayScroll > * {
  opacity: 0;
  position: relative;
  top: 0;
}
.fadeUp {
  animation: fadeUpAnime 0.6s ease-out forwards;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    top: 40px;
    filter: blur(3px);
  }
  to {
    opacity: 1;
    top: 0;
    filter: blur(0);
  }
}
.fade-in {
  opacity: 0;
  transition-duration: 900ms;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 40px);
}
.fade-in-left {
  transform: translate(-50px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
/*----------------------
   loading
-----------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  transition: opacity .8s ease, visibility .8s ease;
  opacity: 1;
  visibility: visible;
}
.loading.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loadingText {
  display: inline-block;
  font-size: clamp(2rem,5.333vw,4rem);
  white-space: nowrap;
  opacity: 0;
  visibility: visible;
  font-family: var(--serif);
  letter-spacing: .2em;
  animation: fade_in 1.3s ease forwards;
}
.loadingText span {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.loadingLogo {
  opacity: 0;
  width: 200px;
  animation: fade_in 1.3s ease forwards;
}
@keyframes fade_in {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
.loading-lock {
  overflow: hidden;
  height: 100vh;
}
@media screen and (max-width: 1000px) {
  .loadingLogo {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 550px) {
  .loading {
    gap: 40px;
  }
  .loadingLogo {
    width: 130px;
  }
  .loadingText {
    padding-left: 10px;
  }
}
/*============================
    header
============================*/
header {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: opacity .2s ease;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.header--scrolled::before {
  opacity: 1;
  background: var(--white);
}
header .logo {
  position: relative;
  width: 195px;
  margin: 35px 0 0 24px;
}
header .logo {
  position: relative;
  width: 195px;
  margin: 35px 0 0 24px;
}
#mainLogo {
  opacity: 1;
  transition: opacity 0.3s ease, top 0.3s ease, width 0.3s ease;
  position: relative;
  top: 0;
  width: 195px;
}
.header--scrolled #mainLogo {
  opacity: 1;
  top: -15px;
  position: absolute;
  width: 180px;
}
header .nav a {
  transition: color .4s ease;
}
.header--scrolled::after {
  opacity: 1;
}
.header--scrolled .nav a {
  color: var(--font);
}
header ul.nav{
  position: fixed;
  display: flex;
  gap: 2.222vw;
  top: 45px;
  right: 32px;
  font-size: clamp(1.3rem,1.11vw,1.6rem);
}
.header--scrolled ul.nav{
  top: 36px;
}
header ul.nav li a{
  font-family: var(--serif);
  color: var(--white);
  transition: all .4s;
}
header ul.nav li a:hover{
  color: #d6566d;
}
@media screen and (max-width: 1200px) {
  header ul.nav{
    top: 24px;
    right: 24px;
    gap: 1.8vw;
  }
}
@media screen and (max-width: 1000px) {
  header .logo {
    position: relative;
    width: 180px;
    margin: 10px 0 0 10px;
  }
  .header--scrolled #mainLogo{
    position: relative;
    top: 0;
    width: auto;
  }
  .spLogo{
    width: 140px;
    margin: 24px 0 0 16px;
  }
  .hamburger-menu {
    position: fixed;
    top: 24px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 30;
  }
  .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }
  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    background-color: var(--font);
  }
  .hamburger-menu.active .hamburger-line:nth-child(2) {
      opacity: 0;
  }
  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: var(--font);
  }
  .slide-menu.overlay-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    font-family: var(--serif);
    z-index: 20;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .slide-menu.overlay-menu.active {
    opacity: 1;
    visibility: visible;
        overflow-y: auto;
  }
  .menu-list {
    padding: 30px 0 0 0;
  }
  .menu-list li {
    margin: 0;
    padding: 0;
  }
  .menu-list a {
    display: block;
    padding: 20px 22px;
    color: var(--font);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }
  .menu-list a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .header--scrolled .hamburger-line { 
    background-color: var(--font); 
  }
  .slide-menu .subNav{
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
        padding-bottom: 80px;
  }
  .slide-menu .subNav a{
    display: block;
    padding: 12px 16px;
    color: var(--font);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  .slide-menu .subNav a.target{
    position: relative;
  }
  .slide-menu .subNav a.target::before{
    content: "";
    position: absolute;
    background: url(../img/target_icon_black.png) no-repeat;
    background-size: contain;
    width: 10px;
    height: 8px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .slide-menu .cvBtn{
    width: 100%;
    margin-top: 32px;
    margin-left: 20px;
    max-width: 300px;
  }
  .header--scrolled::after{
    height: 80px;
  }
  header::before{
    height: 80px;
  }
}
@media screen and (max-width: 550px) {
    header .logo {
    position: relative;
    width: 140px;
    margin: 10px 0 0 10px;
  }
  .header--scrolled #mainLogo{
    position: relative;
    top: 0;
    width: auto;
  }
  .header--scrolled::after {
    height: 64px;
  }
  .hamburger-menu{
    top: 17px;
  }
  header::before{
    height: 67px;
  }
}
/*============================
    main
============================*/
#main{
  position: relative;
  background: var(--main);
  margin-bottom: -10.41vw;
}
#main .lead{
  position: absolute;
  z-index: 5;
  padding-left: 6.94vw;
  top: 48%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#main .lead h1{
  font-family: var(--serif);
  font-size: clamp(3.8rem,5vw,7.2rem);
  letter-spacing: .1em;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.66vw;
}
#main .lead h1 span{
  font-size: clamp(2.2rem,2.08vw,3rem);
  letter-spacing: .15em;
}
#main .lead p{
  font-size: clamp(1.4rem,1.66vw,2.4rem);
  color: var(--white);
  margin-bottom: 2.22vw;
}
#main .lead p.annotation{
  font-size: .85rem;
  font-family: var(--serif);
  margin-top: 1.11vw;
  line-height: 1.6;
  margin-bottom: 0;
  text-indent: -1rem;
  padding-left: 1rem;
}
#main .overlay1 {
  position: absolute;
  width: 64vw;
  aspect-ratio: 926 / 980;
  top: 0;
  left: -9.5vw;
  background: var(--main);
  opacity: 0.8;
  clip-path: polygon(27.5% 0, 100% 0%, 73.5% 100%, 0% 100%);
}
#main .overlay2 {
  position: absolute;
  width: 64vw;
  aspect-ratio: 926 / 980;
  top: 0;
  left: -6.5vw;
  background: var(--main);
  opacity: 0.3;
  clip-path: polygon(27.5% 0, 100% 0%, 73.5% 100%, 0% 100%);
}
#main a.contact{
  position: fixed;
  bottom: -10px;
  right: 16px;
  z-index: 15;
  transition: all .4s;
  width: 20.42%;
  max-width: 225px;
}
#main a.contact:hover{
  opacity: .7;
}
 #main a.contact {
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}
#main a.contact.hide {
  opacity: 0;
  visibility: hidden;
}
#main .bg img{
  width: 100vw;
}
@media screen and (min-width: 1600px) {
  #main{
    height: 105vh;
    margin-bottom: -90px;
  }
  #main .lead h1{
    font-size: 8rem;
  }
  #main .lead h1 span {
    font-size: 3.5rem;
  }
  #main .lead{
    padding-left: 12%;
    top: 48%;
  }
  #main a.contact {
    bottom: 0;
    right: 50px;
  }
}
@media screen and (max-width: 1000px) {
  #main{
    min-height: auto;
  }
    #main .bg img{
    min-height: 650px;
    height: 75vh;
    object-fit: cover;
    object-position: 60%;
  }
  #main a.contact {
    bottom: 0;
    right: 0;
    position: absolute;
  }
  #main .overlay1 {
    height: 100%;
    width: 80%;
    left: -70px;
  }
  #main .overlay2 {
    height: 100%;
    width: 80%;
    left: -50px;
  }
  #main .lead p.annotation{
    margin-top: 16px;
  }
}
@media screen and (max-width: 550px) {
  #main{
    margin-bottom: -110px;
  }
  #main .bg img{
    min-height: auto;
    height: 95vh;
  }
  #main .lead{
    top: 47%;
  }
  #main .lead h1{
    margin-bottom: 16px;
  }
  #main .lead p{
    margin-bottom: 24px;
  }
  #main .lead img{
    width: 160px;
  }
  #main a.contact {
    bottom: 30px;
    right: 5px;
    width: 35%;
    visibility: initial !important;
    opacity: 1 !important;
  }
  #main .lead p.annotation {
    font-size: .7rem;
    width: 60%;
    margin-bottom: 0;
  }
  #main .overlay1 {
    width: 100%;
  }
  #main .overlay2 {
    width: 100%;
  }
}
/*============================
    about
============================*/
#about{
  position: relative;
  padding: 25.69vw 0 12.5vw;
  clip-path: polygon(0 10vw, 100% 0, 100% 100%, 0% 100%);
  background: #fff;
}
#about::after{
  content: "";
  position: absolute;
  background: #ECECEC;
  background: linear-gradient(90deg,rgba(236, 236, 236, 1) 0%, rgba(236, 236, 236, 0) 100%);
  width: 100%;
  height: 120%;
  top: -20%;
  left: 0;
}
#about::before{
  content: "";
  position: absolute;
  background: url(../img/bg_earth.png) no-repeat;
  background-size: contain;
  width: 735px;
  height: 706px;
  bottom: 0;
  right: 0;
  z-index: 5;
}
#about .wrap{
  position: relative;
  z-index: 5;
}
#about h2{
  position: relative;
  font-size: clamp(3rem,2.77vw,4rem);
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: left;
}
#about h2 span{
  font-size: clamp(2rem,2.08vw,3rem);
}
#about h2 i{
  color: var(--main);
}
#about h2::before{
  content: "";
  position: absolute;
  background: url(../img/global-vision.png) no-repeat;
  background-size: contain;
  width: 693px;
  height: 73px;
  left: 0;
  top: -70px;
  opacity: 0.5;
}
#about p{
  font-size: clamp(1.3rem,1.25vw,1.8rem);
  line-height: 2;
}
#about .aboutSp{
  display: none;
}
@media screen and (max-width: 1200px) {
  #about::before{
  width: 570px;
  height: 550px;
  }
}
@media screen and (max-width: 1000px) {
  #about {
  padding: 190px 0 130px;
  }
  #about h2::before{
    width: 90%;
    height: 32px;
    top: -20px;
  }
  #about h2{
    margin-bottom: 32px;
  }
  #about::before{
    width: 295px;
    height: 284px;
  }
}
@media screen and (max-width: 550px) {
  #about .aboutSp{
      display: block;
    }
  #about{
    padding: 150px 0 72px;
    clip-path: polygon(0 13%, 100% 0, 100% 100%, 0% 100%);
  }
  #about::before {
    width: 215px;
    height: 204px;
  }
  #about h2{
    margin-bottom: 24px;
  }
  #about h2::before {
    width: 75%;
    height: 27px;
    top: -16px;
  }
}
/*============================
    houses
============================*/
#houses{
    padding: 150px 0 120px;
}
#houses h2{
  font-size: clamp(2rem,2.08vw,3rem);
  margin-bottom: 56px;
  line-height: 1.5;
}
#houses h2 span{
  position: relative;
  padding-left: 18px;
}
#houses h2 span::before{
  content: "";
  position: absolute;
  width: 6px;
  height: 29px;
  top: 10px;
  left: 0;
  background: var(--main);
}
#houses .housesList{
  display: flex;
  gap: 32px;
}
#houses .housesList li{
  position: relative;
  width: calc(100% / 5);
}
#houses .housesList li::before{
  content: "";
  position: absolute;
  background: url(../img/houses_line.png) no-repeat;
  background-size: contain;
  width: 7px;
  height: 100%;
  top: 0;
  left: -18px;
}
#houses .housesList li:first-child::before{
  display: none;
}
#houses .housesList .value{
  font-size: clamp(1.6rem,1.11vw,1.8rem);
  font-weight: bold;    
  margin-bottom: 16px;
  text-align: center;
}
#houses .housesList .value span{
  font-size: 1.4rem;
}
#houses .housesList figure{
    margin-bottom: 10px;
}
#houses .housesList .source{
  font-size: clamp(1rem,0.7638vw,1.1rem);
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  #houses{
    padding: 100px 0;
  }
  #houses h2{
    margin-bottom: 40px;
  }
  #houses h2 span{
    padding-left: 16px;
  }
  #houses h2 span::before{
    width: 5px;
    height: 22px;
    top: 5px;
  }
  #houses .housesList{
    flex-wrap: wrap;
    justify-content: center;
  }
  #houses .housesList li{
    width: calc((100% - 64px) / 3);
  }
}
@media screen and (max-width: 550px) {
  #houses{
  padding: 72px 0 72px;
  }
  #houses h2{
  margin-bottom: 32px;
  }
  #houses h2 span{
  display: inline-block;
  padding-left: 16px;
  }
  #houses h2 span::before{
  height: 55px;
  top: 2px;
  }
  #houses .housesList{
    flex-wrap: wrap;
    justify-content: center;
  }
  #houses .housesList li{
    width: calc(50% - 16px);
  }
  #houses .housesList li:nth-child(1)::before,
  #houses .housesList li:nth-child(3)::before,
  #houses .housesList li:nth-child(5)::before{
    display: none;
  }
  #houses .housesList .value{
    margin-bottom: 10px;
  }
}
/*============================
    strength
============================*/
#strength{
  padding: 80px 0 0;
  background: var(--main);
}
#strength h2{
  color: var(--white);
  font-size: clamp(3rem,2.77vw,4rem);
  margin-bottom: 32px;
  line-height: 1.5;
}
#strength h2 span{
  font-size: clamp(2rem,2.08vw,3rem);
  letter-spacing: .05em;
}
#strength ul.strengthList{
  display: flex;
}
#strength ul.strengthList li{
  position: relative;
}
#strength ul.strengthList .detail{
  position: absolute;
  width: 77.08%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 10;
}
#strength ul.strengthList .number{
  position: absolute;
  top: 56px;
  width: 158px;
}
#strength ul.strengthList .lead{
  position: absolute;
  bottom: 56px;
}
#strength ul.strengthList h3{
  font-family: var(--serif);
  text-align: center;
  font-size: clamp(2.3rem,1.66vw,2.4rem);
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.5;
}
#strength ul.strengthList p{
  color: var(--white);
  font-size: clamp(1.3rem,1.11vw,1.6rem);
  line-height: 1.8;
}
#strength ul.strengthList figure{
  position: relative;
}
#strength ul.strengthList figure::before{
  content: "";
  position: absolute;
  background: rgba(0,0,0,.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}
#strength ul.strengthList figure img{
  aspect-ratio: 480 / 630;
  object-fit: cover;
  min-height: 43.75vw;
}
@media screen and (max-width: 1200px) {
  #strength ul.strengthList .detail{
    width: 90%;
  }
}
@media screen and (max-width: 1000px) {
  #strength{
    padding: 72px 0 0;
  }
  #strength ul.strengthList{
    display: block;
  }
  #strength ul.strengthList li{
    width: 100%;
  }
  #strength ul.strengthList .detail{
    width: 90%;
  }
  #strength ul.strengthList .number{
    top: 40px;
  }
  #strength ul.strengthList figure img{
    min-height: auto;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 550px) {
  #strength{
    padding: 64px 0 0;
  }
  #strength ul.strengthList figure img{
    min-height: 500px;
  aspect-ratio: 480 / 630;
  }
  #strength ul.strengthList h3{
    margin-bottom: 24px;
  }
}
/*============================
    appeal
============================*/
#appeal{
  position: relative;
  padding: 200px 0 180px;
  display: block;
  overflow: hidden;
}
#appeal::before{
  content: "";
  position: absolute;
  background: url(../img/us-flag.png) no-repeat;
  background-size: contain;
  width: 778px;
  height: 563px;
  top: 0;
  left: 0;
  z-index: -1;
}
#appeal .point{
  position: relative;
}
#appeal .point .lead{
  position: absolute;
  width: calc(54.83% - 56px);
  bottom: -200px;
  left: 0;
  background: #fff;
  padding: 56px 56px 36px 0;
  z-index: 5;
}
#appeal .point .lead h2{
  text-align: left;
  font-size: clamp(3rem,2.77vw,4rem);
  margin-bottom: 32px;
  line-height: 1.5;
}
#appeal .point .lead p{
  font-size: clamp(1.3rem,1.25vw,1.8rem);
  line-height: 2;
}
#appeal .point figure{
  text-align: right;
  position: relative;
}
#appeal .anime_wrap{
    position: relative;
}
#appeal .pattern::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 2;
    transition: .8s ease;
}
#appeal .pattern.show::before{
    transform: translateX(100%);
}
#appeal .pattern img{
    opacity: 0;
    transition: .8s ease;
}
#appeal .pattern.show img{
    opacity: 1;
}
#appeal .main_figure{
    position: relative;
}
#appeal .sub_figure{
    position: absolute;
    width: 400px;
    bottom: -55px;
    right: -40px;
    z-index: 5;
}
#appeal .sub_figure img{
    width: 100%;
    box-shadow: -5px 8.66px 28px rgba(0,0,0,0.2);
}
#appeal .point figure img{
  width: 90%;
  margin: 0 0 0 auto;
}
#appeal ul.pointList{
  display: flex;
  flex-wrap: wrap;
  margin-top: 260px;
  gap: 56px;
}
#appeal ul.pointList li{
  width: calc(50% - 28px);
}
#appeal ul.pointList figure{
  position: relative;
  cursor: pointer;
  margin-bottom: 16px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
#appeal ul.pointList figure img{
  cursor: pointer;
}
#appeal .pointList figure:hover img.popup {
  transform: scale(1.1); 
}
#appeal .pointList figure img.popup {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
#appeal ul.pointList figure::before{
  content: "";
  position: absolute;
  background: url(../img/loupe_icon.png) no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}
#appeal ul.pointList h3{
  font-family: var(--serif);
  color: var(--main);
  font-size: clamp(2rem,2.22vw,3.2rem);
  margin-bottom: 16px;
}
#appeal ul.pointList p{
  font-size: clamp(1.3rem,1.25vw,1.8rem);
  line-height: 2;
}
#appeal ul.pointList li .annotation{
  font-size: clamp(.8rem,0.694vw,1rem);
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: right;
}
#appeal ul.pointList li .annotation a{
      font-size: clamp(.7rem,0.625vw,.9rem);
      border-bottom: 1px solid var(--font);
}
#appeal p.anno{
  text-align: right;
  font-size: clamp(1rem,0.972vw,1.4rem);
  color: var(--main);
  margin-top: 80px;
}
/* modal setting ↓ */
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.modal-content {
  display: block;
  width: 70%;
}
#close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  cursor: pointer;
}
.no-scroll {
  overflow: hidden;
}
@media screen and (min-width: 1600px) {
  .modal-content {
    width: 50%;
}
}
@media screen and (max-width: 1200px) {
  #appeal .sub_figure{
    width: 320px;
  }
  #appeal .point .lead{
    width: calc(60.83% - 56px);
    padding: 40px 56px 24px 0;
  }
}
@media screen and (max-width: 1000px) {
  #appeal {
    padding: 140px 0 100px;
  }
  #appeal ul.pointList{
    display: block;
    margin-top: 270px;
  }
  #appeal ul.pointList li{
    width: 100%;
    margin-bottom: 40px;
  }
  #appeal ul.pointList li:last-child{
    margin-bottom: 0;
  }
  .modal-content {
    display: block;
    width: 90%;
  }
  #appeal .point .lead {
    bottom: -250px;
    left: 0;
    padding: 32px 24px 32px 24px;
    width: 80%;
  }
  #appeal ul.pointList figure{
    margin-bottom: 8px;
  }
  #appeal ul.pointList figure::before{
    width: 32px;
    height: 32px;
    right: 16px;
    bottom: 16px;
  }
  #appeal .point figure img {
    width: 95%;
    height: 30vh;
    object-fit: cover;
}
#appeal .sub_figure {
    width: auto;
    top: -50px;
    bottom: auto;
    right: -10px;
}
  #appeal .sub_figure img{
    height: auto !important;
    aspect-ratio: 4 / 3;
    width: 230px !important;
  }
  #appeal::before{
    width: 398px;
    height: 293px;
  }
  #appeal p.anno{
    margin-top: 32px;
  }
}
@media screen and (max-width: 550px) {
  #appeal {
    padding: 120px 0 72px;
  }
  #close{
    top: 5px;
    right: 15px;
    font-size: 32px;
  }
  #appeal .point .lead{
    bottom: -310px;
  }
  #appeal ul.pointList{
    margin-top: 350px;
  }
  #appeal .point .lead h2{
    margin-bottom: 16px;
  }
  #appeal .point figure img {
    width: 100%;
    height: 35vh;
}
  #appeal .sub_figure img{
    width: 150px !important;
  }  
  #appeal::before{
    width: 278px;
    height: 203px;
  }
  #appeal ul.pointList h3{
    margin-bottom: 16px;
  }
}
/*============================
    merchandise
============================*/
#merchandise{
  padding-top: 150px;
  background: #333;
}
#merchandise h2{
  font-size: clamp(3rem,2.77vw,4rem);
  color: var(--white);
  margin-bottom: 40px;
}
#merchandise .swiper-slide a{
  position: relative;
  will-change: transform;
}
#merchandise .swiper-slide .detail {
  transition: opacity 0.4s ease; 
  pointer-events: none; 
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 90%;
  margin: 0 auto;
  z-index: 5;
}
#merchandise .swiper-slide a:hover .detail {
  opacity: 1;
}
#merchandise .detail .access{
  font-size: clamp(1.6rem,1.66vw,2.4rem);
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 10px;
}
#merchandise .detail .price{
  color: var(--white);
}
#merchandise figure{
  position: relative;
  overflow: hidden;
}
#merchandise figure .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 45%
  );
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}
#merchandise .swiper-slide a:hover figure .overlay {
  opacity: 1;
}
#merchandise figure.ca::before{
  content: "カリフォルニア州";
  position: absolute;
  background: var(--main);
  display: block;
  font-size: 1.4rem;
  color: var(--white);
  font-family: var(--serif);
  width: 139px;
  text-align: center;
  padding: 12px 0;
  top: 0;
  left: 0;
}
/* merchandise swiper setting ↓ */
#merchandise .swiper-slide img {
  height: auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
#merchandise .swiper .swiper-slide {
  position: relative;
}
#merchandise .swiper .swiper-slide:not(.is-center)::before {
  content: "";
  position: absolute;
  background: rgba(0,0,0,.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  aspect-ratio: 4 / 3;
}
#merchandise .swiper .swiper-slide {
  position: relative;
  transition: opacity 0.6s ease;
}
#merchandise .swiper .swiper-slide:not(.is-center) {
  opacity: 0.4;
}
#merchandise .swiper .swiper-slide.is-center {
  opacity: 1;
}
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.swiper-button-next::after {
  background-image: url(../img/arrow_next.png);
}
.swiper-button-prev::after {
  background-image: url(../img/arrow_prev.png);
}
@media screen and (max-width: 1000px) {
  #merchandise {
    padding-top: 80px;
  }
  #merchandise .swiper-slide .detail{
    opacity: 1;
  }
  #merchandise figure .overlay {
    opacity: 1;
  }
}
@media screen and (max-width: 550px) {
  #merchandise {
    padding-top: 72px;
  }
  #merchandise h2{
    margin-bottom: 32px;
  }
  #merchandise .detail .price{
    font-size: 1.1rem;
  }
  #merchandise .swiper-slide .detail{
    bottom: 24px;
  }
  #merchandise figure.ca::before{
    font-size: 1.1rem;
    width: 119px;
    padding: 10px 0;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 40px;
    height: 40px;
}
}
/*============================
    la
============================*/
#la{
  padding: 150px 0 120px;
  background: #333;
  position: relative;
  overflow: hidden;
}
#la::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #000000;
  background: linear-gradient(33deg,rgba(0, 0, 0, .8) 10%, rgba(0, 0, 0, 0) 33%);
}
#la::after {
    content: "";
    position: absolute;
    background: url(../img/map.png) no-repeat;
    background-size: contain;
    background-position: center;
    width: 52vw;
    aspect-ratio: 754 / 549;
    top: 47%;
    right: -4vw;
    transform: translateY(-50%);
}

#la .wrap{
  position: relative;
  z-index: 5;
}
#la .inner{
  width: 50%;
}
#la h2{
  text-align: left;
  color: var(--white);
  font-size: clamp(2.4rem,2.77vw,4rem);
  margin-bottom: 3.12vw;
  line-height: 1.5;
}
#la p{
  color: var(--white);
  font-size: clamp(1.3rem,1.25vw,1.8rem);
  line-height: 2;
  margin-bottom: 3.88vw;
}
#la .slider-wrapper {
  display: flex;
  overflow: hidden;
  gap: 10px;
}
#la .slider {
  animation: scroll-left 50s infinite linear .5s both;
  display: flex;
  gap: 10px;
}
#la .slide {
  width: 298px;;
}
#la .slide img {
  display: block;
  width: 100%;
}
#la .laSp{
  display: none;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 1000px) {
  #la {
    padding: 100px 0 90px;
  }
  #la .inner{
    width: 100%;
  }
  #la h2{
    margin-bottom: 24px;
  }
  #la p{
    margin-bottom: 32px;
    width: 60%;
  }
  #la::after{
    width: 46vw;
    top: 183px;
    right: -6vw;
  }
}
@media screen and (max-width: 550px) {
  #la .laSp{
    display: block;
    margin-bottom: 32px;
  }
  #la {
    padding: 56px 0 88px;
  }
  #la .slide {
    width: 178px;
  }
  #la::after {
    display: none;
  }
  #la p{
    width: 100%;
    margin-bottom: 24px;
  }
}
/*============================
    management
============================*/
#management{
  padding: 140px 0 0;
}
#management .flex{
  align-items: center;
  justify-content: space-between;
  gap: 3.89%;
}
#management .bg{
  width: 45%;
}
#management .inner{
  width: 42.85%;
  padding-right: clamp(32px, calc((100vw - 1200px) / 2), 100vw);
}
#management h2{
  font-family: var(--serif);
  font-size: clamp(2.7rem,2.77vw,4rem);
  text-align: left;
  line-height: 1.5;
  margin-bottom: 2.77vw;
}
#management h2 span{
  font-family: var(--serif);
  font-size: clamp(2.2rem,2.08vw,3rem);
}
#management h3{
  color: var(--main);
  font-family: var(--serif);
  font-size: clamp(1.8rem,2.08vw,3rem);
  margin-bottom: 16px;
  line-height: 1.5;
}
#management p{
  font-size: clamp(1.3rem,1.11vw,1.6rem);
  margin-bottom: 32px;
  line-height: 1.8;
}
#management .procedure{
  padding-top: 100px;
}
@media screen and (max-width: 1200px) {
  #management {
      padding: 100px 0 0;
  }
  #management .inner{
  width: 46.85%;
  }
  #management .bg{
    width: 65%;
  }
  #management .bg img{
    min-height: 698px;
    object-fit: cover;
  }
}
@media screen and (max-width: 1000px) {
  #management .bg img{
    min-height: auto;
  }
  #management {
    padding: 80px 0 0;
  }
  #management .flex{
    display: block;
  }
  #management .bg{
    width: 95%;
    margin: 0 auto;
  }
  #management .inner{
    width: 90%;
    margin: 0 auto;
    padding-right: initial;
}
  #management h2{
    margin: 0 0 0;
    text-align: center;
  }
  #management .procedure {
    padding-top: 40px;
}
}
@media screen and (max-width: 550px) {
  #management {
    padding: 72px 0 0;
}
#management .procedure {
    padding-top: 0;
}
#management h3{
  margin-bottom: 8px;
}
  #management h2{
    margin: 0 0 0;
  }
  #management .bg{
    width: 90%;
    margin-bottom: 16px;
  }
}
/*============================
    support
============================*/
#support{
  padding: 120px 0 120px;
}
#support h2{
  font-size: clamp(1.8rem,2.08vw,3rem);
  margin-bottom: 32px;
  line-height: 1.5;
}
#support h2 .subttl{
  font-size: clamp(1.5rem,1.38vw,2rem);
  display: inline-block;
  margin-top: 8px;
}
#support ul.supportList{
  display: flex;
  gap: 56px;
}
#support ul.supportList li{
  width: 50%;
}
#support ul.supportList figure{
  margin-bottom: 20px;
}
#support ul.supportList h3{
  font-family: var(--serif);
  font-size: clamp(1.8rem,1.66vw,2.4rem);
  color: var(--main);
  margin-bottom: 16px;
  line-height: 1.5;
}
#support ul.supportList p{
  font-size: clamp(1.3rem,1.11vw,1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 1000px) {
  #support {
    padding: 80px 0 80px;
  }
  #support ul.supportList{
    display: block;
  }
  #support ul.supportList li{
    width: 100%;
    margin-bottom: 40px;
  }
  #support ul.supportList li:last-child{
    margin-bottom: 0;
  }
}
@media screen and (max-width: 550px) {
  #support {
    padding: 64px 0 60px;
  }
  #support h2{
    margin-bottom: 32px;
  }
  #support ul.supportList h3{
    margin-bottom: 8px;
  }
}
/*============================
    process 
============================*/
#process {
  padding: 120px 0;
  background: #f2f2f2;
}
#process h2{
  font-size: clamp(2.4rem,2.08vw,3rem);
  margin-bottom: 48px;
  line-height: 1.5;
}
#process ul.step{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
#process ul.step li{
  width: calc(100% / 5);
}
#process ul.step li figure{
  text-align: center;
  margin-bottom: 24px;
}
#process ul.step li figure span{
  position: relative;
  display: inline-block;
}
#process ul.step li h3{
  text-align: center;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 32px;
  color: var(--main);
  margin-top: 20px;
  height: 66px;
}
#process ul.step li p{
  font-size: clamp(1.3rem, 0.972vw, 1.4rem);
  font-family: var(--serif);
  line-height: 1.5;
  text-align: center;
}
.processPc{
  display: block;
}
.processSp{
  display: none;
}
@media screen and (max-width: 1000px) {
  #process {
    padding: 80px 0 88px;
  }
  .processSp{
    display: block;
  }
  .processPc{
    display: none;
  }
  #process ul.step{
    display: grid;
    width: 85%;
    margin: 0 auto;
    flex-wrap: wrap;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    gap: 0;
  }
  #process ul.step li{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: -20px;  
    position: relative;  
  }
  #process ul.step li:first-child{
    z-index: 5;
  }
  #process ul.step li:nth-child(2){
    z-index: 4;
  }
  #process ul.step li:nth-child(3){
    z-index: 3;
  }
  #process ul.step li:nth-child(4){
    z-index: 2;
  }
  #process ul.step li:nth-child(5){
    z-index: 1;
    margin-top: -20px;
  }
  #process ul.step li:last-child{
    margin-bottom: 0;
    margin-top: -80px;
  }
  #process ul.step li h3{
    text-align: left;
    margin: 0 0 8px;
    height: auto;
  }
  #process ul.step li figure{
    width: 15%;
    max-width: 43px;
    margin-bottom: 0;
  }
  #process ul.step li .detail{
    width: calc(85% - 24px);
    padding-left: 24px;
  }
  #process .spflex{
    display: flex;
  }
  #process figure{
    width: 15%;
  }
  #process ul.step li p{
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
   #process {
    padding: 64px 0;
  }
  #process h2{
    margin-bottom: 32px;
  }
  #process ul.step{
    display: block;
    width: 95%;
    margin: 0 auto;
  }
  #process ul.step li{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: -20px;  
    position: relative;  
  }
  #process ul.step li:nth-child(5){
    margin-top: 0;
  }
  #process ul.step li:last-child{
    margin-top: 0;
  }
  #process ul.step li .detail{
    width: calc(85% - 16px);
    padding-left: 16px;
  }
}
/*============================
    form
============================*/
#form {
  padding: 120px 0;
  margin: 0 auto;
  max-width: 720px;
  overflow: hidden;
}
#form h2{
  font-size: clamp(1.9rem,2.08vw,3rem);
  margin-bottom: 40px;
  line-height: 1.5;
}
#form .formItem{
  border-top: 1px solid #ddd;
  padding: 24px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#form .itemLabel {
  width: 100%;
  max-width: 210px;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}
#form .itemLabel.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
#form .required  {
  border-radius: 4px;
  margin-right: 16px;
  padding: 4px 0;
  width: 40px;
  display: inline-block;
  text-align: center;
  background: var(--main);
  color: #fff;
  font-size: 1.2rem;
}
#form .itemInput {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin:0 4px 0 40px;
  padding: 0 1em 0 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 450px;
  background: #eaedf2;
  font-size: 1.3rem;
}
#form .textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin:0 4px 0 40px;
  padding: 16px 16px 0 16px;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 450px;
  background: #eaedf2;
  font-size: 1.3rem;
}
#form .formBtn {
  border-radius: 6px;
  margin: 32px auto 0;
  padding: 20px 0;
  width: 720px;
  display: block;
  letter-spacing: 0.05em;
  background: var(--main);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all .4s;
}
#form .formBtn:hover{
  opacity: .6;
}
#form .itemSelect {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin:0 4px 0 40px;
  padding: 0 1em 0 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 480px;
  background: #eaedf2;
  font-size: 1.3rem;
  color: #666;
  cursor: pointer;
}
#form .name-split {
  display: flex;
}
#form ul.radio{
  display: flex;
  flex-wrap: wrap;
  margin:0 4px 0 40px;
  gap: 10px;
  row-gap: 10px;
}
#form ul.radio li{
    width: calc((100% / 3) - 9px);
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #eaedf2;
    color: #666;
}
#form ul.radio li label{
  cursor: pointer;
  padding: 16px 16px 16px 8px;
  display: block;
  font-size: 1.3rem;
}
#age,#job{
  align-items: start !important;
}
#newsletter{
  border-top:none !important;
  font-size: 1.4rem;
}
#newsletter label{
  cursor: pointer;
  text-indent: -20px;
  padding-left: 20px;
}
@media screen and (max-width: 1000px) {
  #form {
    padding: 72px 0;
  }
  #form .formBtn{
    width: 80%;
  }
  #form ul.radio li{
    width: calc((100% / 2) - 9px);
  }
}
@media screen and (max-width: 550px) {
  #form h2{
    margin-bottom: 24px;
  }
  #form .formItem{
    flex-wrap: wrap;
  }
  #form .itemLabel {
    max-width: inherit;
    display: flex;
    align-items: center;
  }
  #form .itemLabel.isMsg {
    margin-top: 0;
  }
  #form .required  {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
  #form .itemInput {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
  }
  #form .textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
  }
  #form .formBtn {
    margin-top: 16px;
    padding: 16px 0;
    width: 100%;
    font-size: 16px;
    border-radius: 4px;
    font-size: 1.4rem;
  }
  #form .itemSelect{
    margin-left: 0;
    margin-top: 18px;
    height: 48px;
    flex: inherit;
    width: 100%;
  }
  #form .name-split .first{
    margin-left: 5px;
  }
  #form ul.radio{
    margin-left: 0;
    margin-top: 18px;
    flex: inherit;
    width: 100%;
  }
  #newsletter{
    padding: 0 0 10px 0 !important;
  }
}
/*============================
    faq
============================*/
#faq {
  padding: 100px 0 115px;
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}
#faq .wrap{
  max-width: 720px;
}
#faq h2{
  font-size: clamp(2.4rem,2.08vw,3rem);
  margin-bottom: 16px;
}
#faq .accordion-content {
  display: none;
}
#faq .accordion-header {
  padding: 32px 31px 32px 0;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  border-bottom: 1px solid #bfbfbf;
  font-family: var(--serif);
}
#faq .accordion-header::before,
#faq .accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 10px;
  bottom: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background: #151e2f;
}
#faq .accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
#faq .accordion-header.active::after {
  transform: rotate(0deg);
}
#faq .accordion-content {
  padding: 32px 32px 32px 0;
  line-height: 1.5;
  font-size: clamp(1.4rem, 1.11vw, 1.6rem);
}
#faq .accordion-header span,
#faq .accordion-content span {
  padding-left: 45px;
  position: relative;
  display: inline-block;
  font-family: var(--serif);
  line-height: 1.5;
}
#faq .accordion-header span::before {
  content: "";
  position: absolute;
  background: url(../img/faq_q.png) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#faq .accordion-content span{
font-size: clamp(1.3rem, 1.11vw, 1.6rem);
}
#faq .accordion-content span.aq::before {
  content: "";
  position: absolute;
  background: url(../img/faq_a.png) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#faq .accordion-header:hover {
  background-color: #f2f2f2;
}
#faq span.indent {
  display: inline-block;
  padding-left: 1rem;
  text-indent: -1rem;
}
@media screen and (max-width: 1000px) {
  #faq {
    padding: 72px 0 80px;
  }
  #faq::before {
    max-width: 80px;
  }
  #faq::after {
      max-width: 80px;
  }
}
@media screen and (max-width: 550px) {
  #faq {
      padding: 64px 0 72px;
  }
  #faq .accordion-header {
    padding: 24px 32px 24px 0;
  }
  #faq .accordion-content {
    padding: 16px 24px 16px 0;
  }
  #faq .accordion-content span.aq::before {
    top: 22px;
    width: 20px;
    height: 20px;
  }
  #faq .accordion-header span, 
  #faq .accordion-content span{
    padding-left: 32px;
  }
  #faq .accordion-header::before, 
  #faq .accordion-header::after{
        width: 16px;
  }
  #faq .accordion-header span::before{
    width: 20px;
    height: 20px;
  }
}
/*============================
    footer
============================*/
footer{
  padding: 100px 0 24px;
  text-align: center;
  background: var(--main);
  color: var(--white);
}
footer .wrap{
  display: flex;
    position: relative;
}
footer .footerLogo{
  max-width: 217px;
  width: 100%;
  margin-right: 6.805vw;
}
footer ul.footerNav{
  margin-right: 2.777vw;
}
footer ul.footerNav li {
  margin-bottom: 1.66vw;
}
footer ul.footerNav li:last-child{
  margin-bottom: 2.77vw;
}
footer ul.footerNav li a{
  color: var(--white);
  font-family: var(--serif);
}
footer ul.subNav li{
  margin-bottom: 16px;
}
footer ul.subNav li a{
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.3rem;
}
footer ul.subNav li a.target{
  position: relative;
}
footer ul.subNav li a.target::before{
  content: "";
  position: absolute;
  background: url(../img/target_icon_white.png) no-repeat;
  background-size: contain;
  width: 11px;
  height: 10px;
  top: 4px;
  right: -16px;
}
footer .copy{
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1rem;
  font-family: var(--serif);
}
@media screen and (max-width: 1000px) {
  footer {
    padding: 72px 0 40px;
  }
  footer .footerLogo {
    margin-right: 32px;
  }
  footer figure img{
    max-width: 167px;
  }
}
@media screen and (max-width: 550px) {
  footer{
    padding: 64px 0 40px;
  }
  footer .wrap{
    display: block;
  }
  footer figure{
    margin-right:0;
    margin-bottom: 0;
    margin-left: -12px;
  }
  footer ul.footerNav{
    margin-bottom: 32px;
  }
  footer ul.footerNav li{
    margin-bottom: 16px;
  }
  footer ul.subNav{
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--white);
  }
  footer ul.subNav li{
    margin-bottom: 14px;
  }
  footer .copy{
    position: relative;
  }
}