@charset "UTF-8";
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
  position: relative;
  background: #C7698E;
}
.news p {
  text-align: left;
  font-size: clamp(1.5rem, 1.308rem + 0.41vw, 1.8rem);
  margin-right: 40px;
  color: #fff;
}
.news p span {
  margin-right: 15px;
}
.news p a {
  color: #fff;
  display: inline-table;
}
.news > p {
  position: absolute;
  right: 0;
  bottom: 20px;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

/*------------------------------------------------------------
共通
------------------------------------------------------------*/
HTML CSS JSResult Skip Results Iframe EDIT ON .menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #333;
  color: #fff;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #555;
}

.menu__item {
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  text-align: center;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*----------------------------
* アニメーション部分
*----------------------------*/
/* アニメーション前のメニューの状態 */
.menu {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* アニメーション後のメニューの状態 */
.menu.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  z-index: 100;
  width: 100%;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Serif JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(38, 74, 148, 0.47)), to(rgba(199, 105, 142, 0.47)));
  background: linear-gradient(to bottom, rgba(38, 74, 148, 0.47), rgba(199, 105, 142, 0.47));
  color: #333;
}

img {
  vertical-align: bottom;
  border: none;
}

li {
  list-style: none;
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 95%;
  max-width: 960px;
  margin: 0 auto;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.head {
  top: 0;
  width: 100%;
  z-index: 11;
  position: fixed;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: white;
}
.head .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head .inner a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.head .inner a:hover {
  opacity: 0.5;
}
.head .inner img {
  height: 70px;
}

.pg_ttl {
  color: #C7698E;
  font-size: clamp(1.8rem, 1.415rem + 0.82vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 210/83;
  margin-top: 96px;
  background-image: url(../images/mv_bg.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 15.625vw;
    background-image: url(../images/mv_bg_sp.jpg);
    aspect-ratio: 47/40;
    background-size: 100% auto;
  }
}
.mv .inner {
  max-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv .inner {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap {
    padding-top: 23vw;
  }
}
.mv .inner .wrap .heading {
  color: #c7698e;
  font-size: 90px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1400px) {
  .mv .inner .wrap .heading {
    font-size: 6.429vw;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .heading {
    font-size: 7.1vw;
    margin-right: 3vw;
  }
}
.mv .inner .wrap .heading small {
  display: block;
  margin-top: 30px;
  font-size: 5.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1400px) {
  .mv .inner .wrap .heading small {
    margin-top: 2.143vw;
    font-size: 3.9vw;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .heading small {
    margin-top: 4vw;
    font-size: 6vw;
  }
}
.mv .inner .wrap .heading br {
  display: none;
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .heading br {
    display: block;
  }
}
.mv .inner .wrap .text {
  color: #0f4a93;
  margin-top: 90px;
  font-size: 4.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1580px) {
  .mv .inner .wrap .text {
    line-height: 1.2;
  }
}
@media screen and (max-width: 1560px) {
  .mv .inner .wrap .text {
    margin-top: 4vw;
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .text {
    font-size: 3.8vw;
    line-height: 1.67;
    margin-top: 8vw;
  }
}
.mv .inner .wrap .text br {
  display: none;
}
@media screen and (max-width: 1580px) {
  .mv .inner .wrap .text br.tab {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .text br {
    display: block;
  }
}
.mv .inner .wrap .links {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 40px;
  right: 8px;
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .links {
    /*    
      position: relative;
      top:inherit;
      right: inherit;
      display: flex;
      justify-content: center;
      margin-top: 10.667vw;
    */
    right: 1vw;
    top: 9vw;
  }
}
.mv .inner .wrap .links li {
  position: relative;
  width: 128px;
  height: 128px;
  background-color: #0f4a93;
  border-radius: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 16px;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 1350px) {
  .mv .inner .wrap .links li {
    width: 9.481vw;
    height: 9.481vw;
    margin-top: 1.185vw;
    font-size: 1.185vw;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .links li {
    margin-top: 0;
    width: 18vw;
    height: 18vw;
    font-size: 2.8vw;
  }
  .mv .inner .wrap .links li + li {
    margin-top: 2vw;
  }
}
.mv .inner .wrap .links li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  text-decoration: none;
}
.mv .inner .wrap .links li a::after {
  content: "";
  position: absolute;
  bottom: 17px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1350px) {
  .mv .inner .wrap .links li a::after {
    bottom: 1.259vw;
    width: 0.667vw;
    height: 0.667vw;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .links li a::after {
    width: 1.733vw;
    height: 1.733vw;
    bottom: 3vw;
  }
}
.mv .inner .wrap .links li a .pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .links li a .pc {
    display: none;
  }
}
.mv .inner .wrap .links li a .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .links li a .sp {
    display: block;
  }
}
.mv .inner .wrap .links li:first-child {
  margin-top: 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 1350px) {
  .mv .inner .wrap .links li:first-child {
    font-size: 1.481vw;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .links li:first-child {
    font-size: 2.8vw;
    padding-bottom: 1.8vw;
  }
}
@media screen and (min-width: 769px) {
  .mv .inner .wrap .links li:last-child a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 0.8;
  }
}
.mv .inner .wrap .links li:hover {
  opacity: 0.7;
}
.mv .inner .wrap .countdown {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 280px;
  height: 180px;
  background-image: url(../images/countdown_initial_bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 20px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
@media screen and (max-width: 1350px) {
  .mv .inner .wrap .countdown {
    bottom: 1.778vw;
    left: 1.778vw;
    width: 20.741vw;
    height: 13.333vw;
    padding: 1.481vw;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .countdown {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 27.21vw;
    padding: 9.6vw 0 0;
    background-image: url(../images/countdown_initial_bg_sp.png);
  }
}
.mv .inner .wrap .countdown .ttl {
  position: relative;
  color: #0f4a93;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1350px) {
  .mv .inner .wrap .countdown .ttl {
    font-size: 1.704vw;
    margin-bottom: 1.481vw;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .countdown .ttl {
    font-size: 4vw;
    margin-bottom: 1vw;
  }
}
.mv .inner .wrap .countdown .ttl sup {
  font-size: 50%;
}
.mv .inner .wrap .countdown .day {
  color: #c7698e;
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .countdown .day {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.mv .inner .wrap .countdown .day span {
  display: block;
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1350px) {
  .mv .inner .wrap .countdown .day span {
    font-size: 4.741vw;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .countdown .day span {
    font-size: 10vw;
  }
}
.mv .inner .wrap .countdown .day small {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
}
@media screen and (max-width: 1350px) {
  .mv .inner .wrap .countdown .day small {
    font-size: 1.852vw;
  }
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .countdown .day small {
    font-size: 5.2vw;
    margin-left: 2vw;
  }
}
.mv .inner .wrap .countdown.fixed {
  position: fixed;
  z-index: 4;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: solid 1px #d7d7d7;
  background-image: url(../images/countdown_bg.jpg);
}
@media screen and (max-width: 768px) {
  .mv .inner .wrap .countdown.fixed {
    border: 0;
    background-image: url(../images/countdown_bg_sp.png);
  }
}

/*------------------------------------------------------------
contents
------------------------------------------------------------*/
#slider {
  background-color: #fef8f8;
  padding: 80px 0;
}
@media screen and (max-width: 1180px) {
  #slider .inner {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  #slider .inner {
    width: 100%;
    overflow: hidden;
  }
}
#slider .inner .swiper {
  position: relative;
  overflow: visible;
}
#slider .inner .swiper .swiper-container {
  overflow: hidden;
}
#slider .inner .swiper .swiper-wrapper .swiper-slide {
  border: solid 1px #d0d0d0;
  background-color: #ffffff;
  height: auto;
}
#slider .inner .swiper .swiper-wrapper .swiper-slide a {
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #000000;
}
#slider .inner .swiper .swiper-wrapper .swiper-slide a .pic {
  aspect-ratio: 74/47;
  background-color: #fef8f8;
}
#slider .inner .swiper .swiper-wrapper .swiper-slide a .pic.no-img {
  position: relative;
}
#slider .inner .swiper .swiper-wrapper .swiper-slide a .pic.no-img span {
  color: #0f4a93;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1180px) {
  #slider .inner .swiper .swiper-wrapper .swiper-slide a .pic.no-img span {
    display: inline-block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #slider .inner .swiper .swiper-wrapper .swiper-slide a .pic.no-img span {
    font-size: 6vw;
  }
}
#slider .inner .swiper .swiper-wrapper .swiper-slide a .pic.no-img span b {
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #slider .inner .swiper .swiper-wrapper .swiper-slide a .pic.no-img span b {
    font-size: 3.3vw;
  }
}
#slider .inner .swiper .swiper-wrapper .swiper-slide a .wrap {
  padding: 20px 20px 30px;
}
@media screen and (max-width: 768px) {
  #slider .inner .swiper .swiper-wrapper .swiper-slide a .wrap {
    padding: 4vw 2.667vw 6.667vw;
  }
}
#slider .inner .swiper .swiper-wrapper .swiper-slide a .wrap p {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #slider .inner .swiper .swiper-wrapper .swiper-slide a .wrap p {
    font-size: 2.933vw;
  }
}
#slider .inner .swiper .swiper-wrapper .swiper-slide a:hover {
  opacity: 0.7;
}
#slider .inner .swiper .swiper-button-prev,
#slider .inner .swiper .swiper-button-next {
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 100%;
  border: solid 1px #d0d0d0;
}
@media screen and (max-width: 768px) {
  #slider .inner .swiper .swiper-button-prev,
  #slider .inner .swiper .swiper-button-next {
    width: 12vw;
    height: 12vw;
  }
}
#slider .inner .swiper .swiper-button-prev:after,
#slider .inner .swiper .swiper-button-next:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border: 2px solid #d7d7d7;
  /*
  font-size: 18px;
  font-weight: 700;
  color: #d0d0d0;
  @media screen and (max-width: 768px) {
    font-size: 3.333vw;
  }
  */
}
#slider .inner .swiper .swiper-button-prev {
  left: -94px;
}
@media screen and (max-width: 768px) {
  #slider .inner .swiper .swiper-button-prev {
    left: 5.333vw;
  }
}
#slider .inner .swiper .swiper-button-prev:after {
  border-right: 0;
  border-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
