@charset "utf-8";
/*
==============================================================================
  Reset CSS
==============================================================================
*/
/* 要素のmargin/paddingを０にする */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, main, menu, nav, section, summary,
time, mark, audio, video{
  margin:0;
  padding:0;
}

/* ボックスサイジング設定 */
* { box-sizing: border-box;}
*::before,*::after { box-sizing: inherit;} /* 親要素の継承 */

/* 旧ブラウザの表示対策 */
article,aside,details,figcaption,figure,
footer,header,main,menu,nav,section{
  display:block;
}

/* スマートフォン等の横長表示での文字サイズ拡大防止 */
html{
  -webkit-text-size-adjust: 100%;
}

/* リンク時に画像に枠線が表示されるのを防止 */
img{
  border: 0;
  /* フルードイメージ化 */
  max-width: 100%;
  height: auto;
}

/* リストの冒頭マーク非表示 */
ul,ol{
  list-style-type: none;
}

/* 表組みの罫線を重ねて表示 */
table {
  border-collapse: collapse; 
  border-spacing: 0;
}

/* リンク下線削除 */
a {
  text-decoration: none;
  color: #000;
}

/* インライン中のアイテム表示位置調整 */
img, input, select, textarea { 
  vertical-align: middle;
}

/* 英数字の改行設定 */
p {
  word-break: break-all;
}


/*
================================================================================
  Variables
================================================================================
*/
/* カラー設定 */
:root {
  --blue: #2c54a5;
  --lightblue: #527ac9;
}


/*
================================================================================
  Common Layout
================================================================================
*/
/* スムーススクロール
----------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}
/* フォント
----------------------------------------------------------*/
body {
  font-family: "ヒラギノ角ゴシック","Hiragino Sans", "Noto Sans JP",sans-serif;
  text-align: center;
  overflow-x: hidden;
}

/* 画像拡大表示
----------------------------------------------------------*/
#zoom-back {
  position: fixed;
  inset: 0;
  background-color:rgba(0,0,0,0.7);
  z-index: 100;
  cursor: pointer;
  /* 非表示 */
  opacity: 0;
  visibility: hidden;
}
#zoom-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(5px, 80vw, 100vh);
  max-height: 95vh;
  object-fit: contain;
  cursor: pointer;
  /* 非表示 */
  opacity: 0;
  visibility: hidden;
}
#zoom-close-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10vw;
  height: auto;
  cursor: pointer;
  /* 非表示 */
  opacity: 0;
  visibility: hidden;
}
.zoom {
  cursor: pointer;
}
@media screen and (min-width: 480px) {
  #zoom-img {
    max-height: 70vh;
  }
  #zoom-close-btn {
    width: min(10vw, 30px);
  }
}
@media screen and (min-width: 1025px) {
}

/* ヘッダー
----------------------------------------------------------*/
/* ヘッダー・ロゴ */
#header {
  text-align: left;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 45px;
  background-color: #fff;
  box-shadow: 0 1px 7px #000;
  z-index: 90;
}
#header img {
  position: fixed;
  margin: 15px 0 0 25px;
  width: 60px;
  height: auto;
}
@media screen and (min-width: 480px) {
  #header {
    height: 65px;
    box-shadow: 0 1px 8px #000;
  }
  #header img {
    margin: 25px 0 0 35px;
    width: 80px;
  }
}
@media screen and (min-width: 1025px) {
  #header-pc {
    position: fixed;
    top: 0;
    left: 0;
    height: 0px;
    z-index: 90;
    display: inline-block;
  }
  #header {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    box-shadow: 0 1px 9px #000;
  }
  #header a img {
    margin: 30px 0 0 5vw;
    width: min(100px, 12vw);
  }
}

/* ハンバーガー
----------------------------------------------------------*/
#hamburger {
  position: fixed;
  top: 14.75px;
  right: 14.75px;
  width: 25px;
  height: 15.5px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 90;
} 
.hamburger-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #000;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 7px; }
.hamburger-line:nth-child(3) { top: 14px; }
/* ハンバーガークリック時 */
#hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
#hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media screen and (min-width: 480px) {
  #hamburger {
    top: 21.5px;
    right: 21.5px;
    width: 35px;
    height: 22px;
  }
  .hamburger-line {
    height: 2px;
  }
  .hamburger-line:nth-child(2) { top: 10px; }
  .hamburger-line:nth-child(3) { top: 20px; }
  /* ハンバーガークリック時 */
  #hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  #hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* メニュー
----------------------------------------------------------*/
/* メニューパネル */
#menu-panel {
  position: fixed;
  inset: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #fff;
  z-index: 80;
  overflow: auto;
  /* 非表示 */
  translate: 100%;
  transition: 1s;
}
/* ハンバーガークリック時 */
#menu-panel.active {
  translate: 0;
  transition: 1s;
}
@media screen and (min-width: 480px) {
  #menu-panel {
    position: fixed;
    inset: inherit;
    top: 0;
    right: 0;
    width: 60vw;
    height: 100vh;
    padding-top: 150px;
  }
}

/* メニューリスト */
#header-sp nav {
  text-align: center;
}
#header-sp > nav > ul > li {
  position: relative;
  margin: 0 auto 20px;
  font-weight: 600;
  font-size: 25px;
}
#header-sp > nav > ul > li > a:nth-of-type(1) {
  display: block;
  width: 50%;
  margin: 0 auto;
  padding-bottom: 21px;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #b7282e 10%, #db8449 20%, #ecdf2b 40%, #7BAA17 60%, #507ea4 80%, #624498 100%);
  border-image-slice: 1;
}
#menu-roll1, #menu-roll2 {
  display: block;
  width: 50%;
  margin: 0 auto;
  padding-bottom: 21px;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #b7282e 10%, #db8449 20%, #ecdf2b 40%, #7BAA17 60%, #507ea4 80%, #624498 100%);
  border-image-slice: 1;
}
.menu-roll {
  cursor: pointer;
}
/* 矢印 */
.menu-roll::after {
  display: inline-block;
  margin-bottom: -3px;
  margin-left: 10px;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow_bl.png);
  background-repeat: no-repeat;
  background-size: contain;
}
/* 「団体について」を開いたとき */
#menu-roll1.active {
  padding-bottom: 150px;
}
#menu-roll1.active .menu-roll::after {
  background-image: url(../img/menu_open.png); /* 矢印 */
}
/* 「活動内容」を開いたとき */
#menu-roll2.active {
  padding-bottom: 150px;
}
#menu-roll2.active .menu-roll::after {
  background-image: url(../img/menu_open.png); /* 矢印 */
}
@media screen and (min-width: 480px) {
  /* 「団体について」を開いたとき */
  #menu-roll1.active {
    padding-bottom: 160px;
  }
  /* 「活動内容」を開いたとき */
  #menu-roll2.active {
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 1025px) {
  #nav-pc {
    position: absolute;
    top: 0;
    left: 18vw;
    width: 82vw;
    text-align-last: left;
    z-index: 90;
  }
  #nav-pc ul {
    display: inline-block;
  }
  #nav-pc li {
    display: inline-block;
    margin-right: -4px;
    width: 15vw;
    height: 80px;
    font-weight: 800;
    font-size: 20px;
    cursor: pointer;
  }
  #nav-pc li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .menu-roll {
    border: 0;
    padding: 0;
    margin: 0;
  }
  #nav-pc li span {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
  }
  /* 矢印 */
  .menu-roll::after {
    margin-bottom: max(-5px, -0.4vw);
    margin-left: min(10px, 1vw);
    width: min(20px, 1.7vw);
    height: min(20px, 1.7vw);
  }
  /* メニュー表示アクション */
  #nav-pc li:hover {
    background-color: var(--blue);
  }
  #nav-pc li:hover a {
    color: #fff;
  }
  #menu-roll1-pc.active, #menu-roll2-pc.active {
    background-color: var(--blue);
    color: #fff;
  }
  /* 矢印 */
  #menu-roll1-pc.active .menu-roll::after,
  #menu-roll2-pc.active .menu-roll::after {
    background-image: url(../img/menu_open_wh.png);
  }
}

/* サブメニュー */
#nav-sub1, #nav-sub2 {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  /* 非表示 */
  opacity: 0;
  visibility: hidden;
}
#nav-sub1 li, #nav-sub2 li {
  display: block;
  margin: 7px auto;
}
#nav-sub1 li a:hover, #nav-sub2 li a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
#nav-sub1 a, #nav-sub2 a {
  font-size: 20px;
  font-weight: 400;
}
#nav-sub1.active, #nav-sub2.active {
  /* 表示 */
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 480px) {
  #nav-sub1 li, #nav-sub2 li {
    margin: 10px auto;
  }
}
@media screen and (min-width: 1025px) {
  /* PCサブメニュースペース */
  #nav-pc-space {
    display: inline-block;
    width: 18vw;
    height: 200px;
    opacity: 0;
    visibility: hidden;
  }
  /* 共通 */
  #nav-sub1-pc, #nav-sub2-pc {
    position: relative;
    top: 35px;
    left: 0;
    display: inline-block;
    padding-top: 20px;
    width: 15vw;
    background-color: var(--blue);
    box-shadow: 0 1px 5px #000;
    /* 非表示 */
    opacity: 0;
    visibility: hidden;
  }
  #nav-sub1-pc li, #nav-sub2-pc li {
    display: block;
    margin: 0;
  }
  #nav-sub1-pc a, #nav-sub2-pc a {
    display: block;
    width: 15vw;
    padding: 15px 0;
    font-size: 18px;
    color: #fff;
  }
  /* 団体について */
  #nav-sub1-pc {
    margin-left:  calc(15vw - 4px);
  }
  /* 活動内容 */
  #nav-sub2-pc {
    margin-left:  -4px;
  }
  /* サブメニュー表示 */
  #nav-sub1-pc.active, #nav-sub2-pc.active {
    opacity: 1;
    visibility: visible;
  }
  #nav-sub1-pc li:hover, #nav-sub2-pc li:hover {
    background-color: var(--lightblue);
  }
}

/* メニュー閉じる用背景 */
#menu-back {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 70;
  /* 非表示 */
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
/* ハンバーガークリック時 */
#menu-back.active {
  opacity: 1;
  visibility: visible;
}

/* SNSアイコン・お問い合わせ
----------------------------------------------------------*/
/* SNSアイコン */
.sns-icons-menu {
  margin-top: 40px;
  margin-bottom: 40px;
}
.sns-icons-menu a {
  display: inline-block;
  width: 46px;
  height: 46px;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.sns-icons-menu img {
  width: 20px;
  height: auto;
  margin-top: 13px;
}
/* お問い合わせ */
.contact-menu a {
  font-weight: 800;
  color: #fff;
  background-color: var(--blue);
  border-radius: 10px;
  padding: 7px 20px;
  font-size: 20px;
}
.contact-menu a:hover {
  background-color: var(--lightblue);
}
@media screen and (min-width: 1025px) {
  #nav-pc-right {
    position: absolute;
    top: min(25px, 2.5vw);
    right: 0;
  }
  /* SNSアイコン */
  .sns-icons-menu {
    display: inline-block;
    position: absolute;
    top: -8px;
    left: max(-200px, -16vw);
    margin: 0;
    margin-right: min(30px, 1.5vw);
  }
  .sns-icons-menu a {
    display: inline-block;
    width: min(46px, 4vw);
    height: min(46px, 4vw);
    margin-left: 0;
    margin-right: 10px;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }
  .sns-icons-menu img {
    margin-top: min(13px, 1.5vw);
    margin-left: min(13px, 1.5vw);
    width: min(20px, 1.6vw);
  }

  /* お問い合わせ */
  .contact-menu {
    display: inline-block;
    width: 200px;
    margin: 0;
  }
  .contact-menu a {
    font-weight: 600;
  }
}

