@charset "UTF-8";
/**** 共通カラー ****/
body {
  background-color: #fefefe;
}

.main {
  position: relative;
}
.main::before {
  content: "";
  position: absolute;
  background: url(../image/back-bg-part01.webp) no-repeat;
  background-size: contain;
  width: 69%;
  padding-top: 18%;
  top: 0;
  right: 0;
  z-index: 8;
}
@media screen and (max-width: 768px) {
  .main::before {
    width: 80%;
    top: 48%;
  }
}

.bg-area {
  background: url(../image/back_bg-top.webp) center/cover, no-repeat;
}

.section {
  background: #ffffff;
  padding: 140px 0 140px;
}

.section_about {
  background: #cccccc;
}

.section_works {
  background: #cccccc;
}

.w1200 {
  max-width: 1200px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .w1200 {
    padding: 0 15px;
  }
}

.w1360 {
  max-width: 1360px;
  margin: auto;
}

.wrapper-800 {
  max-width: 800px;
  margin: auto;
}
@media screen and (max-width: 992px) {
  .wrapper-800 {
    padding: 0 15px;
  }
}

.header {
  height: 25vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header .header-nav {
  display: flex;
  position: absolute;
  top: 25px;
  right: 0;
  font-family: "CormorantGaramond-Regular";
}
@media screen and (max-width: 768px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-nav .menu-container {
  margin-right: 30px;
}
.header .header-nav .menu-container li {
  margin-bottom: 12px;
}
.header .header-nav .menu-container li a {
  display: block;
  padding-left: 16px;
  position: relative;
  transition: all 0.3s;
}
.header .header-nav .menu-container li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 1px;
  background-color: #3f1d01;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.header .header-nav .menu-container li a:hover {
  color: #45abe2;
}
.header .header-nav .menu-container li a:hover::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 2px;
  background-color: #45abe2;
}
.header .header-nav .menu-language {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.header .header-nav .menu-language li {
  padding: 0 10px;
}
.header .header-nav .menu-language li a {
  transition: all 0.3s;
}
.header .header-nav .menu-language li a:hover {
  color: #45abe2;
}
.header h1 {
  position: fixed;
  top: 14px;
  left: 20px;
  font-size: clamp(2.2rem, 2.5vw, 2.4rem);
  font-family: "CormorantGaramond-Regular";
}
.header #switch ~ label {
  width: 65px;
  height: 30px;
  position: fixed;
  right: 20px;
  top: 14px;
  border-radius: 15px;
  box-sizing: border-box;
  background-color: #45abe2;
  z-index: 999;
  transition: all 0.6s;
}
.header #switch ~ label p {
  width: 100%;
  height: 100%;
}
.header #switch ~ label span {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.6s transform;
  position: relative;
}
.header #switch ~ label span:before {
  content: "MENU";
  display: block;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-family: "CormorantGaramond-Regular";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  transition: all 0.6s;
}
.header #switch:checked ~ label {
  background-color: #fff;
}
.header #switch:checked ~ label span:before {
  content: "CLOSE";
  color: #45abe2;
}
.header #switch:checked ~ #NavWrap {
  display: block;
  opacity: 1;
  visibility: visible;
  right: 0;
}
.header #NavWrap {
  position: fixed;
  top: 0;
  right: -100%;
  width: 27%;
  min-width: 370px;
  transition: all 0.6s;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  background-color: #45abe2;
  color: #fff;
  font-family: "CormorantGaramond-Regular";
  border-radius: 0 0 0 50px;
}
@media screen and (max-width: 768px) {
  .header #NavWrap {
    width: 88%;
    min-width: unset;
    max-width: 370px;
  }
}
.header #NavWrap .menu-container {
  padding: 80px 15% 20px;
}
@media screen and (max-width: 768px) {
  .header #NavWrap .menu-container {
    padding: 80px 8% 20px;
  }
}
.header #NavWrap .menu-container li a {
  display: block;
  padding: 20px 0;
  border-bottom: solid 1px #fff;
  transition: all 0.3s;
  font-size: clamp(2.2rem, 2.5vw, 2.4rem);
  color: #fff;
}
.header #NavWrap .menu-container li a:hover {
  background: #fff;
  color: #45abe2;
  opacity: 1;
}
.header #NavWrap .menu-container li:first-of-type a {
  border-top: solid 1px #fff;
}
.header #NavWrap .sns-container {
  padding: 0 15% 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header #NavWrap .sns-container {
    padding: 0 8% 20px;
  }
}
.header #NavWrap .sns-container li a {
  border: solid 1px #fff;
  border-radius: 30px;
  padding: 5px 15px;
  transition: all 0.3s;
  color: #fff;
}
.header #NavWrap .sns-container li a:hover {
  background: #fff;
  color: #45abe2;
  opacity: 1;
}
.header #NavWrap .menu-language {
  padding: 0 15% 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header #NavWrap .menu-language li a {
  color: #fff;
  display: block;
  padding: 0 10px;
}