#slider .inner .swiper .swiper-button-next:after {
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
#slider .inner .swiper .swiper-button-next {
  right: -94px;
}
@media screen and (max-width: 768px) {
  #slider .inner .swiper .swiper-button-next {
    right: 5.333vw;
  }
}
#slider .inner .swiper .swiper-pagination {
  position: relative;
  bottom: inherit;
  height: auto;
  line-height: 1;
  font-size: 0;
  margin: 30px 0 0;
}
@media screen and (max-width: 768px) {
  #slider .inner .swiper .swiper-pagination {
    margin: 6.667vw 0 0;
  }
}
#slider .inner .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #f3dbe3;
  opacity: 1;
}
#slider .inner .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #c7698e;
}

@-webkit-keyframes slide {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#slider2 {
  background-color: #fff;
  padding: 80px 0;
  margin: auto;
}
#slider2 .album_swiper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
#slider2 .album_swiper .album-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: slide 140s linear infinite !important;
          animation: slide 140s linear infinite !important;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
#slider2 .album_swiper .album-slide {
  width: 24vw;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 20px;
}
#slider2 .album_swiper .album-slide img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #slider2 .album_swiper .album-slide {
    width: 66vw;
    margin-right: 4vw;
  }
}
#slider2 .bx3 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #slider2 .bx3 {
    margin-bottom: 9vw;
  }
}
#slider2 .bx3 .ttl {
  display: inline-block;
  color: #0f4a93;
  padding: 2px 30px;
  font-size: clamp(2rem, 0.974rem + 2.19vw, 3.6rem);
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  #slider2 .bx3 .ttl {
    padding: 2px 60px;
  }
}
@media screen and (max-width: 768px) {
  #slider2 .btn1 {
    width: 62.5vw;
    margin: 8vw auto 0;
  }
}
#slider2 .btn1 a {
  font-size: clamp(1.4rem, 0.759rem + 1.37vw, 2.4rem);
}
#slider2 .btn1 a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  #slider2 .btn1 a::after {
    right: 4.8vw;
    width: 2.1vw;
    height: 2.1vw;
  }
}