/* TOPへ戻るボタン
----------------------------------------------------------*/
#top-icon {
  position: fixed;
  right: 10px;
  bottom: 15px;
  width: 60px;
  height: auto;
  z-index: 60;
}
@media screen and (min-width: 480px) {
  #top-icon {
    right: 15px;
    bottom: 20px;
    width: 75px;
  }
}
@media screen and (min-width: 1025px) {
  #top-icon {
    right: 20px;
    bottom: 25px;
    width: 90px;
  }
}

/* ヘッダー分のスペース
----------------------------------------------------------*/
#header-space {
  display: block;
  width: 100vw;
  height: 45px;
}
@media screen and (min-width: 480px) {
  #header-space {
    height: 65px;  
  }
}
@media screen and (min-width: 1025px) {
  #header-space {
    height: 80px;  
  }
}

/* ページタイトル
----------------------------------------------------------*/
#pagetitle {
  position: relative;
  margin-bottom: 10vw;
}
#pagetitle img {
  width: 100vw;
  height: min(120vw, 200px);
  object-fit: cover;
  filter: blur(3px);
}
#pagetitle p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 800;
  font-size: 7vw;
  text-shadow: 1px 3px 5px #000;
}
@media screen and (min-width: 480px) {
  #pagetitle {
    margin-bottom: min(10vw, 60px);
  }
  #pagetitle img {
    height: min(100vw, 300px);
    filter: blur(4px);
  }
  #pagetitle p {
    font-size: min(6vw, 40px);
    text-shadow: 1px 3px 6px #000;
  }
}
@media screen and (min-width: 1025px) {
  #pagetitle {
    margin-bottom: 60px
  }
  #pagetitle img {
    height: 400px;
    filter: blur(5px);
  }
  #pagetitle p {
    font-size: 50px;
    text-shadow: 2px 4px 7px #000;
  }
}


/* 本文
----------------------------------------------------------*/
/* 見出し */
.h2 {
  display: block;
  width: fit-content;
  margin: 20vw auto 7vw;
  padding: 0 5vw;
  font-weight: 600;
  font-size: 10vw;
  border-bottom: 5px solid;
  border-image: linear-gradient(to right, #b7282e 10%, #db8449 20%, #ecdf2b 40%, #7BAA17 60%, #507ea4 80%, #624498 100%);
  border-image-slice: 1;
}
@media screen and (min-width: 480px) {
  /* 見出し */
  .h2 {
    margin: min(16vw, 100px) auto min(4vw, 30px);
    padding: 0 min(3.5vw, 20px);
    font-size: min(7vw, 45px);
  }
}
@media screen and (min-width: 1025px) {
  /* 見出し */
  .h2 {
    margin: 100px auto 20px;
    padding: 0 35px;
    font-size: 45px;
  }
}

/* 本文内リンクボタン
----------------------------------------------------------*/
.main-link {
  margin-bottom: 25vw;
}
.main-link a {
  font-weight: 800;
  color: #fff;
  background-color: var(--blue);
  border-radius: 3.5vw;
  padding: 3vw 8vw;
  font-size: 4.5vw;
}
.main-link a::after {
  display: inline-block;
  margin-bottom: -0.7vw;
  margin-left: 1.5vw;
  content: "";
  width: 5vw;
  height: 5vw;
  background-image: url(../img/arrow_bl_square.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.main-link a:hover {
  background-color: var(--lightblue);
}
@media screen and (min-width: 480px) {
  .main-link {
    margin-bottom: min(25vw, 180px);
  }
  .main-link a {
    border-radius: 15px;
    padding: 10px 30px;
    font-size: min(4vw, 25px);
  }
  .main-link a::after {
    margin-bottom: max(-0.5vw, -3px);
    margin-left: 10px;
    width: min(4vw, 25px);
    height: min(4vw, 25px);
  }
}

/* 本文内お問合せ上文章（青色）
----------------------------------------------------------*/
.contact-p-bl {
  font-weight: 600;
  color: var(--blue);
  font-size: 3.2vw;
  line-height: 1.7em;
  margin: 15vw auto 0;
  padding-bottom: 7vw;
}
@media screen and (min-width: 480px) {
  .contact-p-bl {
    font-size: min(3.2vw, 25px);
    margin: min(15vw, 80px) auto 0;
    padding-bottom: min(7vw, 50px);
  }
}

/* 背景（雲）
----------------------------------------------------------*/
#bg-wrap {
  display: inline-block;
  position: fixed;
  inset: 0;
  z-index: -2;
}
.bg-cloud-wrap {
  position: fixed;
  top: 0;
  opacity: 0;
}
.bg-cloud-wrap:nth-of-type(1) {
  left: 0;
}
.bg-cloud-wrap:nth-of-type(2) {
  left: -500vw;
}
.bg-cloud {
  width: 80vw;
  height: auto;
}
.bg-cloud:nth-of-type(1) img{
  position: fixed;
  top: 15vh;
  left: 0vw;
}
.bg-cloud:nth-of-type(2) img{
  position: fixed;
  top: 50vh;
  left: -40vw;
}
.bg-cloud:nth-of-type(3) img{
  position: fixed;
  top: 30vh;
  left: -140vw;
}
.bg-cloud:nth-of-type(4) img{
  position: fixed;
  top: 15vh;
  left: -260vw;
}
.bg-cloud:nth-of-type(5) img{
  position: fixed;
  top: 50vh;
  left: -300vw;
}
.bg-cloud:nth-of-type(6) img{
  position: fixed;
  top: 30vh;
  left: -400vw;
}
@media screen and (min-width: 480px) {
  .bg-cloud {
    width: min(65vw, 400px);
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
.bg-cloud-wrap:nth-of-type(2) {
  left: -400vw;
}
.bg-cloud {
  width: min(75vh, 500px);
  height: auto;
}
.bg-cloud:nth-of-type(1) img{
  position: fixed;
  top: 20vh;
  left: 0vw;
}
.bg-cloud:nth-of-type(2) img{
  position: fixed;
  top: 55vh;
  left: -20vw;
}
.bg-cloud:nth-of-type(3) img{
  position: fixed;
  top: 35vh;
  left: -100vw;
}
.bg-cloud:nth-of-type(4) img{
  position: fixed;
  top: 20vh;
  left: -200vw;
}
.bg-cloud:nth-of-type(5) img{
  position: fixed;
  top: 55vh;
  left: -220vw;
}
.bg-cloud:nth-of-type(6) img{
  position: fixed;
  top: 40vh;
  left: -300vw;
}
}

/* カミングスーン
----------------------------------------------------------*/
.coming-soon {
  font-weight: 900;
  color: var(--blue);
  font-size: 6vw;
  margin: 15vw auto;
}
@media screen and (min-width: 480px) {
  .coming-soon {
    font-size: min(6vw, 50px);
    margin: min(15vw, 80px) auto;
  }
}

/* フッター
----------------------------------------------------------*/
/* 波模様 */
footer {
  position: relative;
  overflow: hidden;
}
#foorer-deco {
  position: absolute;
  top: 0;
  left: -2vw;
  transform: translate(0, -50%);
  content: "";
  width: 104vw;
  height: 18vw;
  overflow: hidden;
  background-image: url(../img/footer_circle_wh_sp.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 480px) {
  #foorer-deco {
    left: -1.5vw;
    transform: translate(0, -53%);
    width: 103vw;
    height: 9vw;
    background-image: url(../img/footer_circle_wh_tb.png);
  }
}
@media screen and (min-width: 1025px) {
  #foorer-deco {
    left: -1vw;
    transform: translate(0, -55%);
    width: 102vw;
    height: 6vw;
    background-image: url(../img/footer_circle_wh_pc.png);
  }
}

/* フッター全体 */
#footer {
  background-color: var(--blue);
  color: #fff;
  padding-bottom: 10vw;
}
@media screen and (min-width: 480px) {
  #footer {
    padding-bottom: 7vw;
  }
}
@media screen and (min-width: 1025px) {
  #footer {
    height: calc(2vw + 200px);
  }
  #footer-pc {
    position: relative;
    margin: 0 auto;
    width: 1000px;
    height: calc(2.3vw + 220px);
  }
}

/* ロゴ */
#foorer-logo {
  margin: 20vw 0 10vw;
  width: 30vw;
  height: auto;
}
@media screen and (min-width: 480px) {
  #foorer-logo {
    margin: min(16vw, 130px) 0 min(8vw, 65px);
    width: min(20vw, 150px);
  }
}
@media screen and (min-width: 1025px) {
  #foorer-logo {
    position: absolute;
    top: calc(2.3vw + 35px);
    left: 0;
    margin: 0;
    width: 80px;
  }
}

/* フッターメニュー */
.footer-nav > ul > li, #p-p {
  margin-bottom: 8vw;
  font-weight: 600;
  font-size: 6vw;
  color: #fff;
}
#p-p:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
#footer-nav1 > ul > li:nth-of-type(1) > ul {
  margin: 0 auto;
}
#footer-nav1 > ul > li:nth-of-type(2) > ul {
  margin: 0 auto;
}
#footer-nav2 > ul > li > ul {
  width: 80vw;
  margin: 0 auto;
}
.footer-nav-sub li {
  display: inline-block;
  margin: 3vw 1.5vw 0;
}
.footer-nav-sub li::before {
  content: "- ";
  font-weight: 300;
}
.footer-nav-sub a {
  color: #fff;
  font-weight: 300;
  font-size: 4vw;
}
.footer-nav-sub a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
@media screen and (min-width: 480px) {
  .footer-nav > ul > li, #p-p {
    margin-bottom: min(7vw, 60px);
    font-size: min(4vw, 30px);
  }
  #footer-nav1 > ul > li:nth-of-type(1) > ul {
    width: min(60vw, 500px);
    margin: 0 auto;
  }
  .footer-nav-sub {
    width: fit-content;
    margin: 0 auto;
    padding: 0;
  }
  .footer-nav-sub li {
    margin: min(3vw, 20px) 1.5vw 0;
  }
  .footer-nav-sub a {
    font-size: min(3vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
  /* 継承解除 */
  #footer-nav1 > ul > li:nth-of-type(1) > ul,
  #footer-nav1 > ul > li:nth-of-type(2) > ul,
  #footer-nav2 > ul > li > ul {
    width: inherit;
    margin: 0 auto;
  }
  .footer-nav {
    display: inline-block;
    vertical-align: top;
  }
  .footer-nav > ul > li {
    position: absolute;
    display: inline-block;
    margin: 0;
    font-size: 17px;
    vertical-align: top;
  }
  #footer-nav1 > ul > li:nth-of-type(1) {
    top: calc(2.3vw + 35px);
    left: 230px; 
  }
  #footer-nav1 > ul > li:nth-of-type(2) {
    top: calc(2.3vw + 35px);
    left: 445px; 
  }
  #footer-nav2 > ul > li:nth-of-type(1) {
    top: calc(2.3vw + 35px);
    left: 627px; 
  }
  #footer-nav2 > ul > li:nth-of-type(2) {
    top: calc(2.3vw + 35px);
    right: 0; 
  }
  #p-p {
    margin: 0;
    font-size: 17px;
    vertical-align: top;
  }
  .footer-nav-sub {
    padding: 0;
    text-align: left;
  }
  .footer-nav-sub li {
    display: block;
    margin: 0;
  }
  .footer-nav-sub a {
    font-size: 13px;
  }
}