.main-visual h2.name {
  padding-top: 75px;
  font-size: clamp(14rem, 13vw, 16rem);
  font-family: "CormorantGaramond-Regular";
}
@media screen and (max-width: 768px) {
  .main-visual h2.name {
    font-size: clamp(8rem, 26vw, 10rem);
  }
}
.main-visual h2.name span {
  display: block;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .main-visual h2.name span {
    margin-bottom: 60px;
  }
}

.mv__image-wrapper {
  padding-top: 93px;
}
@media screen and (max-width: 768px) {
  .mv__image-wrapper {
    transform: scale(1.5);
  }
}

.main-visual-buffer {
  display: none;
}
@media screen and (max-width: 768px) {
  .main-visual-buffer {
    display: block;
    height: 350vh;
  }
}

.p-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .p-body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 200vw;
    /* 要素の横幅を200%に拡大 */
    margin: auto;
    position: relative;
    /* 位置調整を可能にする */
    left: 50%;
    /* 左端を画面の中央に */
    transform: translateX(-50%) !important;
    /* そのままでははみ出しているので中央に戻す */
  }
}
.p-body .main-item {
  margin: 0 1%;
  border-radius: 10px;
  overflow: hidden;
}
.p-body .main-item:first-of-type {
  margin-left: 0;
}
.p-body .main-item:last-of-type {
  margin-right: 0;
}
.p-body .item_left02 {
  margin-top: 110px;
}
.p-body .item_center {
  margin-top: 40px;
}
.p-body .item_right01 {
  margin-top: 110px;
}

