@charset "UTF-8";
.w90 {
  width: 90%;
  margin: 0 auto;
}

.sp-none {
  display: none;
}
@media only screen and (min-width: 769px) {
  .sp-none {
    display: block;
  }
}

a {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

html {
  overflow-x: hidden;
  color: #0f0f0f;
}

section {
  padding: 40px 0;
}
@media only screen and (min-width: 769px) {
  section {
    padding: 100px 0;
  }
}

img {
  width: 100%;
}

.js-scroll {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.js-scroll.fixed {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, transform 1s;
  transition: opacity 1.5s, transform 1s, -webkit-transform 1s;
}

.fade.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/* color
***********************************************************/
.redTxt {
  color: #d80000;
}

.bgRed {
  background: #d80000;
  color: #fff;
}

.bgOrange {
  background: #ff7d00;
  color: #fff;
}

.borderOrange {
  border: 2px solid #ff7d00;
}

.bgGray {
  background: #878787;
  color: #fff;
}

.bGBlue {
  background: #19a8df;
  color: #fff;
}

.borderBlue {
  border: 2px solid #19a8df;
}

.bgDarkOrange {
  background: #e94600;
  color: #fff;
}

.borderDarkOrange {
  border: 2px solid #e94600;
}

/* header
***********************************************************/
/* ヘッダーのスタイル */
.header {
  position: fixed;
  top: 0;
  z-index: 4;
  width: 100%;
  background-color: #fff;
}

.header_inner {
  max-width: 1920px;
  margin: 10px auto;
  padding: 0 20px;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 769px) {
  .header_inner {
    margin: 20px auto;
  }
}

.header_inner-logo {
  width: 120px;
}

.header_inner-logo img {
  width: 60%;
  height: auto;
}
@media only screen and (min-width: 769px) {
  .header_inner-logo img {
    width: 70%;
  }
}

.header_inner-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ハンバーガーメニューのスタイル */
.btn-trigger {
  position: relative;
  width: 50px;
  height: 14px;
  cursor: pointer;
  margin-right: 20px; /* 右側の余白を追加 */
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #333;
  border-radius: 4px;
}
@media only screen and (min-width: 769px) {
  .btn-trigger span {
    height: 4px;
  }
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 10px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: -10px;
}

#btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

#btn01.active span:nth-of-type(2) {
  opacity: 0;
}

#btn01.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

/* スライドメニューのスタイル */
.header_inner-menu {
  position: fixed;
  top: 80px;
  right: 100%;
  width: 100%;
  height: calc(100vh - 0px);
  background-color: #f0f0f0;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
  z-index: 3;
}

.header_inner-menu.active {
  right: 0;
}

.header_inner-menu ul {
  list-style: none;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 800px;
  margin: 80px auto;
}

.header_inner-menu ul li {
  margin-bottom: 15px;
  width: 100%;
}

.header_inner-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
  .header_inner {
    padding: 0 15px;
    height: 60px;
  }
  .header_inner-logo {
    width: 100px;
  }
  .header_inner-right::before {
    height: 60px;
  }
  .header_inner-menu {
    height: calc(100vh - 60px);
  }
}
/* ttl
***********************************************************/
.ttl {
  text-align: center;
  position: relative;
  margin: auto;
  color: #e198ad;
  font-family: "optima";
  font-weight: 400;
  font-size: 20px;
  font-size: 2rem;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 769px) {
  .ttl {
    font-size: 43px;
    font-size: 4.3rem;
  }
}
.ttl span {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  color: #6aafb3;
}
@media only screen and (min-width: 769px) {
  .ttl span {
    font-size: 50px;
    font-size: 5rem;
  }
}
.ttl span:before, .ttl span:after {
  content: "";
}
.ttl.leftBorder:before {
  content: "";
  position: absolute;
  left: 0;
  top: 39px;
  width: 85vw;
  border-bottom: 1px solid #6aafb3;
}
@media only screen and (min-width: 769px) {
  .ttl.leftBorder:before {
    top: 80px;
  }
}
.ttl.rightBorder:before {
  content: "";
  position: absolute;
  right: 0;
  top: 39px;
  width: 85vw;
  border-bottom: 1px solid #6aafb3;
}
@media only screen and (min-width: 769px) {
  .ttl.rightBorder:before {
    top: 90px;
  }
}