/* お問い合わせ */
#contact-footer {
  display: block;
  width: 50vw;
  margin: 10vw auto;
  font-weight: 800;
  color: #353535;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  padding: 1.7vw 0;
  font-size: 5vw;
}
@media screen and (min-width: 480px) {
  #contact-footer {
    width: min(40vw, 300px);
    margin: min(9vw, 80px) auto min(6vw, 50px);
    border-radius: min(1.5vw, 15px);
    padding: min(1.2vw, 12px) 0;
    font-size: min(4vw, 30px);
  }
}
@media screen and (min-width: 1025px) {
  #contact-footer {
    position: absolute;
    top: calc(2.3vw + 140px);
    left: 0;
    display: block;
    width: fit-content;
    margin: 0;
    padding: 5px 15px;
    border-radius: 7px;
    font-size: 15px;
  }
}

/* SNSアイコン */
.sns-icons-footer {
  margin-bottom: 10vw;
}
.sns-icons-footer a {
  display: inline-block;
  width: 14.5vw;
  height: 14.5vw;
  margin-left: 2.5vw;
  margin-right: 2.5vw;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
 .sns-icons-footer img {
  width: 6.5vw;
  height: auto;
  margin-top: 4vw;
}
@media screen and (min-width: 480px) {
  .sns-icons-footer {
    margin-bottom: min(10vw, 80px);
  }
  .sns-icons-footer a {
    width: min(10vw, 80px);
    height: min(10vw, 80px);
    margin-left: 2vw;
    margin-right: 2vw;
    border-radius: 50%;
  }
  .sns-icons-footer img {
    width: min(5vw, 40px);
    height: auto;
    margin-top: min(2.5vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
  .sns-icons-footer {
    position: absolute;
    top: calc(2vw + 100px);
    right: 0;
  }
  .sns-icons-footer a {
    position: relative;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    margin-right: 0px;
  }
  .sns-icons-footer img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: auto;
    margin-top: 0px;
  }
}

/* コピーライト */
#copy-sp {
  display: block;
  margin: 10px auto;
  font-weight: 500;
  font-size: 2.5vw;
  line-height: 1.2em;
}
@media screen and (min-width: 480px) {
  #copy-sp {
    margin: 13px auto;
    font-size: 13px;
  }
}
@media screen and (min-width: 1025px) {
  #copy-pc {
    display: block;
    margin: 13px auto;
    font-weight: 500;
    font-size: 13px;
  }
}


/*
================================================================================
  Index
================================================================================
*/
/* イントロ
----------------------------------------------------------*/
#intro-sp {
  margin-top: 30px;
}
#intro-sp p {
  font-weight: 800;
  color: var(--blue);
  font-size: 3.7vw;
  margin: 10vw auto 10vw;
}
#intro-sp img:nth-of-type(2) {
  width: 90vw;
  height: auto;
}
@media screen and (min-width: 480px) {
  #intro-sp {
    margin-top: 45px;
  }
  #intro-sp p {
    font-size: 17px;
    margin: 40px auto;
  }
  #intro-sp img:nth-of-type(2) {
    width: min(80vw, 600px);
  }
}
@media screen and (min-width: 1025px) {
  #intro-pc {
    margin-top: 40px;
  }
  #intro-pc p {
    margin: 50px auto;
    color: var(--blue);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.7em;
  }
  #intro-pc img:nth-of-type(1) {
    width: min(80vw, 1200px);
    height: auto;
  }
  #intro-pc img:nth-of-type(2) {
    width: 700px;
    height: auto;
  }
}

/* 本文
----------------------------------------------------------*/
/* 見出し説明 */
.h2-p-home-sp, .h2-p-home {
  font-weight: 400;
  font-size: 3.5vw;
  margin: 0 auto 7vw;
}
/* 画像リンク */
.home-link {
  width: fit-content;
  margin: 0 20vw 7vw;
  background-color: #fff;
}
.home-link img {
  border-radius: 10px;
}
.home-link p {
  margin-top: 0.5vw;
  font-weight: 500;
  font-size: 5vw;
}
.home-link p::after {
  display: inline-block;
  margin-bottom: -1px; 
  margin-left: 5px;
  content: "";
  width: 4.5vw;
  height: 4.5vw;
  background-image: url(../img/arrow_wh_square.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 480px) {
  /* 見出し説明 */
  .h2-p-home-sp, .h2-p-home {
    font-size: min(3vw, 20px);
    margin: 0 auto min(4vw, 30px);
  }
  /* 画像リンク */
  .home-link {
    display: inline-block;
    width: min(30vw, 250px);
    margin: 0 0.8vw;
  }
  .home-link p {
    margin-top: 5px;
    font-size: min(3vw, 20px);
  }
  .home-link p::after {
    margin-bottom: min(-0.2vw, -1px); 
    margin-left: 5px;
    width: min(2.5vw, 20px);
    height: min(2.5vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
  /* 見出し説明 */
  .h2-p-home-pc, .h2-p-home {
    font-size: 20px;
    margin: 0 auto 30px;
  }
  /* 画像リンク */
  .home-link {
    width: 300px;
    margin: 0 1.5vw;
    cursor: pointer;
  }
  .home-link div {
    margin: 0;
  }
  .home-link p {
    margin-top: 5px;
    font-size: 20px;
  }
  .home-link p::after {
    margin-bottom: -2px;
    width: 20px;
    height: 20px;
  }
}

/* SNSアイコン */
.sns-icons-main a {
  position: relative;
  display: block;
  text-align: left;
  width: 50vw;
  height: 21vw;
  margin: 0 auto 7vw;
}
.sns-shadow-main {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 20vw;
  height: 20vw;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.sns-icons-main img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9vw;
  height: auto;
}
.sns-icons-main p {
  display: inline-block;
  margin: 6vw -50px 0 25vw;
  padding: 0;
  font-weight: 600;
  font-size: 5vw;
}
@media screen and (min-width: 480px) {
  .sns-icons-main a {
    display: inline-block;
    height: min(10.5vw, 85px);
    margin: 0;
  }
  .sns-icons-main a:nth-of-type(1) {
    width: min(20vw, 145px);
    margin-right: 30px;
  }
  .sns-icons-main a:nth-of-type(2) {
    width: min(15vw, 115px);
    margin-right: 30px;
  }
  .sns-icons-main a:nth-of-type(3) {
    width: min(28vw, 200px);
  }
  .sns-shadow-main {
    width: min(10vw, 80px);
    height: min(10vw, 80px);
  }
  .sns-icons-main img {
    width: min(5vw, 40px);
  }
  .sns-icons-main p {
    margin: min(2.3vw, 20px) 0 0 min(12vw, 95px);
    font-size: min(3vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
  .sns-icons-main a:nth-of-type(1), .sns-icons-main a:nth-of-type(2), .sns-icons-main a:nth-of-type(3) {
    width: fit-content;
    height: 85px;
    margin: 0 30px;
  }
  .sns-shadow-main {
    width: 80px;
    height: 80px;
  }
  .sns-icons-main img {
    width: 40px;
  }
  .sns-icons-main p {
    margin: 23px 1px 0 95px;
    font-size: 20px;
  }
}

/* 団体名 */
#home-name-jp {
  margin: 20vw auto 0;
  font-weight: 600;
  font-size: 4.5vw;
}
#home-name-en {
  margin: 0 auto 8vw;
  font-weight: 600;
  font-size: 3.5vw;
}
@media screen and (min-width: 480px) {
  #home-name-jp {
    margin: min(20vw, 100px) auto 0;
    font-size: min(4.5vw, 25px);
  }
  #home-name-en {
    margin: 0 auto min(8vw, 40px);
    font-size: min(3.5vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
  #home-name-jp {
    margin: 100px auto 0;
    font-size: 25px;
  }
  #home-name-en {
    margin: 0 auto 40px;
    font-size: 20px;
  }
}


/*
================================================================================
  our-thoughts
================================================================================
*/
/* イントロ
----------------------------------------------------------*/
.our-intro-name-jp {
  font-weight: 800;
  font-size: 5vw;
  margin-bottom: -1vw;
}
.our-intro-name-en {
  font-weight: 800;
  font-size: 3.5vw;
  color: #8a8a8a;
  margin-bottom: 3vw;
}
#our-intro > img {
  width: 90vw;
  height: auto;
}
@media screen and (min-width: 480px) {
  .our-intro-name-jp {
    font-size: 4vw;
  }
  .our-intro-name-en {
    font-size: 3.2vw;
    margin-bottom: 2vw;
  }
  #our-intro > img {
    width: 80vw;
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  .our-intro-name-jp {
    font-size: 35px;
    margin-bottom: -0.7vw;
  }
  .our-intro-name-en {
    font-size: 28px;
    margin-bottom: 1.5vw;
  }
  #our-intro > img {
    width: 650px;
    height: auto;
  }
}

/* 本文
----------------------------------------------------------*/
/* 全体幅 */
#our-main {
  width: 100vw;
  margin: 0 auto;
}
@media screen and (min-width: 480px) {
  #our-main {
    width: 90vw;
  }
}
@media screen and (min-width: 1025px) {
  #our-main {
    width: min(90vw, 1200px);
  }
}
/* 青字（最初・最後） */
.paragraph-bl {
  font-weight: 600;
  color: var(--blue);
  font-size: 3.2vw;
  line-height: 1.7em;
  margin: 7vw auto 0;
  padding-bottom: 7vw;
}
.paragraph-bl p {
  padding-bottom: 4vw;
}
@media screen and (min-width: 480px) {
  .paragraph-bl {
    font-size: 2.5vw;
    line-height: 1.8em;
    margin: 5vw auto 0;
    padding-bottom: 5vw;
  }
  .paragraph-bl p {
    padding-bottom: 3.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .paragraph-bl {
    font-size: min(1.7vw, 20px);
    line-height: 1.9em;
    margin: 50px auto 0;
    padding-bottom: 50px;
  }
  .paragraph-bl p {
    padding-bottom: 35px;
  }
}

/* 黒字（段落２～５） */
.paragraph {
  font-weight: 400;
  font-size: 2.7vw;
  line-height: 1.7em;
  margin: 7vw auto 0;
  padding-bottom: 7vw;
}
@media screen and (min-width: 480px) {
  .paragraph {
    font-size: 2vw;
    line-height: 1.8em;
    margin: 5vw auto 0;
    padding-bottom: 5vw;
  }
}
@media screen and (min-width: 1025px) {
  .paragraph {
    font-size: min(1.4vw, 18px);
    line-height: 1.9em;
    margin: 50px auto 0;
    padding-bottom: 50px;
  }
}
.paragraph-sub {
  font-size: 2.7vw;
  line-height: 1.7em;
  margin: 0;
}
@media screen and (min-width: 480px) {
  .paragraph-sub {
    font-size: 2vw;
    line-height: 1.8em;
  }
}
@media screen and (min-width: 1025px) {
  .paragraph-sub {
    font-size: min(1.4vw, 18px);
    line-height: 1.9em;
  }
}

/* スクロール画像定位置 */
#our-img-position {
  margin: 7vw auto 0;
  padding-bottom: 7vw;
}
/* 画像 */
#our-img-position img {
  width: 95vw;
  height: auto;
}
@media screen and (min-width: 480px) {
  #our-img-position {
    margin: 5vw auto 0;
    padding-bottom: 5vw;
  }
  #our-img-position img {
    width: 80vw;
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  #our-img-position {
    margin: 50px auto 0;
    padding-bottom: 50px;
  }
  #our-img-position img {
    width: min(80vw, 1050px);
    height: auto;
  }
}