.section-world_view {
  padding-top: 70px;
  padding-bottom: 230px;
}
@media screen and (max-width: 768px) {
  .section-world_view {
    padding-top: 0;
    padding-bottom: 120px;
  }
}
.section-world_view .world_view {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 150px;
  margin-bottom: 70px;
}
.section-world_view .world_view:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-world_view .world_view {
    margin-bottom: 70px;
    justify-content: center;
  }
  .section-world_view .world_view:nth-of-type(2) {
    flex-direction: column-reverse;
  }
}
.section-world_view .world_view .world_view_iamge {
  width: 41%;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .section-world_view .world_view .world_view_iamge {
    width: 100%;
    margin-bottom: 40px;
  }
}
.section-world_view .world_view .world_view_text {
  width: 50%;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .section-world_view .world_view .world_view_text {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.section-world_view .world_view .world_view_text p {
  position: relative;
}
.section-world_view .world_view .world_view_text p:first-child {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-bottom: 24px;
}
.section-world_view .world_view .world_view_text p:first-child:before {
  content: "";
  position: absolute;
  top: -350%;
  left: -45%;
  width: 548px;
  height: 400px;
  background: url(../image/world_view_deco.webp) center/cover, no-repeat;
  z-index: -1;
}
.section-world_view .world_view .world_view_text p:last-child {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-family: "CormorantGaramond-Regular";
}
.section-world_view .world_view .world_view_text p:last-child::after {
  content: "";
  position: absolute;
  bottom: -120%;
  right: 0;
  width: 512px;
  height: 188px;
  background: url(../image/world_view_deco02.webp) center/cover, no-repeat;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .section-world_view .world_view .world_view_text p:last-child::after {
    bottom: -100%;
    right: 0;
    width: 80%;
  }
}

.section-works {
  margin-top: -70px;
  padding: 194px 140px;
  background: url(../image/works_bg.webp) no-repeat;
  background-size: 100%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .section-works {
    padding: 120px 60px;
  }
}
@media screen and (max-width: 768px) {
  .section-works {
    padding: 120px 0;
  }
}
.section-works::before {
  content: "";
  position: absolute;
  top: 140px;
  left: -40px;
  width: 512px;
  height: 188px;
  background: url(../image/works_deco.webp) center/cover, no-repeat;
  z-index: -1;
}
.section-works::after {
  content: "";
  position: absolute;
  bottom: 45px;
  right: -140px;
  width: 622px;
  height: 418px;
  background: url(../image/works_deco02.webp) center/cover, no-repeat;
  z-index: -1;
}
.section-works h2 {
  font-family: "CormorantGaramond-Regular";
  font-size: clamp(5rem, 6vw, 10rem);
  text-align: center;
  margin-bottom: 43px;
}
.section-works .link-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "CormorantGaramond-Regular";
  margin-bottom: 44px;
  font-size: clamp(2.2rem, 2.5vw, 2.4rem);
}
@media screen and (max-width: 768px) {
  .section-works .link-btn-wrap {
    margin-bottom: 24px;
  }
}
.section-works .link-btn-wrap li a {
  display: block;
  padding: 0 30px;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-works .link-btn-wrap li a {
    font-size: 1.4rem;
  }
}
.section-works .link-btn-wrap li a:before {
  content: "/";
  position: absolute;
  right: 0;
  top: 0;
  color: #b7dee3;
}
.section-works .link-btn-wrap li a:hover {
  color: #45abe2;
}
.section-works .link-btn-wrap li:last-of-type a:before {
  display: none;
}
.section-works .works_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-works .works_wrap .works_item01 {
  width: 20%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section-works .works_wrap .works_item01 {
    width: 46%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border-radius: 10px;
  }
}
.section-works .works_wrap .works_item02 {
  width: 20%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section-works .works_wrap .works_item02 {
    width: 46%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border-radius: 10px;
  }
}
.section-works .works_wrap .works_item03 {
  width: 46%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section-works .works_wrap .works_item03 {
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border-radius: 10px;
  }
}
.section-works .works_wrap .works_item04 {
  width: 20%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section-works .works_wrap .works_item04 {
    width: 46%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border-radius: 10px;
  }
}
.section-works .works_wrap .works_item05 {
  width: 20%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section-works .works_wrap .works_item05 {
    width: 46%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border-radius: 10px;
  }
}
.section-works .works_wrap .works_item06 {
  width: 20%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section-works .works_wrap .works_item06 {
    width: 46%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border-radius: 10px;
  }
}
.section-works .works_wrap .works_item07 {
  width: 20%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section-works .works_wrap .works_item07 {
    width: 46%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border-radius: 10px;
  }
}
.section-works .view_more_btn {
  max-width: 212px;
  margin: auto;
}
.section-works .view_more_btn a {
  display: block;
  background-image: linear-gradient(90deg, rgb(69, 171, 226), rgb(183, 222, 227));
  color: #fff;
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-family: "CormorantGaramond-Regular";
  text-align: center;
  padding: 12px 0;
  border-radius: 40px;
  transition: all 0.3s;
}
.section-works .view_more_btn a:hover {
  background-image: linear-gradient(90deg, rgb(69, 171, 226), rgb(69, 171, 226));
  opacity: 1;
}

.section-message {
  position: relative;
  padding-bottom: 18.0555555556vw;
  background-image: linear-gradient(180deg, rgb(246, 250, 251), rgb(246, 250, 251), rgb(254, 254, 254));
}
@media screen and (max-width: 768px) {
  .section-message {
    padding: 130px 0 200px;
  }
}
.section-message:before {
  content: "";
  position: absolute;
  top: -25%;
  left: -25%;
  width: 622px;
  height: 418px;
  background: url(../image/message_deco01.webp) center/cover, no-repeat;
}
@media screen and (max-width: 768px) {
  .section-message:before {
    width: 50%;
  }
}
.section-message:after {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: rotate(-15deg) translate(-50%, -50%);
  width: 100%;
  height: 50%;
  background: url(../image/message_deco01.webp) center/contain, no-repeat;
}
.section-message h2 {
  font-family: "CormorantGaramond-Regular";
  font-size: clamp(5rem, 6vw, 10rem);
  margin-bottom: 43px;
  text-align: center;
}
.section-message .message_box {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.section-message .message_box p {
  margin-bottom: 3rem;
  text-align: center;
}
.section-message .message-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.section-message .message-img-wrap .image-area {
  position: absolute;
}
.section-message .message-img-wrap .image-area:first-of-type {
  width: 25%;
  top: 135px;
  left: -32px;
}
@media screen and (max-width: 768px) {
  .section-message .message-img-wrap .image-area:first-of-type {
    width: 35%;
    top: 35px;
    left: -22px;
  }
}
.section-message .message-img-wrap .image-area:nth-of-type(2) {
  width: 9.6%;
  top: 416px;
  left: 24%;
}
@media screen and (max-width: 768px) {
  .section-message .message-img-wrap .image-area:nth-of-type(2) {
    width: 15.6%;
    top: 467px;
    left: 5%;
  }
}
.section-message .message-img-wrap .image-area:nth-of-type(3) {
  width: 14.6%;
  top: 478px;
  left: 8.3%;
}
@media screen and (max-width: 768px) {
  .section-message .message-img-wrap .image-area:nth-of-type(3) {
    width: 24.6%;
    top: unset;
    left: 4.3%;
    bottom: 80px;
  }
}
.section-message .message-img-wrap .image-area:nth-of-type(4) {
  width: 14.6%;
  top: 83px;
  right: 8.3%;
}
@media screen and (max-width: 768px) {
  .section-message .message-img-wrap .image-area:nth-of-type(4) {
    width: 24.6%;
    top: -30px;
    right: 4.3%;
  }
}
.section-message .message-img-wrap .image-area:nth-of-type(5) {
  width: 9.6%;
  top: 276px;
  right: 24%;
}
@media screen and (max-width: 768px) {
  .section-message .message-img-wrap .image-area:nth-of-type(5) {
    width: 15.6%;
    top: 433px;
    right: 7%;
  }
}
.section-message .message-img-wrap .image-area:nth-of-type(6) {
  width: 25%;
  top: 516px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .section-message .message-img-wrap .image-area:nth-of-type(6) {
    width: 35%;
    top: unset;
    bottom: 140px;
  }
}

.section-profile {
  background: #fefefe;
  position: relative;
}
.section-profile:before {
  content: "";
  position: absolute;
  top: -90px;
  right: 0;
  width: 50%;
  height: 418px;
  background: url(../image/profile_deco01.webp) center/cover, no-repeat;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .section-profile:before {
    width: 80%;
  }
}
.section-profile .profile_wrap {
  position: relative;
  padding: 120px 0 176px 0;
}
@media screen and (max-width: 768px) {
  .section-profile .profile_wrap {
    padding: 160px 15px 0;
  }
}
.section-profile .profile_wrap::before {
  content: "";
  background-image: linear-gradient(180deg, rgb(246, 250, 251), rgb(246, 250, 251), rgb(254, 254, 254));
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50px 0 0 0;
}
.section-profile .profile_wrap .profile_box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}
.section-profile .profile_wrap .profile_box .inner_profile_box {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .section-profile .profile_wrap .profile_box .inner_profile_box {
    width: 100%;
  }
}
.section-profile .profile_wrap .profile_box .inner_profile_box h2 {
  font-family: "CormorantGaramond-Regular";
  font-size: clamp(5rem, 6vw, 10rem);
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .section-profile .profile_wrap .profile_box .inner_profile_box h2 {
    margin-bottom: 25px;
  }
}
.section-profile .profile_wrap .profile_box .inner_profile_box .name {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: solid 1px #45abe2;
}
.section-profile .profile_wrap .profile_box .inner_profile_box dl {
  display: flex;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-bottom: 16px;
  line-height: 1.6;
}
.section-profile .profile_wrap .profile_box .inner_profile_box dl dt {
  width: 16%;
  font-weight: normal;
}
.section-profile .profile_wrap .profile_box .inner_profile_box dl dd {
  width: 84%;
}
.section-profile .profile-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .section-profile .profile-img-wrap {
    z-index: 2;
  }
}
.section-profile .profile-img-wrap .image-area {
  position: absolute;
}
.section-profile .profile-img-wrap .image-area:first-of-type {
  width: 13.8%;
  top: 152px;
  left: 15%;
}
@media screen and (max-width: 768px) {
  .section-profile .profile-img-wrap .image-area:first-of-type {
    width: 28.8%;
    top: -5%;
    left: unset;
    right: 10%;
    max-width: 108px;
  }
}
.section-profile .profile-img-wrap .image-area:nth-of-type(2) {
  width: 13.8%;
  top: 369px;
  left: 24.7%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .section-profile .profile-img-wrap .image-area:nth-of-type(2) {
    width: 18.8%;
    top: 16%;
    left: unset;
    right: 0;
    z-index: -1;
    max-width: 70px;
  }
}
.section-profile .profile-img-wrap .image-area:nth-of-type(3) {
  width: 14.6%;
  top: 426px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .section-profile .profile-img-wrap .image-area:nth-of-type(3) {
    width: 27.6%;
    top: 22%;
    left: unset;
    right: 25%;
    max-width: 103px;
  }
}

