/*
Theme Name: hyogokeikyo
*/

@charset "UTF-8";

:root {
  --main-black: #3a3a3a;
}
body {
  font-size: 4.07vw;
}

@media (min-width: 768px) {
  body {
    font-size: min(18px, 0.94vw);
  }
}


/*----------------------------------------------------
 非表示
----------------------------------------------------*/
.footer-sns,
.top-sns,
.single-sns {
  display: none;
}

/*----------------------------------------------------
 Reset
----------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: anywhere;
}

ul[class], ol[class] {
  padding: 0;
}

body, h1, h2, h3, h4, p, ul[class], ol[class], li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
}

body {
  color: var(--main-black);
  font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Meiryo UI,"Osaka","Osaka－等幅","Osaka-Mono",Arial,Verdana,"ＭＳ Ｐゴシック",sans-serif;
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

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

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

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

iframe {
  max-width: 100%;
}

/*----------------------------------------------------
  Component
----------------------------------------------------*/
/* clearfix */
.clearfix {
  clear: both;
  zoom: 1;
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* rollover */
.rollover {
  animation: horizontalY 1s ease-in-out infinite alternate;
          transition: all 1s;
  -webkit-transition: all 1s;
}

.rollover:hover {
  animation: horizontalY 0.5s ease-in-out infinite alternate;
          transition: all 0.5s;
  -webkit-transition: all 0.5s;
  filter: alpha(opacity=70);
  opacity: 0.7;
}

/* innerlink */
.innerlink {
  display: block;
  height: 1px;
  position: relative;
  top: -60px;
}

/* pc/sp */
.pc {
  display: none;
}

.pc-i {
  display: none;
}

.sp {
  display: block;
}

.sp-i {
  display: inline;
}

@media (min-width: 768px) {
  .pc {
      display: block;
  }

  .pc-i {
      display: inline;
  }

  .sp,
  .sp-i {
      display: none;
  }
}

/*----------------------------------------------------
 header
----------------------------------------------------*/
.header {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.17vw 2.6vw 1.17vw 4.6vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
/* logo */
.header-logo {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  flex-grow: 100;
}
.header-logo a {
  color: inherit;
  text-decoration: none;
}
.header-logo-img img {
  width: 14.7vw;
}
.header-logo-text {
  margin-left: .25em;
}
.header-logo-title {
  display: block;
  font-size: 1.82vw;
}
.header-logo-name {
  display: block;
  font-size: 2.08vw;
  font-weight: bold;
}
/* user */
.header-user {
  margin-right: .5em;
}
.header-user img {
  width: 6.25vw;
}
@media (min-width: 768px) {
  .header {
    padding: 1.17vw 2.6vw 1.17vw 4.6vw;
  }
  /* logo */
  .header-logo-img img {
    width: 5.21vw;
  }
  .header-logo-text {
    margin-left: .25em;
  }
  .header-logo-title {
    display: inline;
    font-size: 1.45vw;
  }
  .header-logo-name {
    display: inline;
    font-size: 1.45vw;
    font-weight: normal;
  }
  /* menu */
  .header-menu ul {
    display: flex;
  }
  .header-menu li:nth-child(n+2) {
    margin-left: 2em;
  }
  .header-menu li a {
    color: inherit;
    font-size: 0.9375vw;
    text-decoration: none;
  }
  .header-menu li a:hover {
    text-decoration: underline;
  }
  /* toggle */
  .header-gmenu-toggle {
    margin-left: 3em;
  }
}


/*----------------------------------------------------
 gmenu toggle
----------------------------------------------------*/
.gmenu-toggle {
  cursor: pointer;
  display: inline-block;
  height: 40px;
  position: relative;
  width: 40px;
  z-index: 10;
}
.gmenu-toggle span {
  background: #000;
  display: block;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 8px;
  transition: .2s;
  width: 24px;
}
.gmenu-toggle span::before,
.gmenu-toggle span::after{
  background: #000;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transition: .3s;
  width: 24px;
}
.gmenu-toggle span::before{
  margin-top: -10px;
}
.gmenu-toggle span::after{
  margin-top: 8px;
}

/* open */
.gmenu-open .gmenu-toggle span {
  background: transparent;
}

.gmenu-open .gmenu-toggle span::before,
.gmenu-open .gmenu-toggle span::after{
  background: #000;
  margin-top: 0;
}

.gmenu-open .gmenu-toggle span::before{
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.gmenu-open .gmenu-toggle span::after{
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

@media (min-width: 768px) {
  .gmenu-toggle {
    height: 2.1vw;
    width: 2.1vw;
  }
  .gmenu-toggle span {
    height: 2px;
    margin-top: -0.05vw;
    left: 0.42vw;
    width: 1.25vw;
  }
  .gmenu-toggle span::before,
  .gmenu-toggle span::after{
    height: 2px;
    width: 1.25vw;
  }
  .gmenu-toggle span::before{
    margin-top: -0.52vw;
  }
  .gmenu-toggle span::after{
    margin-top: .42vw;
  }
}
@media (min-width: 1920px) {
  .gmenu-toggle span,
  .gmenu-toggle span::before,
  .gmenu-toggle span::after{
    height: 3px;
  }
}

/*----------------------------------------------------
 gmenu
----------------------------------------------------*/
.gmenu {
  background-color: #fff;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  overflow: scroll;
  padding: 0 1em;
  transition: opacity .6s ease;
  visibility: .6s ease;
}
.gmenu-open .gmenu {
  visibility: visible;
  opacity: 1;
}

/* ul */
.gmenu li a {
  border-bottom: 1px solid var(--main-black);
  color: var(--main-black);
  font-size: 14px;
  display: inline-block;
  line-height: 1.75;
  padding-top: 2em;
  padding-left: 1em;
  padding-bottom: 2em;
  text-decoration: none;
  width: 100%;
}

@media (min-width: 768px) {
  .gmenu {
    padding: 0 3em;
    padding-right: 20%;
  }
  .gmenu nav {
    margin-left: auto;
    margin-right: 0;
    max-width: 700px;
  }
  .gmenu li a {
    font-size: 0.9375vw;
    padding: 1em 3em;
  }
}

/*----------------------------------------------------
 main-visual-slider
----------------------------------------------------*/
.main-visual-slider .slick-slide {
  padding: 0 5px;
  width: 80vw;
}
.main-visual-slider .slick-slide a {
  color: inherit;
  text-decoration: none;
}
.main-visual-slider .slick-slide img {
}
.main-visual-text {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
.main-visual-cat {
  align-self: flex-start;
  color: #fff;
  font-size: 3.56vw;
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 1.1;
  padding: .25em .5em;
}
.main-visual-title {
  font-size: inherit;
  font-weight: normal;
  order: 2;
}

@media (min-width: 768px) {
  .main-visual-slider .slick-slide {
    width: 33.33vw;
  }
  .main-visual-slider .slick-slide img {
    width: 100%;
  }
  .main-visual-text {
  }
  .main-visual-cat {
    font-size: .83vw;
    margin-top: 0;
    margin-bottom: 0;
    padding: .5em .5em .25em;
  }
  .main-visual-title {
    font-size: 0.9375vw;
    margin-top: .75em;
    margin-bottom: .75em;
    order: unset;
  }
}

/*----------------------------------------------------
 slick
----------------------------------------------------*/
.slick-dots[class] {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto 0;
  width: 89.3%;
}
.main-visual-slider .slick-dots[class] {
  border-top: 1px solid #b3b3b3;
  padding-top: 20px;
}
.slick-dots li {
  margin: 0 5px;
}

.slick-dots button {
  background: #b3b3b3;
  border: 0;
  border-radius: 100%;
  height: 2.6vw;
  margin: 0;
  padding: 0;
  outline: 0;
  text-indent: -9999px;
  width: 2.6vw;
}
.slick-dots .slick-active button {
  background: #1e2c5b;
}
@media (min-width: 768px) {
  .slick-dots button {
    height: 8px;
    width: 8px;
  }
  .slick-dots li {
    margin: 0 10px;
  }
}

/*----------------------------------------------------
main-visual-sub
----------------------------------------------------*/
.main-visual-sub {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-visual-about {
  background-image: url(img/about-bg-sp.webp);
}
.main-visual-whats {
  background-image: url(img/whats-new-bg-sp.webp);
}
.main-visual-contact {
  background-image: url(img/contact-bg-sp.webp);
}
.main-visual-koukoku {
  background-image: url(img/notice-bg-sp.webp);
}
/* title */
.main-visual-sub-title {
  color: #fff;
  padding: 12.7vw 1em  15vw;
  text-align: center;
}
.main-visual-sub-title-en {
  display: block;
  font-size: 4.58vw;
  font-weight: normal;
  margin-bottom: .25em;
}
.main-visual-sub-title-ja {
  font-size: 11.45vw;
  font-weight: bold;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .main-visual-about {
    background-image: url(img/about-bg.webp);
    padding: 0 40px;
  }
  .main-visual-whats {
    background-image: url(img/whats-new-bg.webp);
  }
  .main-visual-contact {
    background-image: url(img/contact-bg.webp);
  }
  .main-visual-koukoku {
    background-image: url(img/notice-bg.webp);
  }
  /* title */
  .main-visual-sub-title {
    padding: min(110px, 5.73vw) 0 min(130px, 6.77vw);;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    text-align: left;
  }
  .main-visual-sub-title-en {
    font-size: min(20px, 1.04vw);
    margin-bottom: .5em;
  }
  .main-visual-sub-title-ja {
    font-size: min(60px, 3.13vw);;
  }
}

/*----------------------------------------------------
 contents
----------------------------------------------------*/
.contents-white,
.contents-gray,
.contents-blue {
  padding-top: 9.77vw;
  padding-bottom: 15.625vw;
}
.contents-in {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1200px;
  width: 100%;
}

.contents-white + .contents-white,
.contents-gray + .contents-gray,
.contents-blue + .contents-blue {
  padding-top: 0;
}
.contents-gray {
  background: #e6eaed;
}
.contents-blue {
  background: #ebeff2;
}

@media (min-width: 768px) {
  .contents-white,
  .contents-gray,
  .contents-blue {
    padding-top: min(80px, 4.17vw);
    padding-bottom: min(110px, 5.73vw);
  }
  .contents-in {
    padding-left: 40px;
    padding-right: 40px;
  }
}


/*----------------------------------------------------
 title
----------------------------------------------------*/
/* title1 */
.title1 {
  margin-bottom: 3em;
  text-align: center;
}
.title1-en {
  color: #565757;
  font-size: 4.58vw;
}
.title1-head {
  position: relative;
}
.title1-ja {
  font-size: 11.45vw;
  letter-spacing: 5px;
}

.title1-more {
  position: absolute;
  right: 0;
  
}
.title1 hr {
  border: 0;
  border-top: 2px solid #3a3a3a;
  width: 23vw;
}

@media (max-width: 767px) {
  .contact-title .title1-ja {
    font-size: 6.36vw;
  }
}
@media (min-width: 768px) {
  /* title1 */
  .title1 {
    margin-bottom: 3em;
  }
  .title1-en {
    font-size: min(20px, 1.04vw);
  }
  .title1-head {
    display: inline-block;
  }
  .title1-ja {
    display: inline-block;
    font-size: min(60px, 3.13vw);
  }
  .title1-more {
    align-items: center;
    color: #cc586b;
    display: flex;
    font-size: min(16px, 0.83vw);
    font-weight: bold;
    text-decoration: none;
    bottom: 1em;
    left: calc(100% + 2em);
    white-space: nowrap;
    width: 200px;
  }
  .title1-more img {
    height: auto;
    margin-left: .5em;
    width: min(45px, 2.34vw);
  }
  .title1 hr {
    margin-top: 1em;
    width: min(146px, 7.6vw);
  }
}

/*----------------------------------------------------
 btn
----------------------------------------------------*/
.btn a {
  background: #1e2c5b;
  border-radius: 8vw;
  color: #fff;
  display: inline-block;
  font-size: 4.07vw;
  font-weight: bold;
  padding: 1em;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 768px) {
    .btn a {
        border-radius: 8vw;
        font-size: min(20px, 1.04vw);
        padding: 1em 1.5em;
    }
}

/* more */
.btn-more a {
  background: #cc586b;
  border-radius: .5em;
  color: #fff;
  display: block;
  font-size: 4.58vw;
  font-weight: bold;
  padding: .5em 1em;
  text-decoration: none;
  text-align: center;
}



/*----------------------------------------------------
 top whats
----------------------------------------------------*/
.top-whats-in {
  padding-right: 0;
}
.top-whats-main {
  margin-bottom: 10vw;
}
.top-whats-side {
  margin-right: 20px;
}
/* head */
.top-whats-head {
  margin-bottom: 1em;
}
.top-whats-title {
  font-size: 11.45vw;
  text-align: center;
}
/* cat */
.top-whats-cat-list {
  margin-bottom: 1.5em;
  overflow-x: scroll;
  width: 100%;
}
.top-whats-cat-list ul {
  align-items: flex-end;
  border-bottom: 1px solid #565757;
  display: flex;
  justify-content: flex-start;
}
.top-whats-cat-list li {
  margin-right: 2.54vw;
}
.top-whats-cat-list li a {
  border: 1px solid #565757;
  border-bottom: 0;
  border-radius: .5em .5em 0 0;
  color: var(--main-black);
  display: inline-block;
  font-size: 4.58vw;
  padding: .75em 1em;
  text-decoration: none;
  white-space: nowrap;
}
.top-whats-cat-list li.top-whats-cat-active a {
  background: #1e2c5b;
  border-color: #1e2c5b;
  color: #fff !important;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
}

/* each */
.top-whats-list {
  margin-right: 20px;
  margin-bottom: 10vw;
}
.top-whats-list-each a {
  color: inherit;
  text-decoration: none;
}
.top-whats-list-each:nth-child(n+2) {
  margin-top: 10vw;
}
.top-whats-list-img img {
  width: 100%;
}
/* cat */
.top-whats-list-cat {
  margin-bottom: 1em;
}
.top-whats-list-cat span {
  color: #fff;
  display: block;
  line-height: 1;
  padding: .5em .25em .25em;
  text-align: center;
  width: 100%;
}
/* date */
.top-whats-list-date {
  font-size: 3.8vw;
}
/* date */
.top-whats-list-title {
  background: url(img/icon-arrow-gray2.png) no-repeat right .5em center;
  background-size: 4.07vw auto;
  padding-right: calc(4.07vw + 1.5em);
}
.top-whats-list-title-text {
  font-size: 4.58vw;
}
/* more */
.top-whats-list-more {
  margin-right: 20px;
}
@media (min-width: 768px) {
  .top-whats-in {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    padding-right: 40px;
  }
  .top-whats-main {
    margin-bottom: 0;
    width: 59.3%;
  }
  .top-whats-side {
    margin-right: 0;
    width: 33.75%;
  }
  /* head */
  .top-whats-head {
    margin-bottom: 1.5em;
    position: relative;
  }
  .top-whats-title {
    font-size: min(40px, 2.08vw);
    text-align: left;
  }
  .top-whats-head a {
    align-items: center;
    color: #cc586b;
    display: flex;
    font-size: min(16px, 0.83vw);
    font-weight: bold;
    position: absolute;
    text-decoration: none;
    right: 0;
    bottom: 0;
  }
  .top-whats-head a img {
    height: auto;
    margin-left: .5em;
    width: min(44px, 2.29vw);
  }
  /* cat */
  .top-whats-cat-list {
    overflow: unset;
    margin-bottom: 0;
  }
  .top-whats-cat-list ul {
    grid-gap: 10px;
    text-align: center;
  }
  .top-whats-cat-list li {
    margin-right: 0;
    width: 25%;
  }
  .whats-archive .top-whats-cat-list li {
    width: 14.5%;
  }
  .top-whats-cat-list li a {
    display: inline-block;
    font-size: min(16px, 0.83vw);
    padding: .5em 1em;
    width: 100%;
  }
  .top-whats-cat-list li.top-whats-cat-active a {
    font-size: min(20px, 1.04vw);
    font-weight: bold;
    padding-top: .75em;
    padding-bottom: .75em;
  }
  
  /* each */
  .top-whats-list {
    margin-right: 0;
    margin-bottom: 0;
  }
  .top-whats-list-each:nth-child(n+2) {
    margin-top: 0;
  }
  .top-whats-list-each a {
    align-items: flex-start;
    border-bottom: 1px solid #b3b3b3;
    display: flex;
    justify-content: space-between;
    padding-top: min(22px, 1.15vw);
    padding-bottom: min(22px, 1.15vw);
  }
  .top-whats-list-img {
    width: 30.7%;
  }
  .top-whats-list-text {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    width: 63.4%;
  }
  /* cat */
  .top-whats-list-cat {
    margin-right: 1em;
    margin-bottom: 0;
  }
  .top-whats-list-cat span {
    display: inline-block;
    font-size: min(16px, 0.83vw);
    padding: .5em .5em .25em;
    width: auto;
  }
  /* date */
  .top-whats-list-date {
    font-size: min(16px, 0.83vw);
  }
  /* date */
  .top-whats-list-title {
    background-size: min(16px, 0.83vw) auto;
    margin-top: 1em;
    padding-right: 4em;
    width: 100%;
  }
  .top-whats-list-title-text {
    font-size: min(20px, 1.04vw);
  }
}



/*----------------------------------------------------
 top whats side
----------------------------------------------------*/
.top-whats-side-each:nth-child(n+2) {
  margin-top: 7.5vw;
}
/* head */
.top-whats-head {
  position: relative;
}
.top-whats-side-title {
  font-size: 7.63vw;
  text-align: center;
}
.top-whats-side-head {
  margin-bottom: 1em;
  position: relative;
}
.top-whats-side-head a {
  align-items: center;
  color: #cc586b;
  display: flex;
  position: absolute;
  text-decoration: none;
  right: 0;
  bottom: 0;
}
.top-whats-side-head a img {
  height: auto;
  margin-left: .5em;
  width: 7.1vw;
}
/* slider */
.top-whats-side-slider .slick-slide {
  padding: 0 5px;
  width: 31vw;
}
/* links */
.top-whats-side-links {
  margin-top: 7.5vw;
}
.top-whats-side-links a {
  background: url(img/icon-arrow-red.png) no-repeat left .5em center;
  background-size: auto 1em;
  border-bottom: 1px solid #ccc;
  color: inherit;
  display: block;
  padding: .5em 1.5em;
  text-decoration: none;
}
.top-whats-side-links li:first-child a {
  border-top: 1px solid #ccc;
}

@media (min-width: 768px) {
  .top-whats-side-each:nth-child(n+2) {
    margin-top: min(40px, 2.08vw);
  }
  /* head */
  .top-whats-side-title {
    font-size: min(25px, 1.3vw);
    text-align: left;
  }
  .top-whats-side-head {
  }
  .top-whats-side-head a {
    font-size: min(16px, 0.83vw);
  }
  .top-whats-side-head a img {
    width: min(45px, 2.34vw);
  }
  /* login */
  .top-whats-side-login .login-username label,
  .top-whats-side-login .login-password label {
    display: none;
  }
  .top-whats-side-login .login-username input,
  .top-whats-side-login .login-password input {
    border: 1px solid #ccc;
    border-radius: .5em;
    padding: .5em;
    width: 100%;
  }
  .top-whats-side-login .login-username input::placeholder,
  .top-whats-side-login .login-password input::placeholder {
    color: #ccc;
  }
  .top-whats-side-login .login-password input {
    margin: 10px 0;
  }
  .top-whats-side-login .login-submit input {
    background: #1e2c5b;
    border-radius: .5em;
    color: #fff;
    display: block;
    font-weight: bold;
    margin-top: 10px;
    padding: .5em 1em;
    text-align: center;
    width: 100%;
  }
  /* slider */
  .top-whats-side-slider .slick-slide {
    padding: 0 5px;
    width: min(145px, 7.55vw);
  }
  /* links */
  .top-whats-side-links {
    border-top: 1px solid #ccc;
    margin-top: 0;
    padding-top: min(20px, 1.04vw);
  }
  .top-whats-side-links a {
    background: transparent;
    border-bottom: 0;
    display: inline-block;
    padding: 0;
    text-decoration: underline;
  }
  .top-whats-side-links li:first-child a {
    border-top: 0;
  }
}

/*----------------------------------------------------
 seminar
----------------------------------------------------*/
/* slider */
.top-seminar-slider {
  margin-bottom: 1em;
}
.top-seminar-slider .slick-slide {
  padding: 0 5px;
  width: 82vw;
}
.top-seminar-slider .slick-slide a {
  border-radius: .5em;
  background: #fff;
  color: inherit;
  display: block;
  text-decoration: none;
}
/* img */
.top-seminar-img img {
  border-radius: .5em .5em 0 0; 
}
/* main */
.top-seminar-main {
  padding: 1em;
}
/* cat */
.top-seminar-cat {
  color: #fff;
  display: inline-block;
  font-size: 3.56vw;
  margin-bottom: .5em;
  line-height: 1.1;
  padding: .25em .5em;
}
/* title */
.top-seminar-title {
  font-size: 4.58vw;
}
/* info */
.top-seminar-info {
  border-top: 1px solid #b3b3b3;
  margin-top: 1em;
  padding-top: 1em;
}
.top-seminar-info table {
  width: 100%;
}
.top-seminar-info th,
.top-seminar-info td {
  font-size: 3.82vw;
  text-align: left;
  vertical-align: top;
}
.top-seminar-info th {
  white-space: nowrap;
}

.top-seminar-info td {
  padding-left: 1em;
}

.top-seminar-more {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .top-seminar-in {
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1350px;
    width: 100%;
  }
  /* slider */
  .top-seminar-slider {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    position: relative;
    width: min(1120px, 58.33vw);
  }
  .top-seminar-slider .slick-prev,
  .top-seminar-slider .slick-next {
    background: url(img/icon-arrow-gray.png) no-repeat center center;
    background-size: 100% auto;
    border: 0;
    cursor: pointer;
    height: min(88px, 4.58vw);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-indent: -9999px;
    width: min(44px, 2.29vw);
  }
  .top-seminar-slider .slick-prev {
    background-image: url(img/icon-arrow-gray-left.png);
    right: calc(100% + min(35px, 1.82vw));
  }
  .top-seminar-slider .slick-next {
    left: calc(100% + min(35px, 1.82vw));
  }
  .top-seminar-slider .slick-slide {
    padding: 0 10px;
    width: min(370px, 19.27vw);
  }
  /* cat */
  .top-seminar-cat {
    font-size: min(16px, 0.83vw);
    margin-bottom: 1em;
    padding: .5em .5em .25em;
  }
  /* title */
  .top-seminar-title {
    font-size: min(20px, 1.04vw);
  }
  /* info */
  .top-seminar-info th,
  .top-seminar-info td {
    font-size: min(16px, 0.83vw);
  }
}


/*----------------------------------------------------
 top-about
----------------------------------------------------*/
.top-about-catch {
  font-size: 4.58vw;
  margin-bottom: 11.7vw;
  text-align: center;
}
.top-about-img {
  padding-left: 20px;
  padding-right: 20px;
}
.top-about-img img {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .top-about-catch {
    font-size: min(23px, 1.2vw);
    margin-bottom: min(90px, 4.69vw);;
  }
  
  .top-about-img {
    padding-left: 0;
    padding-right: 0;
  }
}

/*----------------------------------------------------
 access
----------------------------------------------------*/
.about-access {
  margin-bottom: 21.63vw;
}
/* table */
.top-access-info table {
  margin-bottom: 3em;
  width: 100%;
}
.top-access-info th,
.top-access-info td {
  text-align: left;
  vertical-align: top;
}
.top-access-info th {
  font-weight: bold;
  white-space: nowrap;
}
.top-access-info td {
  padding-left: 1em;
}
/* map */
.top-access-map  iframe {
  aspect-ratio: 344/233;
  height: 100%;
  object-fit: cover;
  width: 100%;
}


@media (min-width: 768px) {
  .about-access {
    margin-bottom: 0;
  }
  .top-access-in {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .top-access-title-wrap {
    padding-left: min(74px, 3.85vw);
    padding-right: min(74px, 3.85vw);
  }
  .top-access-info {
    border-left: 1px solid #000;
    flex-grow: 10;
    padding-left: min(55px, 2.86vw);
  }
  /* table */
  .top-access-info table {
    margin-bottom: 1.5em;
  }
  .top-access-info-sponly {
    display: none;
  }
  .top-access-info td {
    padding-left: 0;
  }
  /* traffic */
  .top-access-title2 {
    font-size: min(22px, 1.15vw);
    font-weight: bold;
    margin-bottom: .25em;
  }
  .top-access-traffic {
    margin-bottom: 2em;
  }
  /* map */
  .top-access-map  iframe {
    aspect-ratio: 817/233;
  }
}


/*----------------------------------------------------
 sns
----------------------------------------------------*/
.top-sns-list ul {
  align-items: center;
  display: flex;
  justify-content: center;
}
.top-sns-list li {
  margin: 0 6.3vw;
  width: 11vw;
}

@media (min-width: 768px) {
  .top-sns-list li {
    margin: 0 min(22px, 1.15vw);
    width: min(45px, 2.34vw);
  }
}


/*----------------------------------------------------
 links
----------------------------------------------------*/
.top-links-each:nth-child(n+2) {
  margin-top: 6.87vw;
}
.top-links-each a {
  border: 2.5px solid #565757;
  color: inherit;
  display: block;
  font-weight: bold;
  padding: 1em 1em .5em;
  text-align: center;
  text-decoration: none;
}
.top-links-text {
  font-size: 5.1vw;
}
.top-links-each a hr {
  border: 0;
  border-top: 1px solid #cc586b;
  margin-top: .75em;
  margin-bottom: .5em;
}
.top-links-more {
  background: url(img/icon-arrow-red3.png) no-repeat right center;
  background-size: 3.05vw auto;
  color: #cc586b;
  display: block;
}

@media (min-width: 768px) {
  .top-links-in {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-width: 805px;
  }
  .top-links-each {
    width: 47.45%;
  }
  .top-links-each:nth-child(n+2) {
    margin-top: 0;
  }
  .top-links-each a {
    border-width: 3px;
  }
  .top-links-text {
    font-size: min(22px, 1.15vw);
  }
  .top-links-each a hr {
    margin-top: .75em;
    margin-bottom: .5em;
  }
  .top-links-more {
    background-size: min(14px, 0.73vw) auto;
  }
}

/*----------------------------------------------------
 footer
----------------------------------------------------*/
.footer-in {
}
/* logo */
.footer-logo {
  margin-bottom: 2em;
  text-align: center;
}
.footer-logo a {
  color: inherit;
  line-height: 1.3;
  text-decoration: none;
}
.footer-logo img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: .5em;
  width: 29.3vw;
}
.footer-logo small {
  font-size: 5.1vw;
}
.footer-logo span {
  font-size: 5.85vw;
  font-weight: bold;
}
/* sns */
.footer-sns {
  margin-bottom: 2.25em;
}
.footer-sns ul {
  align-items: center;
  display: flex;
  justify-content: center;
}
.footer-sns li {
  margin: 0 2.6vw;
  width: 6.6vw;
}
/* nav */
.footer-nav {
  margin-bottom: 2em;
  padding: 0 20px;
}
.footer-nav a {
  background: url(img/icon-arrow-black.png) no-repeat right 1em center;
  background-size: 2.5vw auto;
  border-bottom: 1px solid #565757;
  color: inherit;
  display: block;
  line-height: 1.1;
  padding: .75em 0 1em;
  position: relative;
  text-decoration: none;
}
.footer-nav li:first-child a {
  border-top: 1px solid #565757;
}
/* copyright */
.copyright {
  background: #1e2c5b;
  color: #fff;
  font-size: 3.2vw;
  padding: .5em;
  text-align: center;
}
/* nav2 */
.footer-nav2 {
  padding: 1em;
}
.footer-nav2 ul {
  align-items: center;
  display: flex;
  justify-content: center;
}
.footer-nav2 ul li {
  margin: 0 1.5em;
}
.footer-nav2 ul li a {
  color: inherit;
  font-size: 3.56vw;
}
@media (max-width: 767px) {
  .footer-nav-pconly {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer {
    border-top: 1px solid #3a3a3a;
    padding-top: min(40px, 2.08vw);
    padding-bottom: min(20px, 1.04vw);
  }
  .footer-in {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
  }
  /* logo */
  .footer-logo {
    margin-bottom: 2em;
  }
  .footer-logo img {
    margin-bottom: .5em;
    width: min(130px, 6.77vw);
  }
  .footer-logo small,
  .footer-logo span {
    font-size: min(18px, 0.94vw);
    font-weight: bold;
  }
  /* main */
  .footer-main {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  /* sns */
  .footer-sns {
    margin-bottom: 0;
    order: 2;
  }
  .footer-sns li {
    margin: 0 min(18px, 0.94vw);;
    width: min(30px, 1.56vw);
  }
  /* nav wrap */
  .footer-nav-wrap {
    width: min(755px, 39.32vw);
  }
  /* nav */
  .footer-nav {
    margin-bottom: 1em;
    padding: 0;
  }
  .footer-nav ul {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer-nav li {
    width: 25%;
  }
  .footer-nav a {
    background: url(img/icon-arrow-red.png) no-repeat left center;
    background-size: min(6.5px, 0.34vw) auto;
    border-bottom: 0;
    display: block;
    line-height: 1.1;
    margin-bottom: 1.25em;
    padding: 0;
    padding-left: min(13px, 0.68vw);
  }
  .footer-nav li:first-child a {
    border-top: 0;
  }
  /* copyright */
  .copyright {
    background: transparent;
    color: inherit;
    font-size: min(15px, 0.78vw);
    padding: 0;
    text-align: left;
  }
}

/*----------------------------------------------------
 about nav
----------------------------------------------------*/
.about-nav {
  padding-top: 1em;
}
.about-nav ul {
  align-items: center;
  display: flex;
  justify-content: center;
}
.about-nav li:nth-child(n+2)::before {
  color: #1e2c5b;
  content: '|';
  display: inline-block;
  margin: 0 .25em;
}
.about-nav a {
  color: #1e2c5b;
  font-size: 3.82vw;
  text-decoration: none;
}
.about-nav a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .about-nav {
    display: none;
  }
}

/*----------------------------------------------------
 about catch
----------------------------------------------------*/
.about-catch {
  text-align: center;
}
.about-catch-title {
  font-size: 7.6vw;
  margin-bottom: .75em;
}
.about-catch p {
  font-size: 4.58vw;
}

@media (min-width: 768px) {
  .about-catch-title {
    font-size: min(40px, 2.08vw);
    margin-bottom: .75em;
  }
  .about-catch p {
    font-size: min(23px, 1.2vw);
  }
}

/*----------------------------------------------------
 about-greeting
----------------------------------------------------*/
/* img */
.about-greeting-img {
  text-align: center;
}
.about-greeting-img img {
  margin: 0 auto 1em;
  width: 54%;
}
/* name */
.about-greeting-name {
  font-weight: normal;
  margin-bottom: 2.5em;
}
.about-greeting-name small {
  display: inline-block;
  margin-right: .5em;
}
.about-greeting-name span {
  display: inline-block;
  font-family:"ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 5.6vw;
}
/* text */
.about-greeting-text p:nth-child(n+2),
.about-greeting-text .more {
  margin-top: 1.5em;
}
.about-greeting-text p {
  text-indent: 1em;
}

@media (min-width: 768px) {
  /* main */
  .about-greeting-main {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }
  /* img */
  .about-greeting-img {
    order: 2;
    width: 31%;
  }
  .about-greeting-img img {
    margin-bottom: 1.5em;
    width: 100%;
  }
  /* name */
  .about-greeting-name {
    margin-bottom: 2.5em;
  }
  .about-greeting-name small {
    margin-right: .5em;
  }
  .about-greeting-name span {
    font-size: min(30px, 1.56vw);
  }
  /* text */
  .about-greeting-text {
    width: 62.5%;
  }
}


/*----------------------------------------------------
 read-more
----------------------------------------------------*/
.read-more {
  color: #cc586b;
}
.read-more img {
  display: inline-block;
  height: 4.07vw;
  margin-left: .25em;
  vertical-align: middle;
  width: auto;
}

/*----------------------------------------------------
 about-philosophy
----------------------------------------------------*/
.about-philosophy-info-each {
  margin-top: 2em;
  padding-left: 20px;
  padding-right: 20px;
}
.about-philosophy-info-title {
  color: #1e2c5b;
  font-size: 6.36vw;
  margin-bottom: .25em;
}
/* list */
.about-philosophy-info-each p + dl {
  margin-top: 1em;
}
.about-philosophy-info-each dl {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}
.about-philosophy-info-each dd {
  flex-shrink: 10;
}

@media (min-width: 768px) {
  /* main */
  .about-philosophy-main {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
  }
  /* img */
  .about-philosophy-img {
    width: min(940px, 48.96vw);
  }
  /* info */
  .about-philosophy-info {
    margin-left: 2em;
    padding-right: 40px;
    width: 40%;
  }

  .about-philosophy-info-each {
    margin-top: 2em;
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-philosophy-info-title {
    font-size: min(30px, 1.56vw);;
  }
}

/*----------------------------------------------------
 about-information
----------------------------------------------------*/
/* table */
.about-information-table {
  font-size: 4.58vw;
}
.about-information-table a {
  color: inherit;
}
.about-information-table a img {
  display: inline-block;
  height: 4.58vw;
  margin-left: .5em;
  vertical-align: middle;
  width: auto;
}
.about-information-table table {
  border-collapse: collapse;
  width: 100%;
}
.about-information-table th,
.about-information-table td {
  border-bottom: 1px solid #b3b3b3;
  min-height: 2em;
  padding: 1em 0;
  text-align: left;
}
.about-information-table tr:first-child th,
.about-information-table tr:first-child td {
  border-top: 1px solid #b3b3b3;
}
.about-information-table th {
  font-weight: bold;
  padding-left: .5em;
  vertical-align: middle;
}
.about-information-table td {
  padding-left: 1em;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .about-information {
    background: #fff;
  }
  .about-information-in {
    align-items: flex-start;
    display: flex;
    flex-grow: 10;
    justify-content: flex-start;
    text-align: center;
  }
  /* title */
  .about-information-title-wrap {
    text-align: left;
  }
  .about-information-title hr {
    display: none;
  }
  /* table */
  .about-information-table {
    font-size: min(20px, 1.04vw);
    margin-left: min(160px, 8.33vw);
    min-width: 55.5%;
  }
  .about-information-table a img {
    height: min(20px, 1.04vw);;
  }
  .about-information-table th,
  .about-information-table td {
    min-height: 1em;
  }
  .about-information-table td {
    padding-left: 4em;
  }
}

/*----------------------------------------------------
 btn-more
----------------------------------------------------*/
.btn-more {
  margin-bottom: 1.5em;
}
.btn-more .read-more {
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  display: inline-block;
  padding: 1em 0;
  text-align: center;
  width: 100%;
}
.btn-more .read-more {
}

/*----------------------------------------------------
 about-organization
----------------------------------------------------*/
@media (min-width: 768px) {
  .about-organization {
    background: #ebeff2;
  }
  .about-organization-img {
    padding-top: 2em;
  }
}

/*----------------------------------------------------
 history
----------------------------------------------------*/
.about-history-table {
  margin-bottom: 19vw;
}
/* head */
.about-history-thead-th1,
.about-history-thead-th2 {
  color: #fff;
  font-size: 3.56vw;
  line-height: 1;
  padding: .5em 1em .35em;
  text-align: center;
}
.about-history-thead-th1 {
  background: #698faf;
}
.about-history-thead-th2 {
  background: #1e2c5b;
}
/* each */
.about-history-each {
  margin-top: 2em;
}
.about-history-each sup {
  font-size: 75%;
}
/* year */
.about-history-year {
  margin-bottom: .25em;
}
.about-history-year span {
  color: #cc586b;
  font-size: 6.36vw;
}
.about-history-year small {
  color: #4d4d4d;
  font-size: 3.82vw;
}
/* steps / times */
.about-history-steps,
.about-history-times {
  background: #eef1f9;
  padding: .75em .5em;
}
.about-history-steps:empty,
.about-history-times:empty {
  display: none;
}

@media (min-width: 768px) {
  .about-history {
    padding-top: min(80px, 4.17vw) !important;
  }
  .about-history-table {
    margin-bottom: min(120px, 6.25vw);
    position: relative;
  }
  .about-history-table::before {
    border-style: solid;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-top: 12px solid #cc586b;
    border-bottom: 0;
    content: '';
    height: 0;
    position: absolute;
    left: -8px;
    bottom: -30px;
    width: 0;
  }
  .about-history-table::after {
    background: #cc586b;
    content: '';
    height: calc(100% - 43px);
    position: absolute;
    left: 0;
    top: 77px;
    width: 2px;
  }
  /* head */
  .about-history-head {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-left: 38px;
  }
  .about-history-thead-th1,
  .about-history-thead-th2 {
    font-size: min(16px, 0.83vw);
    margin-left: 1.67vw;
    padding: .5em 1em .35em;
    width: 37%;
  }
  .about-history-each .about-history-thead-th1,
  .about-history-each .about-history-thead-th2 {
    display: none;
  }
  /* each */
  .about-history-each {
    align-items: stretch;
    border-bottom: 1px solid #b3b3b3;
    display: flex;
    margin-top: 0;
    margin-left: 38px;
    padding: 0;
    justify-content: flex-start;
  }

  /* year */
  .about-history-year {
    align-items: center;
    display: flex;
    flex-grow: 100; 
    flex-shrink: 100; 
    margin-bottom: 0;
    padding: 2em 0;
    position: relative;
  }
  .about-history-year::after {
    background: #cc586b;
    border-radius: 100%;
    content: '';
    height: 18px;
    position: absolute;
    left: -46px;
    top: 50%;
    margin-top: -9px;
    width: 18px;
  }
  .about-history-year span {
    font-size: min(20px, 1.04vw);
    font-weight: bold;
  }
  .about-history-year small {
    font-size: min(16px, 0.83vw);
  }
  /* steps / times */
  .about-history-steps,
  .about-history-times {
    background: #eef1f9;
    font-size: min(20px, 1.04vw);
    margin-left: 1.67vw;
    padding: 2em;
    width: 37%;
  }
  .about-history-steps {
    background: transparent;
  }
  .about-history-times {
    align-items: center;
    background: #f7f8fc;
    display: flex;
  }
  .about-history-steps:empty,
  .about-history-times:empty {
    display: block;
  }
}

/*----------------------------------------------------
 history slider
----------------------------------------------------*/
.about-history-slider {
  
}
/* slider */
.about-history-slider {
  margin-bottom: 1em;
}
.about-history-slider .slick-slide {
  padding: 0 5px;
  width: 76.34vw;
}
.about-history-slider .slick-slide a {
  background: #fff;
  color: inherit;
  display: block;
  text-decoration: none;
}
/* caption */
.top-history-caption {
  background: #ebeff2;
  font-size: 3.56vw;
  margin-top: -1px;
  padding: 1em;
}

@media (min-width: 768px) {
  /* slider */
  .about-history-slider {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: min(95px, 4.95vw);;
    position: relative;
    max-width: 1200px;
  }
  .about-history-slider .slick-prev,
  .about-history-slider .slick-next {
    background: url(img/icon-arrow-gray.png) no-repeat center center;
    background-size: 100% auto;
    border: 0;
    cursor: pointer;
    height: min(88px, 4.58vw);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-indent: -9999px;
    width: min(44px, 2.29vw);
  }
  .about-history-slider .slick-prev {
    background-image: url(img/icon-arrow-gray-left.png);
    right: calc(100% + min(15px, 0.78vw));
  }
  .about-history-slider .slick-next {
    left: calc(100% + min(15px, 0.78vw));
  }
  .about-history-slider .slick-slide {
    padding: 0 10px;
    width: min(385px, 32.2vw);
  }
  /* caption */
  .top-history-caption {
    font-size: min(17px, 0.89vw);
    margin-top: -1px;
    padding: 1em;
  }
  
}

@media (min-width: 1200px) {
  .about-history-slider .slick-slide {
    width: 385px;
  }
  .about-history-slider .slick-prev {
    background-image: url(img/icon-arrow-gray-left.png);
    right: calc(100% + min(35px, 1.82vw));
  }
  .about-history-slider .slick-next {
    left: calc(100% + min(35px, 1.82vw));
  }
}

/*----------------------------------------------------
 about-history-remark
----------------------------------------------------*/
.about-history-remark-each {
  align-items: flex-start;
  display: flex;
  font-size: 4.58vw;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: -20px;
  margin-right: -20px;
  padding: 1.5em 1em;
}
.about-history-remark-each:nth-child(odd) {
  background: #ebeff2;
}
.about-history-remark-kome {
  font-weight: bold;
  width: 11%;
}
.about-history-remark-title,
.about-history-remark-text {
  width: 89%;
}
/* title */
.about-history-remark-title {
  font-weight: bold;
}
.about-history-remark-title img {
width: 74.2%;
}
/* text */
.about-history-remark-text {
  font-size: 3.82vw;
  margin-top: 1.5em;
}
.about-history-remark-blockquote {
  font-family:"ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  text-align: right;
}

@media (min-width: 768px) {
  .about-history-remark-each {
    font-size: min(20px, 1.14vw);
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    padding: 2em;
  }
  .about-history-remark-kome {
    width: 4%;
  }
  .about-history-remark-title,
  .about-history-remark-text {
    width: 42.9%;
  }
  /* title */
  .about-history-remark-title img {
    margin-top: 1.5em;
    width: 50%;
  }
  /* text */
  .about-history-remark-text {
    font-size: min(18px, 1.0vw);
    margin-top: 0;
  }
  .about-history-remark-blockquote {
    font-size: min(16px, 0.93vw);
  }
}


/*----------------------------------------------------
 whats
----------------------------------------------------*/
.whats-archive {
  padding-bottom: 35.62vw;
}
/* cat */
.whats-cat-list {
  margin-bottom: .5em;
  margin-left: 20px;
  overflow-x: scroll;
  width: 100%;
}
.whats-cat-list ul {
  align-items: flex-end;
  border-bottom: 1px solid #565757;
  display: flex;
  justify-content: flex-start;
}
.whats-cat-list li {
  margin-right: 2.54vw;
}
.whats-cat-list li a {
  border: 1px solid #565757;
  border-bottom: 0;
  border-radius: .5em .5em 0 0;
  color: var(--main-black);
  display: inline-block;
  font-size: 4.58vw;
  padding: .75em 1em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.whats-cat-list li.whats-cat-active a {
  background: #1e2c5b;
  border-color: #1e2c5b;
  color: #fff !important;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
}

/* each */
.whats-list {
  margin-bottom: 13.23vw;
}
.whats-list-each a {
  align-items: flex-start;
  color: inherit;
  display: flex;
  justify-content: space-between;
  padding-top: 7.12vw;
  padding-bottom: 7.12vw;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
}
.whats-list-each:nth-child(even) a {
  background-color: #ebeff2;
}
.whats-list-img {
  width: 31.3%;
}
.whats-list-text {
  width: 64.4%;
}
/* cat */
.whats-list-cat {
  margin-bottom: .25em;
}
.whats-list-cat span {
  color: #fff;
  display: inline-block;
  font-size: 3.56vw;
  line-height: 1;
  padding: .5em .25em .25em;
}
/* date */
.whats-list-date {
  color: #808080;
  font-size: 3.56vw;
}
/* list */
.whats-list-title {
  line-height: 1.5;
  margin-top: .25em;
  width: 100%;
}
.whats-list-title-text {
  font-size: 4.07vw;
}
/* archive */
.whats-link-archive {
  margin-top: 12.72vw;
  padding-left: 20px;
  padding-right: 20px;
}
.whats-link-archive select {
  border: 1px solid #3a3a3a;
  border-radius: 2em;
  font-size: 5.09vw;
  padding: .5em;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .whats-archive {
    margin-left: auto;
    margin-right: auto;
    max-width: 1175px;
    padding-bottom: min(110px, 5.73vw);
  }
  /* cat */
  .whats-cat-list {
    margin-bottom: min(60px, 3.13vw);
    margin-left: 0;
    overflow-x: unset;
  }
  .whats-cat-list li {
    margin-right: min(10px, 0.52vw);
    width: 14.47%;
  }
  .whats-cat-list li a {
    font-size: min(16px, 0.83vw);
    padding: .5em 1em;
    width: 100%;
  }
  .whats-cat-list li.whats-cat-active a {
    font-size: min(20px, 1.04vw);
    font-weight: bold;
    padding-top: .75em;
    padding-bottom: .75em;
  }
  
  /* each */
  .whats-list {
    margin-bottom: min(54px, 2.81vw);
  }
  .whats-list-each a {
    background: url(img/icon-arrow-gray3.png) no-repeat right min(20px, 1.04vw) center;
    background-size: min(14px, 0.73vw) auto;
    border-bottom: 1px solid #b3b3b3;
    padding: min(20px, 1.04vw);
    padding-right: calc(min(14px, 0.73vw) + 1.5em);
  }
  .whats-list-img {
    width: 19.2%;
  }
  .whats-list-text {
    width: 77.4%;
  }
  /* cat */
  .whats-list-cat {
    display: inline-block;
    margin-bottom: .25em;
  }
  .whats-list-cat span {
    font-size: min(16px, 0.83vw);
    padding: .5em .5em .25em;
  }
  /* date */
  .whats-list-date {
    display: inline-block;
    font-size: min(16px, 0.83vw);
    margin-left: .5em;
  }
  /* list */
  .whats-list-title {
    margin-top: min(30px, 1.56vw);
  }
  .whats-list-title-text {
    font-size: min(20px, 1.04vw);
  }
  /* archive */
  .whats-link-archive {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .whats-link-archive select {
    border-radius: 2em;
    font-size: min(20px, 1.04vw);
    padding: .5em;
    text-align: left;
  }
  /* link */
  .whats-link {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}


/*----------------------------------------------------
 pager
----------------------------------------------------*/
.pager ul {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  font-size: 4.07vw;
  justify-content: center;
}
.pager li a {
  color: inherit;
  display: inline-block;
  height: 11.45vw;
  line-height: 11.45vw;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
}
.pager li a.isActive {
  background: #ebeff2;
}
.pager-number {
  width: 11.45vw;
}
.pager .arrleft {
  margin-right: 4vw;
}
.pager .arrright,
.pager .arrlast {
  margin-left: 4vw;
}

@media (min-width: 768px) {
  .pager ul {
    font-size: min(16px, 0.83vw);
    justify-content: flex-start;
  }
  .pager li a {
    height: min(45px, 2.34vw);
    line-height: min(45px, 2.34vw);
    margin-bottom: min(15px, 0.78vw);
  }
  .pager-number {
    width: min(45px, 2.34vw);
  }
  .pager .arrleft {
    margin-right: min(20px, 1.04vw);
  }
  .pager .arrright,
  .pager .arrlast {
    margin-left: min(20px, 1.04vw);
  }
}

/*----------------------------------------------------
 single
----------------------------------------------------*/
.single-sns {
  margin-bottom: 15.625vw;
}
.whats-single {
  border-top: 1px solid #565757;
  padding-top: 12.72vw;
  padding-left: 20px;
  padding-right: 20px;
}
.whats-single-in {
}
.whats-single-header {
  border-bottom: 1px solid #565757;
  margin-bottom: 7.63vw;
  padding-bottom: 7.63vw;
}
.whats-single-meta {
  margin-bottom: .5em;
}
/* cat */
.whats-single-cat span {
  color: #fff;
  display: inline-block;
  font-size: 3.56vw;
  line-height: 1;
  padding: .5em .25em .25em;
}
/* date */
.whats-single-date {
  color: #808080;
  font-size: 3.56vw;
}
/* title */
.whats-single-title-text {
  font-size: 4.58vw;
}
/* mv */
.whats-single-mv {
  margin-bottom: 7.63vw;
}

/* info */
.whats-single-info {
  border-top: 2px solid #1e2c5b;
  margin-top: 7.63vw;
  padding-top: 4vw;
}
/* outline */
.whats-single-outline-title {
  font-size: 4.58vw;
}
/* table */
.whats-single-outline table {
  border-collapse: collapse;
  width: 100%;
}
.whats-single-outline th,
.whats-single-outline td {
  padding: 1em;
  text-align: left;
  vertical-align: top;
}
.whats-single-outline th {
  white-space: nowrap;
}
.whats-single-outline tr:nth-child(even) th,
.whats-single-outline tr:nth-child(even) td {
  background: #ebeff2;
}
/* person */
.whats-single-person-list {
  margin-top: 9vw;
}
.whats-single-person:nth-child(n+2) {
  margin-top: 4.5vw;
}
.whats-single-person {
  background: #ebeff2;
  padding: 1em;
}
.whats-single-person-title {
  font-size: 4.58vw;
  margin-top: 1em;
}
.whats-single-person-title small {
  font-size: 80%;
}
.whats-single-person-text {
  margin-top: .5em;
}
/* apply */
.whats-single-apply {
  margin-top: 9vw;
  text-align: center;
}
.whats-single-apply a {
  background: #1e2c5b;
  border-radius: 8vw;
  color: #fff;
  display: inline-block;
  font-size: 4.07vw;
  font-weight: bold;
  padding: 1em;
  text-align: center;
  text-decoration: none;
  width: 80%;
}
/* nav */
.whats-single-nav {
  border-top: 1px solid #565757;
  margin-top: 17.81vw;
  padding-top: 5.09vw;
}
.whats-single-next-prev {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 9vw;
}
.whats-single-next-prev a {
  color: inherit;
  text-decoration: none;
}
.whats-single-seminar {
  text-align: center;
}
.whats-single-seminar a {
  border: 1px solid #3a3a3a;
  border-radius: 8vw;
  color: inherit;
  display: inline-block;
  font-size: 4.07vw;
  font-weight: bold;
  padding: 1em;
  text-align: center;
  text-decoration: none;
  width: 80%;
}
@media (min-width: 768px) {
  .single-sns {
    margin-bottom: 0;
  }
  .whats-single {
    padding-top: min(95px, 4.95vw);
    padding-left: 40px;
    padding-right: 40px;
  }
  .whats-single-in {
    margin-left: auto;
    margin-right: auto;
    max-width: 1175px;
  }
  .whats-single-header {
    margin-bottom: min(54px, 2.81vw);
    padding-bottom: min(36px, 1.88vw);
  }
  .whats-single-meta {
    margin-bottom: 1em;
  }

  /* cat */
  .whats-single-cat {
    display: inline-block;
    margin-bottom: 0;
  }
  .whats-single-cat span {
    font-size: min(16px, 0.83vw);
    padding: .5em .5em .25em;
  }
  /* date */
  .whats-single-date {
    display: inline-block;
    font-size: min(16px, 0.83vw);
    margin-left: .5em;
  }
  /* title */
  .whats-single-title-text {
    font-size: min(40px, 2.08vw);
  }
  /* mv */
  .whats-single-mv {
    margin-bottom: min(74px, 3.85vw);
  }
  .whats-single-mv img {
    margin-left: auto;
    margin-right: auto;
    max-width: 77%;
  }
  /* info */
  .whats-single-info {
    border-top-width: 3px;
    margin-top: min(92px, 4.79vw);
    padding-top: min(32px, 1.67vw);
  }
  /* outline */
  .whats-single-outline-title {
    font-size: min(25px, 1.3vw);
  }
  /* table */
  .whats-single-outline th,
  .whats-single-outline td {
    padding: 1.25em min(22px, 1.15vw);
  }
  .whats-single-outline td {
    width: 90%;
  }
  /* person */
  .whats-single-person-list {
    margin-top: min(70px, 3.65vw);
  }
  .whats-single-person:nth-child(n+2) {
    margin-top: min(35px, 1.82vw);
  }
  .whats-single-person {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: min(22px, 1.15vw);
  }
  .whats-single-person-img {
    width: 32%;
  }
  .whats-single-person-info {
    width: 64.5%;
  }
  .whats-single-person-title {
    font-size: min(25px, 1.3vw);
    margin-top: 0;
  }
  .whats-single-person-text {
    margin-top: .75em;
  }
  /* apply */
  .whats-single-apply {
    margin-top: min(54px, 2.81vw);
  }
  .whats-single-apply a {
    border-radius: 8vw;
    font-size: min(20px, 1.04vw);
    width: 21%;
  }
  /* nav */
  .whats-single-nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: min(145px, 7.55vw);
    padding-top: min(28px, 1.46vw);
  }
  .whats-single-next-prev {
    margin-bottom: 0;
    width: 21%;
  }
  .whats-single-next-prev a {
    font-size: min(18px, 0.94vw);
  }
  .whats-single-seminar {
    width: 18%;
  }
  .whats-single-seminar a {
    border-radius: 8vw;
    font-size: min(20px, 1.04vw);
    width: 100%;
  }
}

/*----------------------------------------------------
 editor
----------------------------------------------------*/
.icon-external a {
  background: url(img/icon-external.png) no-repeat right center;
  background-size: auto 1em;
  padding-right: 1.75em;
}
.editor *:nth-child(n+2){
  margin-top: 1.25em;
}
.editor li:nth-child(n+2){
  margin-top: 0;
}
.editor img {
  display: inline-block;
  height: auto;
  margin-bottom: .25rem;
  vertical-align: middle;
}

.editor ul {
  list-style-type: disc;
  padding-left: 1.25em;
}

.editor .alignright {
  float: right;
  margin-top: 1rem;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.editor .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.editor .alignleft {
  float: left;
  margin-top: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.editor .wp-caption-text {
  padding-top: .5rem;
}

/* h */
.editor h1 {
  font-size: 7.55vw;
  text-align: center;
}
.editor h1.has-background,
.editor h2.has-background,
.editor h3.has-background,
.editor h4.has-background,
.editor h5.has-background,
.editor h6.has-background {
  padding: .75em;
}
.editor h3.wp-block-heading {
  border-bottom: 2px solid #1e2c5b;
  margin-bottom: 1.5em;
  padding-bottom: 1.25em;
}
.editor h2 {
  font-size: 4.58vw;
}
.editor h3 {
  font-size: 4.07vw;
}
/* table */
.editor thead th {
  background: #ffffcc;
}
@media (min-width: 768px) {
  .editor .alignright {
    float: right;
    margin-top: 2rem;
    margin-left: 2rem;
    margin-bottom: 2rem;
  }
    
  .editor .alignleft {
    margin-top: 2rem;
    margin-right: 2rem;
    margin-bottom: 2rem;
  }
  /* h */
  .editor h1 {
    font-size: min(50px, 2.6vw);
    margin-bottom: min(42px, 2.19vw);
  }
  .editor h3.wp-block-heading {
    border-bottom-width: 3px;
  }
  .editor h2 {
    font-size: min(32px, 1.67vw);
  }
  .editor h3 {
    font-size: min(24px, 1.25vw);
  }
}

/*----------------------------------------------------
 contact
----------------------------------------------------*/
/* step */
.contact-step {
  align-items: center;
  color: #1e2c5b;
  display: flex;
  font-size: 4.58vw;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: 89.82vw;
}
.contact-step-text {
  border: 1px solid #000;
  border-radius: 1em;
  line-height: 1;
  padding: 1.15em 0 1em;
  text-align: center;
  width: 23.16vw;
}
.contact-step-text.active {
  background: #1e2c5b;
  border: 1px solid #1e2c5b;
  color: #fff;
}
.contact-step-arrow {
}
.contact-step-arrow {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 8.14vw;
  height: 0;
}
.contact-step-arrow-solid {
  border-top: 2px solid #1e2c5b;
}
.contact-step-arrow-dashed {
  border-top: 2px dashed #1e2c5b;
}
.contact-step-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(calc(-50% - 1px));
  transform: translateY(calc(-50% - 1px));
  right: -0.05em;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
}
/* form */
.contact-form-input input,
.contact-form-input textarea {
  width: 100%;
}
.contact-form-each:nth-child(n+2) {
  margin-top: 8.65vw;
}
.contact-form-title {
  font-size: 4.58vw;
  margin-bottom: .25em;
}
.contact-form-input {
  font-size: 4.07vw;
}
.contact-form-input input,
.contact-form-input textarea {
  border: 1px solid #b9b9ba;
  border-radius: .5em;
  padding: .75em .5em;
}
.contact-form-input ::placeholder {
  color: #cccccc;
}
/* remark */
.contact-remark {
  background: #ebeff2;
  font-size: 4.07vw;
  margin-top: 11.45vw;
  padding: 1.25em 1em;
}
.contact-remark-title {
  font-size: 4.58vw;
  margin-bottom: .25em;
}
.contact-remark li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
/* doui */
.contact-doui {
  font-size: 4.58vw;
  font-weight: bold;
  margin-top: 11.45vw;
  text-align: center;
}
.contact-doui .wpcf7-list-item {
  margin: 0;
}
/* btn */
.contact-btn {
  margin-top: 11.45vw;
  text-align: center;
}
.contact-btn .wpcf7-spinner {
  display: block;
}
.contact-next {
  background: #1e2c5b;
  border: 1px solid #1e2c5b;
  border-radius: 10vw;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 5.09vw;
  font-weight: bold;
  padding: .75em 1em;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.contact-next:disabled {
  background: #999;
  border: 1px solid #999;
}
.contact-back {
  background: #fff;
  border: 1px solid #1e2c5b;
  border-radius: 10vw;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-size: 5.09vw;
  font-weight: bold;
  margin-bottom: 1em;
  padding: .75em 1em;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
@media (min-width: 768px) {
  /* step */
  .contact-step {
    font-size: min(20px, 1.04vw);
    margin: min(72px, 3.75vw) auto;
    width: 77.5%;
  }
  .contact-step-text {
    width: 17.45%;
  }
  .contact-step-arrow {
    width: 19.2%;
  }
  /* form */
  .contact-form-each:nth-child(n+2) {
    margin-top: min(45px, 2.34vw);
  }
  .contact-form-title {
    font-size: min(18px, 0.94vw);
    margin-bottom: .25em;
  }
  .contact-form-input {
    font-size: min(16px, 0.83vw);
  }
  .contact-form-input input,
  .contact-form-input textarea {
    border-radius: .25em;
    padding: 1em .75em;
  }
  /* remark */
  .contact-remark {
    font-size: min(16px, 0.83vw);
    margin-top: min(45px, 2.34vw);
    padding: 2em 1.5em;
  }
  .contact-remark-title {
    font-size: min(18px, 0.94vw);
    margin-bottom: .25em;
  }
  /* doui */
  .contact-doui {
    font-size: min(18px, 0.94vw);
    margin-top: min(55px, 2.86vw);
  }
  /* btn */
  .contact-btn {
    margin-top: min(55px, 2.86vw);
  }
  .contact-next,
  .contact-back {
    border-radius: 10vw;
    font-size: min(20px, 1.04vw);
    margin: 0 1%;
    padding: .75em 1em;
    width: 21%;
  }
}

/*----------------------------------------------------
 koukoku
----------------------------------------------------*/
.koukoku-title {
  font-size: 7.55vw;
  text-align: center;
}
/* each */
.koukoku-each:nth-child(n+2) {
  margin-top: 19.53vw;
}
/* list */
.koukoku-list table {
  border-collapse: collapse;
  width: 100%;
}
.koukoku-list tr:nth-child(even) {
  background: #ebeff2;
}

.koukoku-list-year {
  color: #333;
  font-size: 4.04vw;
}
.koukoku-list-info a {
  color: #4d9edb;
  font-size: 4.04vw;
  vertical-align: middle;
}
.koukoku-list-info img {
  display: inline-block;
  height: 4.04vw;
  margin-right: .25em;
  vertical-align: middle;
  width: auto;
}
.koukoku-list-remark {
  color: #808080;
  font-size: 3.52vw;
}

@media (max-width: 767px) {
  /* list */
  .koukoku-list thead {
    display: none;
  }
  .koukoku-list tr,
  .koukoku-list th,
  .koukoku-list td {
    display: block;
  }
  .koukoku-list tr {
    padding: 20px;
  }
  .koukoku-list-remark-in {
    border-top: 1px solid #b3b3b3;
    margin-top: 1em;
    padding-top: 1em;
  }
}
@media (min-width: 768px) {
  .koukoku-main {
    padding-left: 40px;
    padding-right: 40px;
  }
  .koukoku-in {
    margin-left: auto;
    margin-right: auto;
    max-width: 1175px;
  }
  .koukoku-title {
    font-size: min(50px, 2.6vw);
    margin-bottom: min(42px, 2.19vw);
  }

  /* each */
  .koukoku-each:nth-child(n+2) {
    margin-top: min(120px, 6.25vw);
  }
  /* list */
  .koukoku-list tr:nth-child(even) {
    background: #ebeff2;
  }
  .koukoku-list thead th {
    background: #1e2c5b;
    border-right: 2px solid #fff;
    color: #fff;
    font-size: min(16px, 0.83vw);
    font-weight: bold;
    padding: .5em 1em;
    text-align: center;
  }
  .koukoku-list th,
  .koukoku-list td {
    padding: 1em .5em;
  }
  .koukoku-list-year {
    font-size: min(18px, 0.94vw);
    text-align: center;
  }
  .koukoku-list-info {
    text-align: center;
  }
  .koukoku-list-info a {
    font-size: min(18px, 0.94vw);
  }
  .koukoku-list-info img {
    height: min(18px, 0.94vw);
  }
  .koukoku-list-remark {
    font-size: min(16px, 0.83vw);
    text-align: center;
  }
  .koukoku-list-remark-in {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }
}

/*----------------------------------------------------
 apply-fin
----------------------------------------------------*/
.apply-fin {
  position: relative;
}
.apply-fin::before {
  background: rgba(0, 0, 0, 0.5);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.apply-fin::after {
  color: #fff;
  content: '受付終了';
  font-size: 7.6vw;
  font-weight: bold;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 2;
}
.whats-list-img.apply-fin::after {
  font-size: 4.58vw;
}

@media (min-width: 768px) {
  .apply-fin::after,
  .whats-list-img.apply-fin::after {
    font-size: min(25px, 1.3vw);
  }
}


/*----------------------------------------------------
 sitemap
----------------------------------------------------*/
/* nav */
.sitemap-nav {
  margin-bottom: 2em;
  padding: 0 20px;
}
.sitemap-nav a {
  background: url(img/icon-arrow-black.png) no-repeat right 1em center;
  background-size: 2.5vw auto;
  border-bottom: 1px solid #565757;
  color: inherit;
  display: block;
  line-height: 1.1;
  padding: .75em 0 1em;
  position: relative;
  text-decoration: none;
}
.sitemap-nav li:first-child a {
  border-top: 1px solid #565757;
}
@media (min-width: 768px) {
  /* nav */
  .sitemap-nav {
    margin-bottom: 1em;
    padding: 0;
  }
  .sitemap-nav ul {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .sitemap-nav li {
    width: 25%;
  }
  .sitemap-nav a {
    background: url(img/icon-arrow-red.png) no-repeat left center;
    background-size: min(6.5px, 0.34vw) auto;
    border-bottom: 0;
    display: block;
    line-height: 1.1;
    margin-bottom: 1.25em;
    padding: 0;
    padding-left: min(13px, 0.68vw);
  }
  .sitemap-nav li:first-child a {
    border-top: 0;
  }
}