.sec1, .sec2, .sec3, .foot1, .foot2 {
  margin-top: 30px;
  background: white;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 110px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sec0 {
  margin-top: 0 !important;
}

.sec1 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.left {
  width: 100%;
}

.left_in {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 112px 25px 1fr;
  grid-template-columns: 112px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 25px;
}
.left_in img {
  width: 100%;
  height: auto;
  max-width: 112px;
  position: relative;
  top: 20px;
}

.ft1 {
  color: #C7698E;
  font-size: clamp(2.5rem, 1.538rem + 2.05vw, 4rem);
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}
.ft1 span {
  margin-left: 15px;
}

.ft2 {
  color: #264A94;
  font-size: clamp(1.5rem, 0.859rem + 1.37vw, 2.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
.ft2 .ttl {
  padding-right: 20px;
}
.ft2 .txt {
  padding-left: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.prog_w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 40px;
}
.prog_w .yous {
  width: 50%;
  text-align: center;
}
.prog_w .youtube {
  margin: 30px auto 0 auto;
}
.prog_w .ttl {
  display: inline-block;
  padding: 3px 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #C7698E;
  border: 1px solid #C7698E;
  font-size: clamp(2.5rem, 2.372rem + 0.27vw, 2.7rem);
}

.prog {
  letter-spacing: 0.1em;
  width: 50%;
}
.prog ul {
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 20px 0 0 0;
}
.prog li {
  font-size: clamp(1.5rem, 1.308rem + 0.41vw, 1.8rem);
  padding-bottom: 10px;
}

.right {
  width: 15%;
}
.right .ttl {
  border: 1px solid #C7698E;
  color: #C7698E;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: clamp(5rem, 3.718rem + 2.74vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  padding: 35px 11px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn1 {
  width: 90%;
  margin: 50px auto 0 auto;
}
.btn1 a, .btn1 p {
  max-width: 425px;
}

.btn_cm {
  position: relative;
  display: block;
  width: 100%;
  font-size: clamp(2.5rem, 2.179rem + 0.68vw, 3rem);
  text-decoration: none;
  margin: 0 auto;
  padding: 13px 10px;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  border-radius: 10px;
  color: white;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#D87FA2), color-stop(50%, #ABADCB), color-stop(50%, #ABADCB), color-stop(60%, #C7698E), to(#C7698E));
  background: linear-gradient(90deg, #D87FA2 0%, #ABADCB 50%, #ABADCB 50%, #C7698E 60%, #C7698E 100%);
  background-size: 300% auto;
  background-position: right center;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.btn_cm:hover {
  background-position: left center;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn_dis {
  background: #ccc;
}

.sp_btn {
  display: none;
}

.sec2, .sec3 {
  margin-bottom: 30px;
}
.sec2 .bx, .sec3 .bx {
  padding: 40px 55px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(38, 74, 148, 0.35)), to(rgba(199, 105, 142, 0.35)));
  background: linear-gradient(to bottom, rgba(38, 74, 148, 0.35), rgba(199, 105, 142, 0.35));
  text-align: center;
}
.sec2 .ttl, .sec3 .ttl {
  font-size: clamp(2rem, 1.359rem + 1.37vw, 3rem);
  display: inline-block;
  border: 1px solid #333;
  padding: 2px 41px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
}
.sec2 .acc, .sec3 .acc {
  text-align: left;
  font-size: clamp(1.5rem, 1.179rem + 0.68vw, 2rem);
}
.sec2 .acc ul, .sec3 .acc ul {
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}
.sec2 .acc li, .sec3 .acc li {
  position: relative;
  padding-left: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sec2 .acc li:before, .sec3 .acc li:before {
  content: "";
  position: absolute;
  top: 17px;
  left: 7px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #333;
}

.phtx {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.phtx .ph {
  width: 36%;
  text-align: left;
}
.phtx .ph img {
  width: 100%;
}
.phtx .txt {
  width: 57.5%;
  text-align: left;
}
.phtx .ttls {
  font-size: clamp(1.5rem, 1.179rem + 0.68vw, 2rem);
}
.phtx .name {
  font-size: clamp(2rem, 1.744rem + 0.55vw, 2.4rem);
  font-weight: 700;
  padding: 15px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.bx2 {
  margin-top: 70px;
}
.bx2 .phtx .txt {
  width: 60%;
}

.bx3 {
  text-align: center;
}
.bx3 .bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto 0;
  text-align: center;
}
.bx3 .ttl {
  color: #C7698E;
  border: 1px solid #C7698E;
  font-size: clamp(2.5rem, 1.538rem + 2.05vw, 4rem);
}
.bx3 .bx {
  margin-top: 45px;
}
.bx3 .comes {
  font-size: clamp(1.8rem, 1.672rem + 0.27vw, 2rem);
}

.bx2c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bx2c img {
  width: 100%;
}
.bx2c a {
  display: block;
  width: 25%;
  margin: 0 12px;
}
.bx2c a:nth-of-type(1) {
  border: 1px solid #264A94;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sec2 {
  margin-bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  z-index: 2;
}

.sec3 {
  margin-top: 0;
  padding: 0 0 100px 0;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.foot1 {
  margin-top: 0;
  padding: 90px 0 70px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.foot2 {
  margin-top: 20px;
  padding: 18px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: right;
  font-size: 1.2rem;
}

.ft_names {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #264A94;
  padding-top: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 50px;
}
.ft_names a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #264A94;
}
.ft_names a:hover {
  opacity: 0.5;
}
.ft_names img {
  height: 70px;
}

.ft_tx {
  color: #264A94;
  margin-left: 40px;
  line-height: 1.4;
}
.ft_tx .ttl {
  font-size: clamp(1.8rem, 1.415rem + 0.82vw, 2.4rem);
  letter-spacing: 0.1em;
}
.ft_tx .txt {
  letter-spacing: 0.15em;
}
.ft_tx p:nth-of-type(2) {
  letter-spacing: 0.24em;
}

.ftx .btn1 .btn_cm {
  max-width: 356px;
  font-size: clamp(1.8rem, 1.479rem + 0.68vw, 2.3rem);
}

.sec_add {
  display: block;
  text-align: center;
}
.sec_add .btn1 a {
  max-width: 356px;
  font-size: clamp(1.8rem, 1.479rem + 0.68vw, 2.3rem);
}
.sec_add .spbr {
  display: none;
}
.sec_add p {
  font-size: clamp(1.5rem, 0.859rem + 1.37vw, 2.5rem);
  color: #264A94;
  letter-spacing: 0.1em;
}
.sec_add .inner {
  display: block;
}
.sec_add .ttl_bx {
  position: relative;
  z-index: 2;
}
.sec_add .ttl_bx h2 {
  color: #C7698E;
  font-size: clamp(3rem, 1.91rem + 2.32vw, 4.7rem);
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 5px;
}
.sec_add .ttl_bx .sub {
  color: #C7698E;
  letter-spacing: 0.1em;
  font-size: clamp(2rem, 1.487rem + 1.09vw, 2.8rem);
}
.sec_add .line {
  margin-top: 40px;
  position: relative;
}
.sec_add .line p {
  position: relative;
  z-index: 2;
}
.sec_add .line:before {
  content: "";
  position: absolute;
}
.sec_add .line1 {
  margin-top: 50px;
}
.sec_add .line1:before {
  right: -100px;
  top: -180px;
  width: 287px;
  height: auto;
  aspect-ratio: 287/386;
  background: url("../images/line1.png") center center/cover;
}
.sec_add .line2:before {
  left: -50px;
  top: -50px;
  width: 392px;
  height: auto;
  aspect-ratio: 392/200;
  background: url("../images/line2.png") center center/cover;
}
.sec_add .line3:before {
  right: -130px;
  top: 0;
  width: 354px;
  height: auto;
  aspect-ratio: 354/264;
  background: url("../images/line3.png") center center/cover;
}
.sec_add .line4:before {
  left: -130px;
  top: -120px;
  width: 323px;
  height: auto;
  aspect-ratio: 323/323;
  background: url("../images/line4.png") center center/cover;
}
.sec_add .line5 {
  margin-bottom: 20px;
}
.sec_add .line5:before {
  right: -90px;
  top: 10px;
  width: 385px;
  height: auto;
  aspect-ratio: 385/215;
  background: url("../images/line5.png") center center/cover;
}
.sec_add .youtube {
  margin: 0 auto 70px auto;
}

.youtube {
  width: 100%;
  margin: 70px auto 0 auto;
  max-width: 560px;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.sec1_2 .inner {
  display: block;
}
.sec1_2 .ft1 {
  text-align: center;
  color: #C7698E;
  font-size: clamp(2.3rem, 1.21rem + 2.32vw, 4rem);
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 20px;
}
.sec1_2 .ft1 br {
  display: none;
}
.sec1_2 .ft1 span {
  display: block;
}

/*------------------------------------------------------------
media
------------------------------------------------------------*/
@media screen and (max-width: 1170px) {
  .news {
    display: block;
    padding: 20px 40px;
  }
  .news p {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .news p span {
    display: block;
  }
  .news p:last-child {
    text-align: left;
    margin-bottom: 20px;
  }
  .news p:last-child span {
    text-align: left;
  }
  .news p:last-child a {
    margin-left: 0;
  }
  .news > p {
    right: 20px;
    bottom: 0;
  }
  .sec_add .line {
    margin-top: 35px;
    position: relative;
  }
}
@media screen and (max-width: 1024px) {
  .inner {
    width: 89%;
  }
  .sec_add .line1 {
    margin-top: 35px;
  }
  .sec_add .line1:before {
    right: 0;
    top: -80px;
    width: 187px;
  }
  .sec_add .line2:before {
    left: 0;
    top: -40px;
    width: 302px;
  }
  .sec_add .line3:before {
    right: 0;
    top: -10px;
    width: 234px;
  }
  .sec_add .line4:before {
    left: 0;
    top: -130px;
    width: 258px;
  }
  .sec_add .line5 {
    margin-bottom: 20px;
  }
  .sec_add .line5:before {
    right: 0;
    top: 10px;
    width: 265px;
  }
}
@media screen and (max-width: 850px) {
  .left_in {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .left_in .img {
    margin: 0 auto 20px auto;
  }
  .left_in .img img {
    top: 0;
  }
  .conts {
    display: inline-block;
  }
}
@media all and (max-width: 750px) {
  .news .flex:last-of-type {
    margin-bottom: 50px;
  }
  .news p {
    margin-bottom: 10px;
  }
  .news p:last-child {
    bottom: 0;
  }
  .youtube {
    margin: 40px auto 0 auto;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  body {
    line-height: 1.6;
    font-size: 1.5rem;
  }
  .inner {
    width: 89%;
  }
  #wrapper {
    width: 100%;
    overflow: hidden;
  }
  .head .inner {
    width: 100%;
  }
  .head .inner img {
    height: 50px;
  }
  .pg_ttl {
    font-size: 1.6rem;
    padding-left: 10px;
  }
  .sec1, .sec2, .foot1, .foot2 {
    margin-top: 30px;
    padding: 60px 0;
  }
  .ft1 span {
    display: block;
    margin-left: 0;
  }
  .left {
    width: 100%;
  }
  .btn1 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .ft2 {
    font-size: 1.4rem;
  }
  .ft2 .ttl {
    display: inline-block;
    background: none;
    min-width: 0;
    white-space: nowrap;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    letter-spacing: 0;
  }
  .ft2 .txt {
    width: 100%;
    padding-left: 0;
    letter-spacing: 0;
  }
  .ft2 .txt span {
    display: block;
  }
  .prog {
    margin-top: 70px;
  }
  .prog li {
    letter-spacing: 0;
  }
  .sec2 {
    padding: 30px 0;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  .sec2 .ttl {
    font-size: clamp(2.5rem, 2.179rem + 0.68vw, 3rem);
    padding: 2px 30px;
  }
  .sec2 .bx {
    padding: 40px 20px 20px 20px;
  }
  .sec3 {
    padding: 50px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .phtx {
    display: block;
    margin-top: 35px;
  }
  .phtx .ph {
    width: 100%;
  }
  .phtx .ph img {
    max-width: 175px;
    margin: 0 auto;
  }
  .phtx .txt {
    margin-top: 20px;
    width: 100%;
  }
  .phtx .tx {
    font-size: 1.2rem;
    line-height: 2;
  }
  .bx2 {
    margin-top: 30px;
  }
  .bx2 .phtx .ph img {
    max-width: 100%;
  }
  .bx2 .phtx .txt {
    width: 100%;
  }
  .sec2 .acc {
    font-size: 1.2rem;
    line-height: 2;
  }
  .sec2 .acc li:before {
    top: 9px;
    left: 5px;
    width: 3px;
    height: 3px;
  }
  .sec2 .acc li {
    padding-left: 15px;
  }
  .sec2 .acc .minis {
    letter-spacing: -0.04em;
  }
  .ac2 {
    margin-top: 10px;
  }
  .bx3 .bx {
    margin-top: 40px;
  }
  .foot1 {
    margin-top: 0;
    padding: 40px 0 30px 0;
  }
  .foot2 {
    padding: 13px;
  }
  .ft_names {
    padding-top: 20px;
    margin-top: 30px;
  }
  .ft_names a {
    text-align: left;
    display: block;
  }
  .ft_names img {
    height: 26px;
    margin: 0 auto;
  }
  .ft_tx {
    margin-left: 20px;
    text-align: left;
    margin-top: 0;
  }
  .ft_tx .ttl {
    font-size: 2.9vw;
  }
  .ft_tx .txt {
    font-size: 2.9vw;
    letter-spacing: 0.05em;
  }
  .ft_tx .txt a {
    display: inline;
  }
  .ft_tx p:nth-of-type(2) {
    letter-spacing: 0.11em;
  }
  .foot2 {
    padding: 13px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
  .bx2c {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .bx2c a {
    display: block;
    width: calc(50% - 10px);
    margin: 0 0 20px;
  }
  .bx2c a:nth-of-type(n+3) {
    margin-bottom: 0;
  }
  .pc_btn {
    display: none;
  }
  .sp_btn {
    display: block;
  }
  .bx3 .ttl {
    padding: 2px 30px;
  }
  .ft1 {
    text-align: center;
  }
  .ftx .btn1 {
    margin: 30px auto 0 auto;
  }
  .ftx .btn1 .btn_cm {
    max-width: 75%;
  }
  .sec_add .spbr {
    display: block;
  }
  .sec_add p {
    letter-spacing: 0.03em;
  }
  .sec_add .line {
    margin-top: 35px;
    position: relative;
  }
  .sec_add .line1 {
    margin-top: 35px;
  }
  .sec_add .line1:before {
    right: 0;
    top: -50px;
    width: 133px;
  }
  .sec_add .line2:before {
    left: 0;
    top: 20px;
    width: 177px;
  }
  .sec_add .line3:before {
    right: 0;
    top: 20px;
    width: 151px;
  }
  .sec_add .line4:before {
    left: 0;
    top: -60px;
    width: 168px;
  }
  .sec_add .line5 {
    margin-bottom: 20px;
  }
  .sec_add .line5:before {
    right: 0;
    top: 34px;
    width: 161px;
  }
  .sec_add .youtube {
    margin: 0 auto 30px auto;
  }
  .prog_w {
    display: block;
    margin-top: 0;
  }
  .prog_w .yous {
    margin-top: 40px;
    width: 100%;
    text-align: left;
  }
  .prog_w .youtube {
    margin: 30px auto 0 auto;
  }
  .prog {
    width: 100%;
  }
  .sec1_2 .ft1 br {
    display: block;
  }
  .ft1 br {
    display: none;
  }
  .sec_add .btn1 a {
    max-width: 75%;
  }
}
/*--media_end--*/