/* FV
***********************************************************/
.Fv {
  margin-top: 80px;
}
.Fv_inner-box {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.Fv_inner-box-img1 {
  width: 28%;
  margin-left: 3%;
}
.Fv_inner-box-img2 {
  width: 67%;
  position: relative;
}
.Fv_inner-box-img2:after {
  content: "";
  background: url(../img/fv_bottom.jpg) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  right: 0;
  height: 16vw;
  bottom: -12vw;
  width: 58vw;
}
@media only screen and (min-width: 769px) {
  .Fv_inner-box-img2:after {
    width: 49vw;
    height: 11vw;
    bottom: -6vw;
  }
}

/* Merit
***********************************************************/
.Merit {
  padding: 70% 0 0;
}
@media only screen and (min-width: 769px) {
  .Merit {
    padding: 25% 0 15%;
  }
}
.Merit_inner-list {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.Merit_inner-list li {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .Merit_inner-list li {
    width: 46%;
  }
}
.Merit_inner-list li:nth-of-type(2) {
  padding: 0 5%;
}
@media only screen and (min-width: 769px) {
  .Merit_inner-list li:nth-of-type(2) {
    padding: 0 2%;
  }
}
.Merit_inner-list li h2 {
  margin: 5% auto;
}
.Merit_inner-list li h2 span {
  font-size: clamp(16px, 4.2vw, 36px);
  color: #e198ad;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(61%, transparent), color-stop(59%, rgba(225, 152, 173, 0.4)));
  background: -webkit-linear-gradient(transparent 61%, rgba(225, 152, 173, 0.4) 59%);
  background: linear-gradient(transparent 61%, rgba(225, 152, 173, 0.4) 59%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.Merit_inner-list li h3 {
  color: #6aafb3;
  text-align: center;
  font-size: clamp(18px, 4.2vw, 42px);
  margin: 0 auto 20px;
}
.Merit_inner-list li ol {
  counter-reset: number 0;
}
.Merit_inner-list li ol li {
  width: 100%;
  font-size: clamp(16px, 4.2vw, 28px);
  margin: 0px auto 10px;
}
.Merit_inner-list li ol li:nth-of-type(2) {
  padding: 0;
}
.Merit_inner-list li ol li:before {
  content: counter(number) " ";
  counter-increment: number 1;
  color: #6aafb3;
  font-family: "Optima";
  font-size: 22px;
  line-height: 22px;
  font-weight: 600;
}
@media only screen and (min-width: 769px) {
  .Merit_inner-list li ol li:before {
    font-size: 50px;
    padding-right: 10px;
  }
}

/* Flow
***********************************************************/
.Flow_inner p {
  color: #6aafb3;
  text-align: center;
  margin: 20px auto 0;
}
.Flow_inner picture {
  display: block;
  width: 70%;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  .Flow_inner picture {
    width: 100%;
  }
}

/* Plan
***********************************************************/
.Plan_inner-block {
  margin-top: 60px;
}
@media only screen and (min-width: 769px) {
  .Plan_inner-block {
    margin-top: 120px;
  }
}
.Plan_inner-block-txt {
  margin: 0 auto 30px;
  text-align: center;
}
.Plan_inner-block-list {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
.Plan_inner-block-list li {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .Plan_inner-block-list li {
    width: 32%;
  }
}
@media only screen and (min-width: 992px) {
  .Plan_inner-block-list li {
    width: 48%;
  }
}
@media only screen and (min-width: 1200px) {
  .Plan_inner-block-list li {
    width: 32%;
  }
}
.Plan_inner-block-list li h3 {
  font-size: clamp(16px, 4.2vw, 28px);
  background: #6aafb3;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
.Plan_inner-block-list .img {
  position: relative;
  margin-top: 80px;
}
.Plan_inner-block-list .img span {
  padding: 10px;
  position: absolute;
  top: -8%;
  background: #6aafb3;
  color: #fff;
  font-size: clamp(16px, 4.2vw, 20px);
}

/* Campaign
***********************************************************/
.Campaign_inner-list {
  gap: 20px;
  margin-top: 60px;
}
@media only screen and (min-width: 769px) {
  .Campaign_inner-list {
    margin-top: 120px;
  }
}
.Campaign_inner-list li {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .Campaign_inner-list li {
    width: 48%;
  }
}

/* Report
***********************************************************/
.Report_inner-list-item {
  padding: 0 5%;
}
.Report_inner-list-item-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.Report_inner-list-item-flex picture {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 769px) {
  .Report_inner-list-item-flex picture {
    width: 49%;
  }
}
.Report_inner-list-item-flex .txtBox {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 769px) {
  .Report_inner-list-item-flex .txtBox {
    width: 49%;
  }
}
.Report_inner-list-item-flex .txtBox h4 {
  font-size: clamp(16px, 4.2vw, 40px);
  color: #6aafb3;
  border-bottom: 1px solid #6aafb3;
  padding: 20px 0;
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .Report_inner-list-item-flex .txtBox h4 {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
.Report_inner-list-item-flex .txtBox p {
  font-size: clamp(16px, 4.2vw, 24px);
}
.Report_inner .swiper {
  margin-top: 60px;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .Report_inner .swiper {
    margin-top: 120px;
  }
}
.Report_inner .swiper .swiper-button-prev, .Report_inner .swiper .swiper-rtl .swiper-button-next,
.Report_inner .swiper .swiper-button-next, .Report_inner .swiper .swiper-rtl .swiper-button-prev {
  top: 17%;
}
@media only screen and (min-width: 769px) {
  .Report_inner .swiper .swiper-button-prev, .Report_inner .swiper .swiper-rtl .swiper-button-next,
  .Report_inner .swiper .swiper-button-next, .Report_inner .swiper .swiper-rtl .swiper-button-prev {
    top: 50%;
  }
}
/* Hall
***********************************************************/
.Hall {
  padding-bottom: 0 !important;
}
.Hall_inner-list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media only screen and (min-width: 769px) {
  .Hall_inner-list {
    margin-bottom: 120px;
    margin-top: 120px;
  }
}
.Hall_inner-list li h3 {
  color: #6aafb3;
  font-size: clamp(16px, 4.2vw, 36px);
  text-align: center;
  margin: 0 0 50px;
}
.Hall_inner-list li p {
  font-size: clamp(16px, 4.2vw, 28px);
}
.Hall_inner-list .img {
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .Hall_inner-list .img {
    width: 58%;
  }
}
.Hall_inner-list .txt {
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .Hall_inner-list .txt {
    width: 40%;
  }
}
.Hall_inner-detailList {
  justify-self: start;
  gap: 20px;
}
@media only screen and (min-width: 769px) {
  .Hall_inner-detailList {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}
.Hall_inner-detailList li {
  width: 47%;
  font-size: clamp(16px, 4.2vw, 18px);
  text-align: center;
  background: #6aafb3;
  color: #fff;
  border-radius: 40px;
  padding: 17px;
}
@media only screen and (min-width: 769px) {
  .Hall_inner-detailList li {
    width: 23%;
    font-size: clamp(16px, 4.2vw, 35px);
  }
}
@media only screen and (min-width: 1400px) {
  .Hall_inner-detailList li {
    width: 20%;
  }
}
.Hall_inner .swiper-hall {
  position: relative;
}
.Hall_inner .swiper-hall .Hall_inner-list-item-img {
  position: relative;
}
.Hall_inner .swiper-hall .Hall_inner-list-item-img .Hall_inner-list-item-img-span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.Hall_inner .swiper-hall .Hall_inner-list-item-img .Hall_inner-list-item-img-span .span1 {
  background: #6aafb3;
  color: #fff;
  font-size: clamp(16px, 4.2vw, 24px);
  padding: 2px 15px;
}
.Hall_inner .swiper-hall .Hall_inner-list-item-img .Hall_inner-list-item-img-span .span2 {
  background: #fff;
  color: #6aafb3;
  font-size: clamp(16px, 4.2vw, 24px);
  padding: 2px 15px;
}
.Hall .swiper-hall {
  max-width: 1450px;
  margin: 0 auto;
  overflow: hidden;
}
.Hall .swiper-wrapper {
  margin: 60px 0 !important;
}
@media only screen and (min-width: 769px) {
  .Hall .swiper-wrapper {
    margin: 120px 0 !important;
  }
}

/* Contact
***********************************************************/
.Contact_inner-form {
  margin-top: 60px;
}
@media only screen and (min-width: 769px) {
  .Contact_inner-form {
    margin-top: 120px;
  }
}
.Contact_inner-form .form-group {
  max-width: 1400px;
  margin: 0 auto 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.Contact_inner-form label {
  color: #4a9;
  font-size: clamp(16px, 4.2vw, 20px);
  width: 150px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.Contact_inner-form .input-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}
.Contact_inner-form input,
.Contact_inner-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #4a9;
  padding: 8px 0;
  outline: none;
  font-size: clamp(16px, 4.2vw, 20px);
}
.Contact_inner-form input:focus,
.Contact_inner-form textarea:focus {
  border-bottom-width: 2px;
}
.Contact_inner-form textarea {
  min-height: 100px;
  resize: vertical;
}
.Contact_inner-form .submit-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
}
.Contact_inner-form button {
  background-color: #4a9;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: clamp(16px, 4.2vw, 20px);
}
.Contact_inner-form button:hover {
  background-color: #3a8;
}

/* Entry
***********************************************************/
.Entry {
  padding-top: 0 !important;
}
@media only screen and (min-width: 769px) {
  .Entry {
    padding-top: 0 !important;
  }
}
.btn {
  width: 90%;
  margin: 20px auto;
}
@media only screen and (min-width: 769px) {
  .btn {
    margin: 40px auto 50px;
  }
}
.btn a {
  background: #06c755;
  color: #fff;
  padding: 0.5em 0;
  display: block;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 15px;
  max-width: 400px;
  margin: auto;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .btn a {
    max-width: 1020px;
  }
}
.btn a span {
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (min-width: 769px) {
  .btn a span {
    font-size: 44px;
    font-size: 4.4rem;
  }
}
.btn a span::before {
  content: "";
  background: url(../img/line.svg) no-repeat;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  margin: -10px 0 -14px 0;
}
@media only screen and (min-width: 769px) {
  .btn a span::before {
    width: 85px;
    height: 85px;
    position: relative;
    left: -7px;
    margin: 0px 0 -26px 0px;
  }
}
/* footer
***********************************************************/
.footer {
  background: #c8dde3;
  padding: 12% 5%;
}
.footer_inner {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
.footer_inner .flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_inner img {
  width: 30%;
  margin-left: 0;
  margin-bottom: 20px;
}
.footer_inner iframe {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .footer_inner iframe {
    height: 530px;
  }
}
.footer_inner p,
.footer_inner a {
  color: #2f97a1;
  font-size: clamp(16px, 4.2vw, 20px);
}
.footer_inner .footer_inner-box-logo {
  width: 100%;
  margin-bottom: 20px;
}
@media only screen and (min-width: 769px) {
  .footer_inner .footer_inner-box-logo {
    width: 40%;
    margin-bottom: 0px;
  }
}
.footer_inner .footer_inner-box-logo .insta {
  display: block;
}
.footer_inner .footer_inner-box-logo .insta:before {
  content: "";
  background: url(../img/insta.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 7px 0 0;
}
@media only screen and (min-width: 769px) {
  .footer_inner .footer_inner-box-logo .insta:before {
    width: 25px;
    height: 25px;
  }
}
.footer_inner .footer_inner-box-map {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .footer_inner .footer_inner-box-map {
    width: 60%;
  }
}
.footer_inner .copy {
  color: #fff;
  font-size: 10px;
  font-size: 1rem;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .footer_inner .copy {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.footer-fixed {
  width: 15%;
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 2;
}
@media only screen and (min-width: 769px) {
  .footer-fixed {
    width: 4%;
  }
}

.bnr {
  position: relative;
}
.bnr_inner-box {
  display: block;
  position: absolute;
  top: 9vw;
  right: 0;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .bnr_inner-box {
    width: 40%;
  }
}/*# sourceMappingURL=style.css.map */