/* 段落６ */
.paragraph-light {
  width: fit-content;
  font-weight: 400;
  font-size: 2.7vw;
  line-height: 1.7em;
  margin: 7vw auto 0;
  padding-bottom: 7vw;
}
.paragraph-light p + p {
  margin: 5vw auto 0;
  padding-left: 3.75vw;
  text-indent: -3.75vw;
  text-align: left;
}
@media screen and (min-width: 480px) {
  .paragraph-light {
    font-size: 2vw;
    line-height: 1.8em;
    margin: 5vw auto 0;
    padding-bottom: 5vw;
  }
  .paragraph-light p + p {
    margin: 3vw auto 0;
    padding-left: 3vw;
    text-indent: -3vw;
  }
}
@media screen and (min-width: 1025px) {
  .paragraph-light {
    font-size: min(1.4vw, 18px);
    line-height: 1.9em;
    margin: 50px auto 0;
    padding-bottom: 50px;
  }
  .paragraph-light p + p {
    margin: 30px auto 0;
    padding-left: 22.5px;
    text-indent: -22.5px;
  }
}

/* 段落区切りライン */
.paragraph-line {
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, transparent 5%, #b7282e 17.9%, #db8449 30.7%, #ecdf2b 43.6%, #7BAA17 56.4%, #507ea4 69.3%, #624498 82.1%, transparent 95%);
  border-image-slice: 1;
}


/*
================================================================================
  member
================================================================================
*/
/* イントロ
----------------------------------------------------------*/
@media screen and (min-width: 480px) {
  #member-intro #pagetitle img {
    object-fit: fill;
  }
}

/* ジャンプ時ヘッダー分ズレ修正
----------------------------------------------------------*/
#message-top {
  content: "";
  padding-top: 22vw;
  margin-top: -22vw;
}
@media screen and (min-width: 480px) {
  #message-top {
    padding-top: min(22vw, 100px);
    margin-top: max(-22vw, -100px);
  }
}
@media screen and (min-width: 1025px) {
  #message-top {
    padding-top: 140px;
    margin-top: -140px;
  }
}

/* 左右ボタン
----------------------------------------------------------*/
#member-wrapper {
  position: relative;
}
#slide-btn {
  position: absolute;
  top: 65.5vw;
  left: 7.5vw;
  display: flex;
  justify-content: space-between;
  width: 85vw;
  margin: 0 auto;
  z-index: 2;
}
#prev, #next {
  padding: 5vw 2.5vw;
  cursor: pointer;
}
#prev div {
  width: 4vw;
  height: 8vw;
  background-color: var(--blue);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
#next div {
  width: 4vw;
  height: 8vw;
  background-color: var(--blue);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (hover: none) {
  #prev:active div, #next:active div {
    background-color: var(--lightblue);
  }
}
@media (hover: hover) {
  #prev:hover div, #next:hover div {
    background-color: var(--lightblue);
  }
}
@media screen and (min-width: 480px) {
  #slide-btn {
    top: calc(10px + min(50vw, 200px) + min(8vw, 60px) + min(4vw, 18px));
    left: calc(50vw - min(45vw, 350px) + min(5vw, 50px) - 10px);
    width: min(83vw, 620px);
  }
  #prev, #next {
    padding: 25px 15px;
  }
  #prev div {
    width: min(4vw, 20px);
    height: min(8vw, 40px);
  }
  #next div {
    width: min(4vw, 20px);
    height: min(8vw, 40px);
  }
}
@media screen and (min-width: 1025px) {
  #slide-btn {
    top: 125px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 950px;
  }
}

/* メッセージ
----------------------------------------------------------*/
/* 表示範囲 */
#member-wrapper {
  width: 100vw;
  height: 100%;
  overflow: hidden;
}
/* スライド全体 */
#member-slide {
  display: flex;
  width: 600%; /* コンテンツ数×100% */
  height: 100%;
  transition: all 0.3s;
}

/* 中身 */
.member-container {
  position: relative;
  width: 90vw;
  height: 150vw; /* 開く前に見えている部分の高さ */
  margin: 2.5vw 5vw;
  padding: 0 5vw;
  background-color: #fff;
  border: 4px solid var(--blue);
  border-radius: 15px;
  box-shadow: 0 0 7px #505050;
  overflow: hidden;
  transition: all 0.5s;
}
.member-container.active {
  height: auto;
  padding-bottom: 20vw;
}
/* 写真 */
.member-container img {
  width: 50vw;
  margin-top: 8vw;
  border-radius: 15px;
}
/* 肩書 */
.member-position p {
  margin-top: 5vw;
  margin-bottom: -7vw;
  font-weight: 500;
  font-size: 4.5vw;
  line-height: 1em;
}
/* 名前 */
.member-name {
  margin-top: 7vw;
  font-weight: 800;
  font-size: 8vw;
}
/* 区切り線 */
.member-name-underline {
  display: block;
  width: 100%;
  margin: 7vw auto;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #b7282e 10%, #db8449 20%, #ecdf2b 40%, #7BAA17 60%, #507ea4 80%, #624498 100%);
  border-image-slice: 1;
}
/* メッセージ文 */
.member-message {
  text-align: left;
  font-weight: 500;
  font-size: 4vw;
}
.member-message span {
  display: block;
  width: 40vw;
  padding-top: 1em;
  margin-bottom: -0.5em;
  border-bottom: 1px solid #000;
  border-image-slice: 1;
}
@media screen and (min-width: 480px) {
  /* 中身 */
  .member-container {
    width: min(90vw, 700px);
    height: min(150vw, 630px); /* 開く前に見えている部分の高さ */
    margin: 10px auto;
    padding: 0 min(5vw, 50px);
    border: 6px solid var(--blue);
    border-radius: 20px;
    box-shadow: 0 0 10px #505050;
  }
  .member-container.active {
    padding-bottom: min(20vw, 120px);
  }
  /* 写真 */
  .member-container img {
    width: min(50vw, 200px);
    margin-top: min(8vw, 60px);
  }
  /* 肩書 */
  .member-position p {
    margin-top: min(5vw, 20px);
    margin-bottom: max(-7vw, -30px);
    font-size: min(4.5vw, 20px);
  }
  /* 名前 */
  .member-name {
    margin-top: min(7vw, 30px);
    font-size: min(8vw, 35px);
  }
  /* 区切り線 */
  .member-name-underline {
    margin: min(7vw, 50px) auto;
    border-bottom: 4px solid;
  }
  /* メッセージ文 */
  .member-message {
    font-size: min(4vw, 17px);
    line-height: 1.5em;
  }
  .member-message span {
    width: min(40vw, 250px);
    border-bottom: 2px solid #000;
  }
}
@media screen and (min-width: 1025px) {
  /* 中身 */
  .member-container {
    width: 1000px;
    height: min(150vw, 470px); /* 開く前に見えている部分の高さ */
    padding: 0 100px;
    border-radius: 25px;
    text-align: left;
  }
  /* 写真 */
  .member-container img {
    margin-top: 30px;
  }
  /* 肩書 */
  .member-position {
    display: inline-block;
    margin-top: 30px;
    vertical-align: middle;

  }
  .member-position p {
    margin-bottom: -30px;
    margin-left: 50px;
  }
  /* 名前 */
  .member-name {
    display: inline-block;
    margin-top: 30px;
    margin-left: 50px;
    vertical-align: middle;
  }
  /* 区切り線 */
  .member-name-underline {
    margin: 30px auto;
  }
}

/* テキストを隠すグラデーション */
.member-hidden {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45vw; /* グラデーションの高さ */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 80%);
  z-index: 1;
}
.member-hidden.active {
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 480px) {
  .member-hidden {
    height: min(45vw, 200px); /* グラデーションの高さ */
  }
}
@media screen and (min-width: 1025px) {
}

/* 続きを読む */
.member-btn-open {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 0);
  width: 50vw;
  height: 10vw;
  background-color: var(--blue);
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 7px #5f5f5f;
  cursor: pointer;
}
@media (hover: none) {
  .member-btn-open:active {
    background-color: var(--lightblue);
  }
}
@media (hover: hover) {
  .member-btn-open:hover {
    background-color: var(--lightblue);
  }
}
.member-btn-open p {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 5vw;
  line-height: 1em;
}
.member-btn-open::before {
  display: inline-block;
  margin-right: 3vw;
  margin-bottom: -0.8vw;
  content: "";
  width: 4vw;
  height: 4vw;
  background-image: url(../img/arrow_wh.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 480px) {
  .member-btn-open {
    bottom: 40px;
    width: min(50vw, 250px);
    height: min(10vw, 50px);
    border-radius: 20px;
  }
  .member-btn-open p {
    font-size: min(5vw, 23px);
  }
  .member-btn-open::before {
    margin-right: min(3vw, 10px);
    margin-bottom: max(-0.8vw, -4px);
    width: min(4vw, 20px);
    height: min(4vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
}

/* 閉じる */
.member-btn-close {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 0);
  width: 50vw;
  height: 10vw;
  background-color: var(--blue);
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 7px #5f5f5f;
  cursor: pointer;
}
@media (hover: none) {
  .member-btn-close:active {
    background-color: var(--lightblue);
  }
}
@media (hover: hover) {
  .member-btn-close:hover {
    background-color: var(--lightblue);
  }
}
.member-btn-close p {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 5vw;
  line-height: 1em;
}
.member-btn-close::before {
  display: inline-block;
  margin-right: 3vw;
  margin-bottom: 0.3vw;
  content: "";
  width: 4vw;
  height: 4vw;
  background-image: url(../img/arrow_wh.png);
  background-repeat: no-repeat;
  background-size: contain;
  rotate: 180deg;
}
@media screen and (min-width: 480px) {
  .member-btn-close {
    bottom: 40px;
    width: min(50vw, 250px);
    height: min(10vw, 50px);
    border-radius: 20px;
  }
  .member-btn-close p {
    font-size: min(5vw, 23px);
  }
  .member-btn-close::before {
    margin-right: min(3vw, 10px);
    margin-bottom: max(-0.8vw, 1px);
    width: min(4vw, 20px);
    height: min(4vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
}

/* インジケーター
----------------------------------------------------------*/
#indicator {
  width: 80vw;
  margin: 2vw auto 0;
}
.member-list {
  display: inline-block;
  margin: 2vw 1vw 0;
}
.member-list img {
  width: 10vw;
  height: auto;
  border-radius: 50%;
  opacity: 0.5;
}
.member-list img.active {
  opacity: 1;
  box-shadow: 0 0 5px #5f5f5f;
}
@media screen and (min-width: 480px) {
  #indicator {
    width: min(80vw, 700px);
    margin: min(2vw, 10px) auto 0;
  }
  .member-list {
    margin: min(2vw, 10px) min(1vw, 5px) 0;
  }
  .member-list img {
    width: min(10vw, 70px);
  }
}
@media screen and (min-width: 1025px) {
}


/*
================================================================================
  history
================================================================================
*/
/* イントロ
----------------------------------------------------------*/
/* ページタイトル画像引き延ばし */
#history-intro #pagetitle img {
  object-fit: fill;
}

/* 色分けタグ
----------------------------------------------------------*/
#history-tag-wrap {
  width: 82vw;
  text-align: right;
  margin: 0 auto;
}
.history-tag {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding: 1.8vw 3.5vw;
  color: #fff;
  font-size: 3.5vw;
  font-weight: 800;
  line-height: 1em;
  letter-spacing: 0.1em;
  border-radius: 2vw;
}
.history-tag:nth-of-type(1) {
  background-color: var(--blue);
  margin-right: 6vw;
}
.history-tag:nth-of-type(2) {
  background-color: #db8449;
  margin-right: 6vw;
}
.history-tag:nth-of-type(3) {
  background-color: #7BAA17;
}
.history-tag:nth-of-type(1)::before {
  position: absolute;
  top: 1.8vw;
  left: -5vw;
  display: inline-block;
  content: "";
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  background-color: var(--blue);
}
.history-tag:nth-of-type(2)::before {
  position: absolute;
  top: 1.8vw;
  left: -5vw;
  display: inline-block;
  content: "";
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  background-color: #db8449;
}
.history-tag:nth-of-type(3)::before {
  position: absolute;
  top: 1.8vw;
  left: -5vw;
  display: inline-block;
  content: "";
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  background-color: #7BAA17;
}
@media screen and (min-width: 480px) {
  #history-tag-wrap {
    width: fit-content;
    padding-left: min(5vw, 35px);
  }
  .history-tag {
    padding: min(1.8vw, 12px) min(3.5vw, 24px);
    font-size: min(3.5vw, 20px);
    border-radius: min(2vw, 10px);
  }
  .history-tag:nth-of-type(1) {
    margin-right: min(6vw, 48px);
  }
  .history-tag:nth-of-type(2) {
    margin-right: min(6vw, 48px);
  }
  .history-tag:nth-of-type(1)::before {
    top: min(1.8vw, 10px);
    left: max(-5vw, -35px);
    width: min(4vw, 25px);
    height: min(4vw, 25px);
  }
  .history-tag:nth-of-type(2)::before {
    top: min(1.8vw, 10px);
    left: max(-5vw, -35px);
    width: min(4vw, 25px);
    height: min(4vw, 25px);
  }
  .history-tag:nth-of-type(3)::before {
    top: min(1.8vw, 10px);
    left: max(-5vw, -35px);
    width: min(4vw, 25px);
    height: min(4vw, 25px);
  }
}
@media screen and (min-width: 1025px) {
  .history-tag:nth-of-type(1) {
    margin-right: 80px;
  }
  .history-tag:nth-of-type(2) {
    margin-right: 80px;
  }
}