.infinity-container {
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .infinity-container {
    padding: 0 10vw;
    margin-top: 80px;
  }
}

.infinity-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 10px;
}

.infinity-slide {
  flex: 0 0 auto;
  width: calc((100vw - 100px) / 6); /* ← 画面幅基準にしてガッチリ */
  transition: transform 0.3s;
}
@media screen and (max-width: 992px) {
  .infinity-slide {
    width: calc((100vw - 60px) / 4);
  }
}
@media screen and (max-width: 768px) {
  .infinity-slide {
    width: calc((100vw - 20px) / 3);
  }
}

.infinity-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.footer {
  color: #fff;
  background-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(183, 222, 227), rgb(69, 171, 226));
  padding: 140px 15px 30px 15px;
}
.footer .contact_wrap {
  background-color: #eef6f9;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3f1d01;
  padding: 6% 6.6%;
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .footer .contact_wrap {
    flex-wrap: wrap;
  }
}
.footer .contact_wrap .contact_item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer .contact_wrap .contact_item {
    width: 100%;
    text-align: center;
  }
}
.footer .contact_wrap .contact_item h2 {
  font-family: "CormorantGaramond-Regular";
  font-size: clamp(5rem, 6vw, 10rem);
  margin-bottom: 34px;
}
@media screen and (max-width: 768px) {
  .footer .contact_wrap .contact_item h2 {
    margin-bottom: 12px;
  }
}
.footer .contact_wrap .contact_item p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
}
.footer .contact_wrap .sns_wrap {
  display: flex;
  flex-direction: column;
  width: 24%;
}
@media screen and (max-width: 768px) {
  .footer .contact_wrap .sns_wrap {
    margin-top: 20px;
    width: 100%;
  }
}
.footer .contact_wrap .sns_wrap .sns_btn a {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  font-family: "CormorantGaramond-Regular";
  transition: all 0.3s;
  background-image: linear-gradient(90deg, #fff, #fff);
}
.footer .contact_wrap .sns_wrap .sns_btn a:hover {
  opacity: 1;
  color: #fff;
  background-image: linear-gradient(90deg, rgb(69, 171, 226), rgb(183, 222, 227));
}
.footer .contact_wrap .sns_wrap .sns_btn:first-of-type a {
  margin-bottom: 20px;
}
.footer .contact_wrap .sns_wrap .sns_btn a {
  display: block;
  background-color: #fff;
  font-size: clamp(1.8rem, 2vw, 2rem);
  text-align: center;
  padding: 15px 0;
  position: relative;
}
.footer .contact_wrap .sns_wrap .sns_btn a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #3f1d01;
  border-right: solid 1px #3f1d01;
  top: 50%;
  right: 43px;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .footer .contact_wrap .sns_wrap .sns_btn a::after {
    right: 33px;
  }
}
.footer .contact_wrap .sns_wrap .sns_btn a:hover:after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  right: 33px;
}
@media screen and (max-width: 1200px) {
  .footer .contact_wrap .sns_wrap .sns_btn a:hover:after {
    right: 23px;
  }
}
.footer h3 {
  font-family: "CormorantGaramond-Regular";
  font-size: clamp(3rem, 3.3vw, 4rem);
  text-align: center;
  margin-bottom: 26px;
}
.footer .footer_menu {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.footer .footer_menu li {
  margin-right: 16px;
}
.footer .footer_menu li:last-child {
  margin-right: 0;
}
.footer .footer_menu li a {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  color: #fff;
  font-family: "CormorantGaramond-Regular";
}
.footer .language_menu {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.footer .language_menu li {
  position: relative;
  font-size: 1.4rem;
}
.footer .language_menu li:first-child {
  margin-right: 16px;
}
.footer .language_menu li:first-child::after {
  position: absolute;
  content: "/";
  top: 0;
  right: -10px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  color: #fff;
}
.footer .language_menu li a {
  color: #fff;
}
.footer small {
  display: block;
  text-align: center;
  font-family: "CormorantGaramond-Regular";
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.section-mv {
  font-family: "CormorantGaramond-Regular";
  padding: 94px 0 30px;
  background: linear-gradient(#eef6f9, #fff);
}
.section-mv h2 {
  font-size: clamp(8rem, 8.3vw, 10rem);
  margin-bottom: 75px;
}

.section-all {
  background-color: #fff;
  z-index: 9;
}
.section-all .tabs {
  display: flex;
  flex-wrap: wrap;
}
.section-all .tab_label {
  display: block;
  width: 136px;
  padding: 8px 0;
  margin-right: 10px;
  text-align: center;
  background: #f6fafb;
  border-radius: 30px;
  color: #45abe2;
  font-family: "CormorantGaramond-Regular";
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .section-all .tab_label {
    width: calc((100% - 20px) / 3);
  }
}
.section-all .tab_label:last-of-type {
  margin-right: 0;
}
.section-all .tab_label:hover {
  background: #daeef8;
  color: #45abe2;
}
.section-all .tab_content {
  flex: 100%;
  display: none;
  overflow: hidden;
  padding-top: 30px;
}
.section-all input[name=tab_switch] {
  display: none;
}
.section-all .tabs input:checked + .tab_label {
  color: #fff;
  background: linear-gradient(90deg, rgb(69, 171, 226), rgb(183, 222, 227));
}
.section-all #tab01:checked ~ #tab01_content,
.section-all #tab02:checked ~ #tab02_content,
.section-all #tab03:checked ~ #tab03_content {
  display: block;
}
.section-all .column03 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.section-all .column03 li {
  margin-right: 6%;
  margin-bottom: 78px;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .section-all .column03 li {
    width: 44%;
  }
}
.section-all .column03 li:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .section-all .column03 li:nth-of-type(2n-1) {
    margin-right: 0;
  }
}
.section-all .column03 li.large-area {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .section-all .column03 li.large-area {
    width: 100%;
    margin-right: 0;
  }
}
.section-all .column03 li .image-area {
  margin-bottom: 9px;
  cursor: pointer;
}
.section-all .column03 li h3 {
  margin-bottom: 9px;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.section-all .column03 li p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #45abe2;
}
.section-all .column04 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .section-all .column04 {
    justify-content: space-between;
  }
}
.section-all .column04 li {
  margin-right: 6.66%;
  margin-bottom: 78px;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .section-all .column04 li {
    width: 44%;
  }
}
@media screen and (max-width: 768px) {
  .section-all .column04 li:nth-of-type(2n) {
    margin-right: 0;
  }
}
.section-all .column04 li:nth-of-type(4n) {
  margin-right: 0;
}
.section-all .column04 li .image-area {
  margin-bottom: 9px;
  cursor: pointer;
}
.section-all .column04 li h3 {
  margin-bottom: 9px;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.section-all .column04 li p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #45abe2;
}

.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img-modal-bg {
  position: absolute;
  background-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(183, 222, 227), rgb(69, 171, 226));
  width: 100%;
  height: 100%;
}

.img-modal-content {
  position: relative;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 90%;
  text-align: center;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .img-modal-content {
    max-width: 80%;
  }
}

.img-modal-content img {
  max-width: 95%;
  height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}

.img-modal-close {
  position: absolute;
  top: -20px;
  right: -20px;
  color: #45abe2;
  font-size: 40px;
  cursor: pointer;
  border-radius: 50%;
  padding: 4px 10px;
}
@media screen and (max-width: 768px) {
  .img-modal-close {
    font-size: 30px;
  }
}

/* ← → のボタン（シェイプ） */
.img-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 10001;
}

.img-modal-arrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-top: 2px solid #45abe2;
  border-right: 2px solid #45abe2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .img-modal-arrow::before {
    width: 20px;
    height: 20px;
  }
}

.img-modal-arrow.prev {
  left: -24px;
}
@media screen and (max-width: 768px) {
  .img-modal-arrow.prev {
    left: -34px;
  }
}

.img-modal-arrow.prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.img-modal-arrow.next {
  right: -24px;
}
@media screen and (max-width: 768px) {
  .img-modal-arrow.next {
    right: -34px;
  }
}

.img-modal-arrow.next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}/*# sourceMappingURL=page.css.map */