/* ジャンプ時ヘッダー分ズレ修正
----------------------------------------------------------*/
.jump-position {
  content: "";
  padding-top: 50vw;
  margin-top: -50vw;
}
@media screen and (min-width: 480px) {
  .jump-position {
    padding-top: min(50vw, 300px);
    margin-top: max(-50vw, -300px);
  }
}

/* 表示切替
----------------------------------------------------------*/
.history-visible {
  position: absolute;
  opacity: 0;
  display: none;
  z-index: -10;
}
.history-visible.active {
  position: sticky;
  opacity: 1;
  display: block;
  z-index: 0;
  border: 1px solid transparent;
}

/* 年
----------------------------------------------------------*/
.one-year {
  position: relative;
}
.history-year {
  width: 80vw;
  margin: 0 auto;
  text-align: left;
}
.history-year p {
  display: inline-block;
  vertical-align: middle;
  margin: 10vw 0 2vw;
  width: fit-content;
  color: var(--blue);
  font-weight: 800;
  font-size: 12vw;
  line-height: 1em;
  text-align: left;
}
.history-year p:nth-of-type(2) {
  margin-left: 3px;
  font-size: 10vw;
  font-weight: 900;
  line-height: 1em;
}
@media screen and (min-width: 480px) {
  .history-year {
    width: min(80vw, 650px);
    margin-top: min(10vw, 20px);
  }
  .history-year p {
    margin: min(10vw, 30px) 0 min(2vw, 5px);
    font-size: min(12vw, 50px);
  }
  .history-year p:nth-of-type(2) {
    font-size: min(10vw, 40px);
  }
}
@media screen and (min-width: 1025px) {
  .history-year {
    width: 950px;
    margin-top: 50px;
  }
}

/* open
----------------------------------------------------------*/
.history-open {
  position: absolute;
  top: -15vw;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80vw;
  height: 15vw;
  cursor: pointer;
}
.history-open p {
  position: absolute;
  top: 8vw;
  right: 0;
  color: var(--blue);
  font-size: 4vw;
  font-weight: 300;
}
/* 矢印 */
.history-open p::after {
  display: inline-block;
  margin-bottom: -0.7vw;
  margin-left: 5px;
  content: "";
  width: 2.5vw;
  height: 2.5vw;
  background-image: url(../img/arrow_bl.png);
  background-repeat: no-repeat;
  background-size: contain;
}
/* 各年区切り線 */
.history-underline {
  display: block;
  width: 80vw;
  margin: 0 auto;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #b7282e 10%, #db8449 20%, #ecdf2b 40%, #7BAA17 60%, #507ea4 80%, #624498 100%);
  border-image-slice: 1;
}
@media screen and (min-width: 480px) {
  .history-open {
    top: max(-15vw, -80px);
    width: min(80vw, 650px);
    height: min(15vw, 80px);
  }
  .history-open p {
    top: min(9vw, 40px);
    font-size: min(4vw, 25px);
  }
  /* 矢印 */
  .history-open p::after {
    margin-bottom: max(-0.7vw, -2px);
    width: min(2.5vw, 15px);
    height: min(2.5vw, 15px);
  }
  /* 各年区切り線 */
  .history-underline {
    width: min(80vw, 650px);
    border-bottom: 3px solid;
  }
}
@media screen and (min-width: 1025px) {
  .history-open {
    width: 950px;
  }
  .history-open p {
    top: 48px;
    font-size: 20px;
  }
  /* 矢印 */
  .history-open p::after {
    width: 12px;
    height: 12px;
  }
  /* 各年区切り線 */
  .history-underline {
    width: 950px;
    border-bottom: 4px solid;
  }
}

/* 縦ライン
----------------------------------------------------------*/
.history-sideline-wrap {
  position: relative;
  width: 80vw;
  margin: 0 auto;
}
.history-sideline {
  position: absolute;
  top: 11vw;
  left: 1.9vw;
  display: block;
  margin: 0 auto;
  border-left: 4px solid;
  border-image: linear-gradient(to bottom, #b7282e 10%, #db8449 20%, #ecdf2b 40%, #7BAA17 60%, #507ea4 80%, #624498 100%);
  border-image-slice: 1;
}
@media screen and (min-width: 480px) {
  .history-sideline-wrap {
    width: min(80vw, 600px);
  }
  .history-sideline {
    top: min(11vw, 60px);
    left: 0;
    border-left: 6px solid;
  }
}
@media screen and (min-width: 1025px) {
  .history-sideline-wrap {
    width: 950px;
  }
  .history-sideline {
    top: -30px;
    left: 200px;
    border-left: 6px solid;
  }
}

/* 出来事
----------------------------------------------------------*/
.history-cnt-wrap {
  width: 90vw;
  margin: 0 auto;
}
.history-cnt  {
  margin-top: 7vw;
  margin-left: 15.5vw;
  text-align: left;
}
/* 日付(活動全般) */
.history-general {
  position: relative;
  display: inline-block;
  width: 30vw;
  padding: 1.8vw 3.5vw;
  color: #fff;
  font-size: 4vw;
  font-weight: 800;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 2vw;
  background-color: var(--blue);
}
.history-general::before {
  position: absolute;
  top: 1.8vw;
  left: -10vw;
  display: inline-block;
  content: "";
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  background-color: var(--blue);
}
/* 日付(勉強会) */
.history-study {
  position: relative;
  display: inline-block;
  width: 30vw;
  padding: 1.8vw 3.5vw;
  color: #fff;
  font-size: 4vw;
  font-weight: 800;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 2vw;
  background-color: #db8449;
}
.history-study::before {
  position: absolute;
  top: 1.8vw;
  left: -10vw;
  display: inline-block;
  content: "";
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  background-color: #db8449;
}
/* 日付(メディア) */
.history-media {
  position: relative;
  display: inline-block;
  width: 30vw;
  padding: 1.8vw 0;
  color: #fff;
  font-size: 4vw;
  font-weight: 800;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 2vw;
  background-color: #7BAA17;
}
.history-media::before {
  position: absolute;
  top: 1.8vw;
  left: -10vw;
  display: inline-block;
  content: "";
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  background-color: #7BAA17;
}
/* 1年の最初 */
.start {
  margin-top: 6vw;
}
/* 1年の最後 */
.end {
  margin-bottom: 6vw;
}
@media screen and (min-width: 480px) {
  .history-cnt-wrap {
    width: min(80vw, 600px);
  }
  .history-cnt  {
    margin-top: min(7vw, 30px);
    margin-left: min(8.5vw, 60px);
  }
  /* 日付(活動全般) */
  .history-general {
    width: min(30vw, 170px);
    padding: min(1.8vw, 10px) 0;
    font-size: min(4vw, 25px);
    border-radius: min(2vw, 12px);
  }
  .history-general::before {
    top: min(1.8vw, 10px);
    left: max(-10vw, -70px);
    width: min(4vw, 27px);
    height: min(4vw, 27px);
  }
  /* 日付(勉強会) */
  .history-study {
    width: min(30vw, 170px);
    padding: min(1.8vw, 10px) 0;
    font-size: min(4vw, 25px);
    border-radius: min(2vw, 12px);
  }
  .history-study::before {
    top: min(1.8vw, 10px);
    left: max(-10vw, -70px);
    width: min(4vw, 27px);
    height: min(4vw, 27px);
  }
  /* 日付(メディア) */
  .history-media {
    width: min(30vw, 170px);
    padding: min(1.8vw, 10px) 0;
    font-size: min(4vw, 25px);
    border-radius: min(2vw, 12px);
  }
  .history-media::before {
    top: min(1.8vw, 10px);
    left: max(-10vw, -70px);
    width: min(4vw, 27px);
    height: min(4vw, 27px);
  }
  /* 1年の最初 */
  .start {
    margin-top: min(6vw, 30px);
  }
  /* 1年の最後 */
  .end {
    margin-bottom: min(6vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
  .history-cnt-wrap {
    width: 950px;
  }
  .history-cnt  {
    margin-left: 230px;
    margin-bottom: 50px;
  }
  /* 日付(活動全般) */
  .history-general {
    width: 110px;
    padding: 7px 0;
    font-size: 19px;
  }
  .history-general::before {
    top: 5px;
    left: -37px;
    width: 20px;
    height: 20px;
  }
  /* 日付(勉強会) */
  .history-study {
    width: 110px;
    padding: 7px 0;
    font-size: 19px;
  }
  .history-study::before {
    top: 5px;
    left: -37px;
    width: 20px;
    height: 20px;
  }
  /* 日付(メディア) */
  .history-media {
    width: 110px;
    padding: 7px 0;
    font-size: 19px;
  }
  .history-media::before {
    top: 5px;
    left: -37px;
    width: 20px;
    height: 20px;
  }
  /* 1年の最初 */
  .start {
    margin-top: -45px;
  }
}

/* 更新中 */
#update {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding: 1.8vw 0;
  color: var(--blue);
  font-size: 5vw;
  font-weight: 800;
  line-height: 1em;
  letter-spacing: 0.1em;
}
#update::before {
  position: absolute;
  top: 1.8vw;
  left: -10vw;
  display: inline-block;
  content: "";
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  background-color: var(--blue);
}
@media screen and (min-width: 480px) {
  #update {
    padding: min(1vw, 3px);
    font-size: min(5vw, 35px);
  }
  #update::before {
    top: min(1.8vw, 10px);
    left: max(-10vw, -70px);
    width: min(4vw, 27px);
    height: min(4vw, 27px);
  }
}
@media screen and (min-width: 1025px) {
  #update {
    margin-top: 7px;
    padding: 0;
    font-size: 30px;
  }
  #update::before {
    top: 7px;
    left: -37px;
    width: 20px;
    height: 20px;
  }
}

/* 詳細 */
.history-event {
  margin-top: 2vw;
  font-size: 3.5vw;
  font-weight: 500;
}
/* 勉強会サブタイトル */
.history-event span {
  font-size: 2.8vw;
}
@media screen and (min-width: 480px) {
  .history-event {
    margin-top: min(2vw, 10px);
    font-size: min(3.5vw, 23px);
  }
  /* 勉強会サブタイトル */
  .history-event span {
    font-size: min(2.8vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
  .history-event {
    display: inline-block;
    vertical-align: top;
    margin-top: 3px;
    margin-left: 10px;
    font-size: 18px;
  }
  /* 勉強会サブタイトル */
  .history-event span {
    font-size: 15px;
  }
}

/* 写真 */
.history-img {
  width: fit-content;
}
/* 縦長の場合 */
.vertical {
  margin-top: 5px;
  border-radius: 10px;
  width: auto;
  height: 50vw;
}
/* 横長の場合 */
.landscape {
  margin-top: 5px;
  border-radius: 10px;
  width: 50vw;
  height: auto;
}
/* 拡大マーク */
.history-img::after {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 0px;
  margin-left: 5px;
  content: "";
  width: 4vw;
  height: 4vw;
  background-image: url(../img/zoom_in.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 480px) {
  /* 縦長の場合 */
  .vertical {
    margin-top: 10px;
    border-radius: 15px;
    height: min(50vw, 300px);
  }
  /* 横長の場合 */
  .landscape {
    margin-top: 10px;
    border-radius: 15px;
    width: min(50vw, 300px);
  }
  /* 拡大マーク */
  .history-img::after {
    margin-left: 7px;
    width: min(4vw, 20px);
    height: min(4vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
  .history-img {
    width: fit-content;
    margin-left: 120px;
  }
  /* 縦長の場合 */
  .vertical {
    margin-top: 5px;
    height: 200px;
  }
  /* 横長の場合 */
  .landscape {
    margin-top: 5px;
    width: 200px;
  }
  /* 拡大マーク */
  .history-img::after {
    margin-left: 8px;
    width: 16px;
    height: 16px;
  }
}

/* close
----------------------------------------------------------*/
.history-close {
  position: relative;
  top: -3vw;
  left: 50%;
  transform: translate(-50%, 0);
  margin-bottom: -3vw;
  width: 80vw;
  height: 9vw;
  cursor: pointer;
}
.history-close p {
  position: absolute;
  bottom: 2vw;
  right: 0;
  color: var(--blue);
  font-size: 4vw;
  font-weight: 300;
}
/* 矢印 */
.history-close p::after {
  display: inline-block;
  margin-bottom: 0.3vw;
  margin-left: 5px;
  content: "";
  width: 2.5vw;
  height: 2.5vw;
  background-image: url(../img/arrow_bl.png);
  background-repeat: no-repeat;
  background-size: contain;
  rotate: 180deg;
}
@media screen and (min-width: 480px) {
  .history-close {
    top: max(-3vw, -5px);
    margin-bottom: max(-3vw, -5px);
    width: min(80vw, 650px);
    height: min(15vw, 40px);
  }
  .history-close p {
    bottom: min(3vw, 3px);
    font-size: min(4vw, 25px);
  }
  /* 矢印 */
  .history-close p::after {
    width: min(2.5vw, 15px);
    height: min(2.5vw, 15px);
  }
}
@media screen and (min-width: 1025px) {
  .history-close {
    width: 950px;
  }
  .history-close p {
    font-size: 20px;
  }
  /* 矢印 */
  .history-close p::after {
    margin-bottom: 1px;
    width: 12px;
    height: 12px;
  }
}


/*
================================================================================
  parade
================================================================================
*/


/*
================================================================================
  study
================================================================================
*/
/* イントロ
----------------------------------------------------------*/
.study-p-bl {
  font-weight: 800;
  color: var(--blue);
  font-size: 4.5vw;
  margin: 10vw auto;
}
#study-intro > img {
  width: 90vw;
  height: auto;
}
@media screen and (min-width: 480px) {
  .study-p-bl {
    font-size: 20px;
    margin: 40px auto;
  }
  #study-intro > img {
    width: min(75vw, 450px);
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  .study-p-bl {
    margin: 50px auto;
    font-size: 25px;
    line-height: 1.7em;
  }
  #study-intro > img {
    width: 550px;
    height: auto;
  }
}

/* 概要
----------------------------------------------------------*/
.summary {
  margin: 8vw auto;
}
.summary-bl {
  width: fit-content;
  margin: 0 auto 3vw;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  background-color: var(--blue);
  border-radius: 2.5vw;
  padding: 3vw 4vw;
  font-size: 4.5vw;
}
.summary-p {
  font-weight: 500;
  font-size: 4.5vw;
  line-height: 1.2em;
}
.summary-p-small {
  font-weight: 500;
  font-size: 3.5vw;
}
.summary-p-link {
  margin-top: 10vw;
  margin-bottom: 7vw;
  font-weight: 500;
  font-size: 4.5vw;
  line-height: 1.2em;
}
@media screen and (min-width: 480px) {
  .summary-wrap {
    width: fit-content;
    margin: 0 auto;
    text-align: left;
  }
  .summary {
    margin: min(8vw, 40px) auto;
  }
  .summary-bl {
    display: inline-block;
    margin: 0 min(2vw, 10px) 0 0;
    border-radius: min(2vw, 10px);
    padding: min(2vw, 10px) min(3vw, 15px);
    font-size: min(3vw, 20px);
    vertical-align: middle;
  }
  .summary-p {
    display: inline-block;
    margin-left: min(0.5vw, 5px);
    font-size: min(3vw, 20px);
    vertical-align: middle;
  }
  .summary-p-small {
    display: inline-block;
    margin-bottom: -4px;
    font-size: min(2.5vw, 15px);
    vertical-align: middle;
  }
  .summary-p-link {
    margin-top: min(10vw, 50px);
    margin-bottom: min(7vw, 30px);
    font-size: min(3vw, 20px);
  }
}
@media screen and (min-width: 1025px) {
  .summary {
    margin: 40px auto;
  }
  .summary-bl {
    margin: 0 10px 0 0;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 20px;
  }
  .summary-p {
    margin-left: 5px;
    font-size: 20px;
  }
  .summary-p-small {
    font-size: 15px;
  }
  .summary-p-link {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 20px;
  }
}

/* 当日の流れ
----------------------------------------------------------*/
.flow {
  width: fit-content;
  margin: 0 15vw 7vw;
  background-color: #fff;
  border: 4px solid var(--blue);
  border-radius: 10px;
  text-align: left;
}
.flow img {
  display: block;
  width: 70vw;
  height: 25vw;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
.flow p:nth-of-type(1) {
  margin: 2vw 2vw 1vw;
  font-weight: 500;
  font-size: 3.5vw;
  line-height: 1.5em;
}
.flow p:nth-of-type(2) {
  margin: 0 0 2vw 6vw;
  font-weight: 400;
  font-size:2.8vw;
  line-height: 1.5em;
}
@media screen and (min-width: 480px) {
  .flow {
    margin: 0 auto min(7vw, 30px);
    width: min(70vw, 400px);
  }
  .flow img {
    width: min(70vw, 400px);
    height: min(25vw, 140px);
  }
  .flow p:nth-of-type(1) {
    margin: min(2vw, 10px) min(2vw, 10px) min(1vw, 5px);
    font-size: min(3.5vw, 23px);
  }
  .flow p:nth-of-type(2) {
    margin: 0 0 min(2vw, 10px) min(6vw, 40px);
    font-size: min(2.8vw, 18px);
  }
}
@media screen and (min-width: 1025px) {
  .flow {
    display: inline-block;
    width: min(30vw, 360px);
    margin: 0 5px;
  }
  .flow img {
    width: min(30vw, 360px);
    height: min(10vw, 120px);
  }
  .flow p:nth-of-type(1) {
    margin: 10px 10px 5px;
    font-size: min(1.8vw, 22px);
    letter-spacing: -0.05em;
  }
  .flow p:nth-of-type(2) {
    margin: 0 0 10px min(3vw, 35px);
    font-size: min(1.4vw, 16px);
    letter-spacing: -0.05em;
  }
}

/* こんな方におすすめ
----------------------------------------------------------*/
#h2-small {
  font-size: 9vw;
  letter-spacing: -0.05em;
}
.recommend-wrap {
  position: relative;
  width: 90vw;
  height: 161vw;
  margin: 5vw auto 0;
}
.recommend-wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-image: linear-gradient(to right bottom, rgba(183, 40, 47, 0.2) 10%, rgba(219, 131, 73, 0.2) 20%, rgba(236, 223, 43, 0.2) 40%, rgba(123, 170, 23, 0.2) 60%, rgba(80, 126, 164, 0.2) 80%, rgba(97, 68, 152, 0.2) 100%);
  filter: blur(2vw);
  border-radius: 100px;
  z-index: -1;
}
.recommend {
  position: absolute;
  width: fit-content;
  height: fit-content;
}
.recommend:nth-of-type(1) {
  top: 5vw;
  left: 5vw;
}
.recommend:nth-of-type(2) {
  top: 42vw;
  right: 5vw;
}
.recommend:nth-of-type(3) {
  top: 80vw;
  left: 5vw;
}
.recommend:nth-of-type(4) {
  top: 118vw;
  right: 5vw;
}
.recommend img {
  width: 65vw;
  filter: blur(1vw);
}
.recommend p {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: var(--blue);
  font-size: 5vw;
  font-weight: 600;
  line-height: 1.3em;
}
@media screen and (min-width: 480px) {
  #h2-small {
    font-size: min(7vw, 45px);
    letter-spacing: inherit;
  }
  .recommend-wrap {
    width: min(90vw, 550px);
    height: min(161vw, 870px);
    margin: min(5vw,30px) auto 0;
  }
  .recommend-wrap::before {
    filter: blur(min(2vw, 10px));
    border-radius: 150px;
  }
  .recommend:nth-of-type(1) {
    top: min(5vw,30px);
    left: min(5vw,30px);
  }
  .recommend:nth-of-type(2) {
    top: min(42vw,230px);
    right: min(5vw,30px);
  }
  .recommend:nth-of-type(3) {
    top: min(80vw,430px);
    left: min(5vw,30px);
  }
  .recommend:nth-of-type(4) {
    top: min(118vw,630px);
    right: min(5vw,30px);
  }
  .recommend img {
    width: min(65vw, 350px);
    filter: blur(5px);
  }
  .recommend p {
    font-size: min(5vw,25px);
    line-height: 1.2em;
  }
}
@media screen and (min-width: 1025px) {
  .recommend-wrap {
    width: min(90vw, 1120px);
    height: min(37.5vw, 410px);
  }
  .recommend-wrap::before {
    border-radius: 130px;
  }
  .recommend:nth-of-type(1) {
    top: 30px;
    left: min(5vw,40px);
  }
  .recommend:nth-of-type(2) {
    top: 170px;
    left: min(22vw,270px);
  }
  .recommend:nth-of-type(3) {
    top: 30px;
    left: min(38vw,500px);
  }
  .recommend:nth-of-type(4) {
    top: 170px;
    left: min(55vw,730px);
  }
  .recommend img {
    width: min(30vw, 350px);
  }
  .recommend p {
    font-size: min(2.2vw,25px);
  }
}

/* 次回予告
----------------------------------------------------------*/
.study-next {
  position: relative;
  width: 80vw;
  margin: 0 auto;
  background-color: #fff;
  border: 4px solid var(--blue);
  border-radius: 15px;
  box-shadow: 2px 2px 5px #808080;
}
.next-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 60vw;
  margin: 0 auto;
  padding: 3vw 0 1vw;
  border-bottom: 1.5px solid #cfcfcf;
  line-height: 1em;
}
.next-p {
  font-weight: 500;
  font-size: 3.5vw;
  line-height: 1em;
}
.next-date {
  font-weight: 300;
  font-size: 3vw;
  line-height: 1em;
}
.next-title {
  padding: 2vw 0;
}
.next-subtitle {
  margin-top: 1vw;
  font-weight: 500;
  font-size: 3vw;
  line-height: 1em;
}
.next-flier {
  margin: 0 auto 3vw;
  width: fit-content;
}
.next-flier a {
  font-weight: 400;
  font-size: 3vw;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.next-flier a::after {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 3px;
  content: "";
  width: 4vw;
  height: 4vw;
  background-image: url(../img/pdf_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.next-flier:hover a {
  color: var(--lightblue);
}
.next-flier:hover a::after {
  background-image: url(../img/pdf_icon_hover.png);
}
@media screen and (min-width: 480px) {
  .study-next {
    width: min(80vw, 600px);
  }
  .next-info {
    width: min(60vw, 450px);
    padding: min(3vw, 24px) 0 min(1vw, 8px);
    border-bottom: 2px solid #cfcfcf;
  }
  .next-p {
    font-size: min(3.5vw, 25px);
  }
  .next-date {
    font-size: min(2.5vw, 18px);
  }
  .next-title {
    padding: min(2vw, 16px) 0;
  }
  .next-subtitle {
    margin-top: min(1vw, 8px);
    font-size: min(3vw, 20px);
  }
  .next-flier {
    margin: 0 auto min(3vw, 24px);
  }
  .next-flier a {
    font-size: min(3vw, 20px);
    text-underline-offset: 5px;
  }
  .next-flier a::after {
    margin-left: 3px;
    content: "";
    width: min(4vw, 25px);
    height: min(4vw, 25px);
  }
}

/* バックナンバー
----------------------------------------------------------*/
.backNo {
  position: relative;
  width: 80vw;
  margin: 0 auto;
  background-color: #fff;
  border: 4px solid var(--blue);
  border-radius: 15px;
  box-shadow: 2px 2px 5px #808080;
}
.backNo:nth-of-type(1), .backNo:nth-of-type(2) {
  margin-bottom: 4vw;
}
.new {
  position: absolute;
  top: 2.4vw;
  left: 0;
  transform: translate(-50%, 0);
  padding: 1vw 2vw;
  color: #fff;
  background-color: var(--blue);
  border-radius: 1.5vw;
  font-size: 3vw;
  font-weight: 800;
  line-height: 1em;
}
.backNo-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 60vw;
  margin: 0 auto;
  padding: 3vw 0 1vw;
  border-bottom: 1.5px solid #cfcfcf;
  line-height: 1em;
}
.backNo-p {
  font-weight: 500;
  font-size: 3.5vw;
  line-height: 1em;
}
.backNo-date {
  font-weight: 300;
  font-size: 3vw;
  line-height: 1em;
}
.backNo-title {
  padding: 2vw 0 3vw;
}
.backNo-subtitle {
  margin-top: 1vw;
  font-weight: 500;
  font-size: 3vw;
  line-height: 1em;
}
@media screen and (min-width: 480px) {
  .backNo {
    width: min(80vw, 600px);
  }
  .backNo:nth-of-type(1), .backNo:nth-of-type(2) {
    margin-bottom: min(4vw, 30px);
  }
  .new {
    top: min(2.4vw, 19px);
    padding: min(1vw, 8px) min(2vw, 16px);
    border-radius: min(1.5vw, 10px);
    font-size: min(3vw, 20px);
  }
  .backNo-info {
    width: min(60vw, 450px);
    padding: min(3vw, 24px) 0 min(1vw, 8px);
    border-bottom: 2px solid #cfcfcf;
  }
  .backNo-p {
    font-size: min(3.5vw, 25px);
  }
  .backNo-date {
    font-size: min(2.5vw, 18px);
  }
  .backNo-title {
    padding: min(2vw, 16px) 0 min(3vw, 24px);
  }
  .backNo-subtitle {
    margin-top: min(1vw, 8px);
    font-size: min(3vw, 20px);
  }
}


/*
================================================================================
  newsletter
================================================================================
*/


/*
================================================================================
  contact
================================================================================
*/
/* 見出し
----------------------------------------------------------*/
#contact-h2 {
  margin-top: 7vw;
}
@media screen and (min-width: 480px) {
  #contact-h2 {
    margin-top: min(7vw, 50px);
  }
}

/* ステップバー
----------------------------------------------------------*/
.contact-step {
  display: inline-block;
  margin: 4vw 7.5vw 0;
}
/* 数字 */
.contact-step div {
  position: relative;
  font-size: 6vw;
  font-weight: 300;
  color: #b1b1b1;
  line-height: 1em;
}
/* 丸 */
.contact-step div::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 10vw;
  height: 10vw;
  border: 1.5px solid #b1b1b1;
  border-radius: 50%;
  background-color: #fff;
  z-index: -1;
}
/* バー */
.contact-step:nth-of-type(2) div::after,
.contact-step:nth-of-type(3) div::after {
  position: absolute;
  top: -2vw;
  left: -20vw;
  display: block;
  content: "";
  width: 20vw;
  height: 5vw;
  border-bottom: 1.5px solid #b1b1b1;
  z-index: -2;
}
/* 下の文字 */
.contact-step p {
  margin-top: 2vw;
  font-size: 3vw;
  font-weight: 400;
  color: #b1b1b1;
}
/* 進捗に合わせて色付け */
.contact-step.active div {
  color: #fff;
}
.contact-step.active div::before {
  border: 1.5px solid var(--blue);
  background-color: var(--blue);
}
.contact-step.active div::after {
  border-bottom: 1.5px solid var(--blue);
}
.contact-step.active p {
  color: var(--blue);
  font-weight: 500;
}
@media screen and (min-width: 480px) {
  .contact-step {
    margin: min(4vw, 30px) min(7.5vw, 60px) 0;
  }
  /* 数字 */
  .contact-step div {
    font-size: min(6vw, 30px);
  }
  /* 丸 */
  .contact-step div::before {
    width: min(10vw, 55px);
    height: min(10vw, 55px);
    border: 2px solid #b1b1b1;
  }
  /* バー */
  .contact-step:nth-of-type(2) div::after,
  .contact-step:nth-of-type(3) div::after {
    top: max(-2vw, -15px);
    left: max(-20vw, -150px);
    width: min(20vw, 150px);
    height: min(5vw, 30px);
    border-bottom: 2px solid #b1b1b1;
  }
  /* 下の文字 */
  .contact-step p {
    margin-top: min(2vw, 15px);
    font-size: min(3vw, 15px);
  }
  /* 進捗に合わせて色付け */
  .contact-step.active div::before {
    border: 2px solid var(--blue);
  }
  .contact-step.active div::after {
    border-bottom: 2px solid var(--blue);
  }
}

/* フォーム中身
----------------------------------------------------------*/
/* フォーム全体 */
.contact-form table {
  width: 80vw;
  margin: 10vw auto 5vw;
  text-align: left;
}
/* 見出しエリア */
.contact-form-parts th {
  display: block;
  margin-bottom: 2vw;
}
/* コンテンツエリア */
.contact-form-parts td {
  display: block;
  margin-bottom: 6vw;
}
/* 必須 */
.required {
  display: inline-block;
  margin-right: 1vw;
  width: 3em;
  background-color: var(--blue);
  border-radius: 1vw;
  color: #fff;
  font-size: 3vw;
  font-weight: 500;
  line-height: 1.5em;
  text-align: center;
}
/* 見出し */
.contact-form-parts label {
  display: inline-block;
  width: fit-content;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1em;
  vertical-align: middle;
}
/* 備考（半角入力） */
.remarks {
  font-size: 2.5vw;
  font-weight: 400;
  vertical-align: bottom;
}
/* 入力欄 */
.contact-form-parts input {
  width: 80vw;
  height: 9vw;
  border: 2px solid var(--blue);
  border-radius: 0.5vw;
  /* 欄内設定 */
  padding: 0 3vw;
  font-size: 3.5vw;
  font-weight: 400;
}
.contact-form-parts textarea {
  width: 80vw;
  height: 30vw;
  resize: both;
  border: 2px solid var(--blue);
  border-radius: 0.5vw;
  /* 欄内設定 */
  padding: 2.5vw 3vw;
  font-size: 3.5vw;
  font-weight: 300;
  line-height: 1.3em;
}
/* フォーカス時の色変化禁止 */
.contact-form-parts input:focus {
  outline: none;
}
.contact-form-parts textarea:focus {
  outline: none;
}
/* 未入力アラート */
.alert {
  color: #b7282e;
  font-size: 3vw;
  font-weight: 500;
}
@media screen and (min-width: 480px) {
  /* フォーム全体 */
  .contact-form table {
    width: min(80vw, 700px);
    margin: min(10vw, 70px) auto min(5vw, 20px);
  }
  /* 見出しエリア */
  .contact-form-parts th {
    margin-bottom: min(2vw, 10px);
  }
  /* コンテンツエリア */
  .contact-form-parts td {
    margin-bottom: min(6vw, 60px);
  }
  /* 必須 */
  .required {
    margin-right: min(1vw, 5px);
    border-radius: min(1vw, 5px);
    font-size: min(3.2vw, 15px);
  }
  /* 見出し */
  .contact-form-parts label {
    font-size: min(4vw, 20px);
  }
  /* 備考（半角入力） */
  .remarks {
    font-size: min(2.5vw, 13px);
  }
  /* 入力欄 */
  .contact-form-parts input {
    width: min(80vw, 700px);
    height: min(9vw, 45px);
    border: 2px solid var(--blue);
    border-radius: min(0.5vw, 5px);
    /* 欄内設定 */
    padding: 0 min(3vw, 25px);
    font-size: min(3.5vw, 18px);
  }
  .contact-form-parts textarea {
    width: min(80vw, 700px);
    height: min(30vw, 150px);
    border: 2px solid var(--blue);
    border-radius: min(0.5vw, 5px);
    /* 欄内設定 */
    padding: min(2.5vw, 15px) min(3vw, 25px);
    font-size: min(3.5vw, 18px);
  }
  /* 未入力アラート */
  .alert {
    font-size: min(3vw, 15px);
  }
}
@media screen and (min-width: 1025px) {
  /* フォーム全体 */
  .contact-form table {
    width: 830px;
  }
  /* 見出しエリア */
  .contact-form-parts th {
    display: inline-block;
    width: 230px;
  }
  /* コンテンツエリア */
  .contact-form-parts td {
    display: inline-block;
    width: 600px;
    vertical-align: top;
  }
  /* 備考（半角入力） */
  .remarks {
    display: block;
    margin-left: 53px;
  }
  /* 入力欄 */
  .contact-form-parts input {
    width: 600px;
  }
  .contact-form-parts textarea {
    width: 600px;
  }
}

/* 確認画面
----------------------------------------------------------*/
/* 見出しエリア */
#contact-confirm-name th {
  display: inline-block;
  width: 4em;
  margin-bottom: 6vw;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1em;
}
#contact-confirm-email th {
  display: block;
  margin-bottom: 2vw;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1em;
}
#contact-confirm-message th {
  display: block;
  margin-bottom: 2vw;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1em;
}
@media screen and (min-width: 480px) {
  #contact-confirm-name th {
    margin-bottom: min(6vw, 60px);
    font-size: min(4vw, 25px);
  }
  #contact-confirm-email th {
    display: inline-block;
    width: 8em;
    margin-bottom: min(6vw, 60px);
    font-size: min(4vw, 25px);
  }
  #contact-confirm-message th {
    margin-bottom: min(2vw, 15px);
    font-size: min(4vw, 25px);
  }
}
@media screen and (min-width: 1025px) {
  #contact-confirm-name th {
    width: 230px;
  }
  #contact-confirm-email th {
    width: 230px;
  }
  #contact-confirm-message th {
    display: inline-block;
    width: 230px;
  }
}
/* コンテンツエリア */
#contact-confirm-name td { 
  display: inline-block;
  margin-bottom: 6vw;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1em;
}
#contact-confirm-email td {
  display: block;
  margin-bottom: 6vw;
  font-size: 4vw;
  font-weight: 400;
  line-height: 1em;
}
#contact-confirm-message td {
  display: block;
  margin-bottom: 7vw;
  font-size: 3.8vw;
  font-weight: 400;
  line-height: 1.3em;
}
@media screen and (min-width: 480px) {
  #contact-confirm-name td { 
    margin-bottom: min(6vw, 60px);
    font-size: min(4vw, 25px);
  }
  #contact-confirm-email td {
    display: inline-block;
    margin-bottom: min(6vw, 60px);
    font-size: min(4vw, 25px);
  }
  #contact-confirm-message td {
    margin-bottom: 7vw;
    font-size: min(3.8vw, 22px);
  }
}
@media screen and (min-width: 1025px) {
  #contact-confirm-message td {
    display: inline-block;
    width: 600px;
    vertical-align: top;
  }
}

/* 送信完了メッセージ
----------------------------------------------------------*/
#completed1 {
  margin: 10vw 0;
  font-weight: 600;
  color: var(--blue);
  font-size: 5vw;
  line-height: 1.7em;
}
@media screen and (min-width: 480px) {
  #completed1 {
    font-size: min(4vw, 30px);
    margin: min(10vw, 50px) 0;
  }
}
#completed2 {
  width: 80vw;
  margin: 10vw auto;
  font-weight: 500;
  font-size: 3.5vw;
  line-height: 1.7em;
  text-align: left;
}
@media screen and (min-width: 480px) {
  #completed2 {
    width: min(80vw, 700px);
    font-size: min(3.5vw, 18px);
    margin: min(10vw, 50px) auto;
    text-align: center;
  }
}
#completed3 {
  width: 80vw;
  margin: 10vw auto;
  font-weight: 500;
  color: #b7282e;
  font-size: 3.5vw;
  line-height: 1.7em;
  text-align: left;
}
@media screen and (min-width: 480px) {
  #completed3 {
    width: min(80vw, 700px);
    font-size: min(3.5vw, 18px);
    margin: min(10vw, 50px) auto;
    text-align: center;
  }
}

/* フォームボタン
----------------------------------------------------------*/
.contact-btn input {
  margin: 0 5vw 20vw;
  padding: 2vw 0;
  width: 30vw;
  border: 2px solid var(--blue);
  border-radius: 100px;
  font-size: 4vw;
  font-weight: 500;
  cursor: pointer;
}
#btn-comp input {
  margin: 0 5vw 20vw;
  padding: 2vw 0;
  width: 65vw;
  border: 2px solid var(--blue);
  border-radius: 100px;
  font-size: 4vw;
  font-weight: 500;
  cursor: pointer;
}
.btn-wh {
  color: var(--blue);
  background-color: #fff;
}
.btn-bl {
  color: #fff;
  background-color: var(--blue);
}
@media (hover: none) {
  .contact-btn input:active {
    border: 2px solid var(--lightblue);
  }
  #btn-comp input:active {
    border: 2px solid var(--lightblue);
  }
  .btn-wh:active {
    color: var(--lightblue);
    background-color: #ececec;
  }
  .btn-bl:active {
    background-color: var(--lightblue);
  }
}
@media (hover: hover) {
  .contact-btn input:hover {
    border: 2px solid var(--lightblue);
  }
  #btn-comp input:hover {
    border: 2px solid var(--lightblue);
  }
  .btn-wh:hover {
    color: var(--lightblue);
    background-color: #f3f3f3;
  }
  .btn-bl:hover {
    background-color: var(--lightblue);
  }
}
@media screen and (min-width: 480px) {
  .contact-btn input {
    margin: 0 min(5vw, 50px) min(20vw, 150px);
    padding: min(2vw, 10px) 0;
    width: min(30vw, 200px);
    font-size: min(4.5vw, 20px);
  }
  #btn-comp input {
    margin: 0 min(5vw, 50px) min(20vw, 150px);
    padding: min(2vw, 10px) 0;
    width: min(65vw, 350px);
    font-size: min(4.5vw, 20px);
  }
}


/*
================================================================================
  privacy study-rule
================================================================================
*/
/* イントロ
----------------------------------------------------------*/
#rule-privacy-intro {
  margin-top: 30px;
}
#rule-privacy-intro div {
  width: fit-content;
  font-weight: 600;
  color: var(--blue);
  font-size: 5vw;
  line-height: 1.7em;
  margin: 8vw auto 5vw;
  border-bottom: 5px solid;
  border-image: linear-gradient(to right, #b7282e 10%, #db8449 20%, #ecdf2b 40%, #7BAA17 60%, #507ea4 80%, #624498 100%);
  border-image-slice: 1;
}
@media screen and (min-width: 480px) {
  #rule-privacy-intro {
    margin-top: 45px;
  }
  #rule-privacy-intro div {
    font-size: min(5vw, 40px);
    margin: min(8vw, 60px) auto min(5vw, 30px);
  }
}
@media screen and (min-width: 1025px) {
  #rule-privacy-intro {
    margin-top: 40px;
  }
}

/* study-rule本文
----------------------------------------------------------*/
.rule-bl {
  width: 90vw;
  padding-bottom: 5vw;
  margin: 0 auto 5vw;
  font-weight: 600;
  font-size: 3vw;
  line-height: 1.7em;
  color: var(--blue);
}
#rule {
  width: 90vw;
  margin: 0 auto;
  padding-bottom: 5vw;
}
#rule p {
  width: 80vw;
  margin: 5vw auto 0;
  font-weight: 400;
  font-size: 3vw;
  line-height: 1.7em;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 480px) {
  .rule-bl {
    width: min(90vw, 800px);
    padding-bottom: min(5vw, 30px);
    margin: 0 auto min(5vw, 30px);
    font-size: min(3vw, 20px);
  }
  #rule {
    width: min(90vw, 800px);
    padding-bottom: min(5vw, 30px);
  }
  #rule p {
    width: min(80vw, 705px);
    margin: min(5vw, 30px) auto 0;
    font-size: min(3vw, 17px);
  }
}

/* study-rulePDFリンク
----------------------------------------------------------*/
#rule-pdf p {
  margin-top: 10vw;
  font-weight: 400;
  font-size: 3vw;
}
#rule-pdf div {
  margin: 1vw auto 20vw;
}
#rule-pdf a {
  font-weight: 500;
  color: #fff;
  background-color: var(--blue);
  border-radius: 2.5vw;
  padding: 1.3vw 6vw 2vw;
  font-size: 3vw;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#rule-pdf a::after {
  display: inline-block;
  margin-bottom: -1vw;
  margin-left: 1.5vw;
  content: "";
  width: 4vw;
  height: 4vw;
  background-image: url(../img/pdf_icon_wh.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (hover: none) {
  #rule-pdf a:active {
    background-color: var(--lightblue);
  }
}
@media (hover: hover) {
  #rule-pdf a:hover {
    background-color: var(--lightblue);
  }
}
@media screen and (min-width: 480px) {
  #rule-pdf p {
    margin-top: min(10vw, 50px);
    font-size: min(3vw, 18px);
  }
  #rule-pdf div {
    margin: min(1vw, 10px) auto min(20vw, 150px);
  }
  #rule-pdf a {
    border-radius: min(2.5vw, 15px);
    padding: min(1.3vw, 5px) min(6vw, 40px) min(2vw, 10px);
    font-size: min(3vw, 18px);
    text-underline-offset: 4px;
  }
  #rule-pdf a::after {
    margin-bottom: max(-1vw, -7px);
    margin-left: min(1.5vw, 10px);
    width: min(4vw, 25px);
    height: min(4vw, 25px);
  }
}

/* privacy本文
----------------------------------------------------------*/
#privacy-box {
  width: 80vw;
  margin: 0 auto;
  text-align: left;
  font-weight: 400;
  font-size: 3vw;
  line-height: 1.5em;
}
.privacy-wrap {
  margin: 10vw 0;
}
.privacy-index {
  font-size: 4vw;
  margin-bottom: 2vw;
}
/* 字下げ */
.indent {
  margin: 2vw 0;
  padding-left: 1em;
  text-indent: -1em;
}
#disclaimer p {
  margin: 2vw 0;
}
/* お問い合わせ */
.privacy-wrap a {
  display: block;
  margin-top: 2vw;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (hover: none) {
  .privacy-wrap a:active {
    color: var(--lightblue);
  }
}
@media (hover: hover) {
  .privacy-wrap a:hover {
    color: var(--lightblue);
  }
}
@media screen and (min-width: 480px) {
  #privacy-box {
    width: min(80vw, 705px);
    font-size: min(3vw, 15px);
  }
  .privacy-wrap {
    margin: min(10vw, 60px) 0;
  }
  .privacy-index {
    font-size: min(4vw, 20px);
    margin-bottom: min(2vw, 15px);
  }
  /* 字下げ */
  .indent {
    margin: min(2vw, 15px) 0;
  }
  #disclaimer p {
    margin: min(2vw, 15px) 0;
  }
  /* お問い合わせ */
  .privacy-wrap a {
    margin-top: min(2vw, 15px);
    text-underline-offset: 5px;
  }
}
@media screen and (min-width: 1025px) {
}

/*
================================================================================
  Utilities
================================================================================
*/
/* 左右行揃え
---------------------------------*/
.ta-l{ text-align: left; }
.ta-r{ text-align: right; }
.ta-c{ text-align: center; }

/* フロート／フロート解除
---------------------------------*/
.fl{ float:left; }
.fr{ float:right; }
.fl-img{ float: left; margin-right: 10px; margin-bottom: 10px;}
.fr-img{ float: right; margin-left: 10px; margin-bottom: 10px;}
.clear{ clear:both; }

/* clearfix */
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both; 
}

/* 表示切替
----------------------------------------------------------*/
/* PC用要素非表示 */
.only-pc {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: -10;
}
@media screen and (min-width: 1025px) {
  /* スマホ用要素非表示 */
  .only-sp {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    z-index: -10;
  }
  /* PC用要素表示 */
  .only-pc {
    position: sticky;
    opacity: 1;
    visibility: visible;
    z-index: 0;
  }
}

/* 出現アクション
----------------------------------------------------------*/
/* フェードイン初期値 */
.fadein {
  opacity: 0;
}
/* スライドイン初期値 */
.slidein-up {
  opacity: 0;
  translate: 0 3vh;
}

/* ホバーアクション
----------------------------------------------------------*/
/* リンク文字下ライン */
.hover-line {
  position: relative;
  margin: 0 auto;
  width: fit-content;
}
.hover-line span {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  display: block;
  width: 0; /* 非表示 */
  height: 100%;
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, #b7282e 10%, #db8449 20%, #ecdf2b 40%, #7BAA17 60%, #507ea4 80%, #624498 100%);
  border-image-slice: 1;
  /* アニメーション */
  transition: width
}
@media screen and (min-width: 1025px) {
  .hover-line span {
    /* アニメーション */
    transition: width 0.3s ease
  }
}
/* ホバー時ライン幅 */
a:hover .hover-line span {
  width: 100%;
}

/* ホバー時半透明化 */
/* 50% */
@media (hover: none) {
  a:active .translucent05 {
    opacity: 0.5;
  }
  .translucent05:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  a:hover .translucent05 {
    opacity: 0.5;
  }
  .translucent05:hover {
    opacity: 0.5;
  }
}
/* 70% */
@media (hover: none) {
  a:active .translucent07 {
    opacity: 0.7;
  }
  .translucent07:active {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  a:hover .translucent07 {
    opacity: 0.7;
  }
  .translucent07:hover {
    opacity: 0.7;
  }
}
