@charset "UTF-8";
/*!
  Theme Name: hkg-100th framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: hkg-100th framework
  Version: 2.0
  Date: 2026.06.26
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: clamp(16px, 1.2vw, 18px);
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1rem;
  color: #2B2B2B;
  font-family: "Zen Old Mincho", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  letter-spacing: 0.03em;
  width: 100%;
  /* background: #F4F4F4; */
  background: url(img/top/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

a {
  color: #2B2B2B;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}

a:hover {
  color: #2B2B2B;
  text-decoration: none;
  opacity: 0.65;
}

a:active,
a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dd,
dt,
dl {
  margin: 0;
}

figcaption,
figure,
main,
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt0 {
  margin-top: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .mt0 {
    margin-top: 0px;
  }

  .mt5 {
    margin-top: 2.5px;
  }

  .mt10 {
    margin-top: 5px;
  }

  .mt15 {
    margin-top: 7.5px;
  }

  .mt20 {
    margin-top: 10px;
  }

  .mt25 {
    margin-top: 12.5px;
  }

  .mt30 {
    margin-top: 15px;
  }

  .mt35 {
    margin-top: 17.5px;
  }

  .mt40 {
    margin-top: 20px;
  }

  .mt45 {
    margin-top: 22.5px;
  }

  .mt50 {
    margin-top: 25px;
  }

  .mt55 {
    margin-top: 27.5px;
  }

  .mt60 {
    margin-top: 30px;
  }

  .mt65 {
    margin-top: 32.5px;
  }

  .mt70 {
    margin-top: 35px;
  }

  .mt75 {
    margin-top: 37.5px;
  }

  .mt80 {
    margin-top: 40px;
  }

  .mt85 {
    margin-top: 42.5px;
  }

  .mt90 {
    margin-top: 45px;
  }

  .mt95 {
    margin-top: 47.5px;
  }

  .mt100 {
    margin-top: 50px;
  }

  .mb0 {
    margin-bottom: 0px;
  }

  .mb5 {
    margin-bottom: 2.5px;
  }

  .mb10 {
    margin-bottom: 5px;
  }

  .mb15 {
    margin-bottom: 7.5px;
  }

  .mb20 {
    margin-bottom: 10px;
  }

  .mb25 {
    margin-bottom: 12.5px;
  }

  .mb30 {
    margin-bottom: 15px;
  }

  .mb35 {
    margin-bottom: 17.5px;
  }

  .mb40 {
    margin-bottom: 20px;
  }

  .mb45 {
    margin-bottom: 22.5px;
  }

  .mb50 {
    margin-bottom: 25px;
  }

  .mb55 {
    margin-bottom: 27.5px;
  }

  .mb60 {
    margin-bottom: 30px;
  }

  .mb65 {
    margin-bottom: 32.5px;
  }

  .mb70 {
    margin-bottom: 35px;
  }

  .mb75 {
    margin-bottom: 37.5px;
  }

  .mb80 {
    margin-bottom: 40px;
  }

  .mb85 {
    margin-bottom: 42.5px;
  }

  .mb90 {
    margin-bottom: 45px;
  }

  .mb95 {
    margin-bottom: 47.5px;
  }

  .mb100 {
    margin-bottom: 50px;
  }
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  margin: 2px;
  padding: 0 0.3em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #2B2B2B;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: 0.5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 0.3em;
  resize: vertical;
  width: 100%;
}

textarea :focus {
  outline: none;
  border-color: #2B2B2B;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: 0.5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}

.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #2B2B2B;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #2B2B2B;
  color: #2B2B2B;
}

.pager .previous,
.pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}

.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pagination>li {
  position: relative;
}

.pagination>li>span,
.pagination>li>a {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination>li>span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination>li>a:active,
.pc .pagination>li>a:hover,
.pc .pagination>li>a:focus {
  border-color: #2B2B2B;
  color: #2B2B2B;
}

.pagination>li span.dot {
  border: none;
  width: 1em;
}



/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}

.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #2B2B2B;
}

.breadcrumbs ul,
.breadcrumbs ol {
  list-style: none;
  padding: 0;
}

.breadcrumbs li {
  display: inline;
}

.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}

.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }

  .breadcrumbs li:before {
    margin: 0 5px;
  }
}

/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #2B2B2B;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.2em 2em;
}

@media screen and (max-width: 560px) {

  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}

/***************************

style/header.scss

***************************/
/* toggle button */
.toggle {
  display: none;
}

@media screen and (max-width: 768px) {
  .toggle {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    width: 92px;
    height: 92px;
    background: none;
    border: none;
    outline: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    translate: 0 -50%;
    z-index: 7;
    background: #2B2B2B;
  }

  .toggle__bar {
    position: relative;
    margin: 8px auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .toggle__bar,
  .toggle__bar::before,
  .toggle__bar::after {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .toggle__bar::before,
  .toggle__bar::after {
    position: absolute;
    content: "";
  }

  .toggle__bar::before {
    top: -8px;
  }

  .toggle__bar::after {
    top: 8px;
  }

  .toggle__txt:before {
    display: inline-block;
    content: "メニュー";
    font-weight: 500;
    font-size: 0.6666666667rem;
    letter-spacing: 0.03em;
    color: #fff;
  }
}

@media screen and (max-width: 425px) {
  .toggle {
    width: 72px;
    height: 72px;
  }
}

.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__txt:before {
  content: "とじる";
}

.toggle.active .toggle__bar::before {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.toggle.active .toggle__bar::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/***************************

 header

***************************/
body.hidden {
  overflow: hidden;
}

.header {
  position: relative;
  /* background-color: #fff; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  transition: all 0.6s;
}

.header.fixedmenu {
  background-color: #fff;
}

@media screen and (max-width: 425px) {
  .header {
    min-height: 72px;
  }
}

@media screen and (max-width: 425px) {
  .header.fixedmenu .gnav {
    top: 72px;
    height: calc(100lvh - 72px);
  }
}

.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding-left: clamp(20px, 3.3333333333vw, 50px);
  padding-right: clamp(20px, 3.3333333333vw, 50px);
}

.header-overlay {
  position: fixed;
  width: 100%;
  height: 100lvh;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  z-index: 15;
  opacity: 0;
  pointer-events: none;
}

.header-overlay.show {
  opacity: 1;
}

.header .logo {
  /* max-width: 260px;
  width: 100%; */

  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 10px;
}

@media screen and (max-width: 768px) {
  .header .logo {
    max-width: 220px;
  }
}

/* @media screen and (max-width: 425px) {
  .header .logo {
    max-width: calc(100% - 72px);
  }
  .header .logo img {
    height: 72px;
    object-fit: cover;
  }
} */

.header .logo span {
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .header .logo span {
    font-size: 16px;
  }
}

.gnav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gnav.active {
  translate: 0 0;
}

@media screen and (max-width: 768px) {
  .gnav {
    display: block;
    max-width: 500px;
    width: 100%;
    height: calc(100lvh - 92px);
    background: #fff;
    position: fixed;
    top: 92px;
    right: 0;
    padding: 30px 20px;
    translate: 100% 0;
    transition: all 0.6s;
  }
}

@media screen and (max-width: 425px) {
  .gnav {
    height: calc(100lvh - 72px);
    top: 72px;
  }
}

.main-nav {
  display: flex;
  gap: 20px clamp(10px, 2.6666666667vw, 40px);
  align-items: center;
}

@media screen and (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
}

.main-nav li {
  position: relative;
}

.main-nav li a {
  /* font-size: 1.1111111111rem; */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
}

.main-nav li a:hover {
  opacity: 1;
  color: #2B4196;
}

.main-nav_btn {
  background: #2B4196;
  border: 1px solid #2B4196;
  color: #fff;
  border-radius: 40px;
  padding: 15px 40px;
}

.main-nav_btn:hover {
  opacity: 1;
  background: #fff;
  color: #2B4196;
}


/***************************

style/footer.scss

***************************/
.footer {
  width: 100%;
  background: #fff;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
}

.footer-sns-link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 15px;
  margin-bottom: 110px;
}

@media screen and (max-width: 1024px) {
  .footer-sns-link {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .footer-sns-link {
    grid-template-columns: 100%;
    margin-bottom: 60px;
  }
}

.footer-sns-link a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 80px;
  padding-left: 18%;
  border: 1px solid #E3E3E3;
  border-radius: 80px;
  background: #fff;
  font-size: 0.9444444444rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  .footer-sns-link a {
    max-width: 405px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 425px) {
  .footer-sns-link a {
    min-height: 70px;
  }
}

.footer-sns-link a i {
  position: absolute;
  top: 50%;
  left: 9%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  z-index: 3;
}

@media screen and (max-width: 425px) {
  .footer-sns-link a i {
    left: 20px;
    width: 35px;
    height: 35px;
  }
}

.footer-sns-link a i.fa-facebook-f {
  background: #3B5998;
  color: #fff;
  font-size: 0.9444444444rem;
}

.footer-sns-link a i.fa-instagram {
  color: #fff;
  font-size: 0.9444444444rem;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%), linear-gradient(185deg, rgba(255, 220, 128, 0), rgba(245, 96, 64, 0.8));
}

.footer-sns-link a span {
  font-size: 0.7222222222rem;
}

.footer-banner {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 425px) {
  .footer-banner {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}

/*////////////////////////

 user common css

////////////////////////*/
main {
  margin-top: 92px;
}

.wrap1250 {
  max-width: 1290px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (max-width: 425px) {
  .wrap1250 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.wrap975 {
  max-width: 1015px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (max-width: 425px) {
  .wrap975 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.sp550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_at {
  vertical-align: top;
}

.wd100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}

@media screen and (max-width: 550px) {
  .pc550 {
    display: none;
  }

  .sp550 {
    display: block;
  }
}

/*////////////////////////

fonts

////////////////////////*/
.ls5 {
  letter-spacing: 0.05em;
}

.lh2 {
  line-height: 2;
}

.lh18 {
  line-height: 1.8;
}

.lh1 {
  line-height: 1;
}

.thin {
  font-weight: 100;
}

.ex-light {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.sm-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.ex-bold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.zen-old {
  font-family: "Zen Old Mincho", serif;
}

.zen-kaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.cormorant {
  font-family: "Cormorant Infant", serif;
}


.fz32 {
  font-size: 1.7777777778rem;
}

@media screen and (max-width: 768px) {
  .fz32 {
    font-size: clamp(1.625rem, 4.1666666667vw, 2rem);
  }
}

.fz20 {
  font-size: 1.1111111111rem;
}

@media screen and (max-width: 768px) {
  .fz20 {
    font-size: clamp(1.125rem, 2.6041666667vw, 1.25rem);
  }
}

.fz18 {
  font-size: 1rem;
}

.fz13 {
  font-size: 0.7222222222rem;
}

.col_white {
  color: #fff;
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}

@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}

/*////////////////////////

btn

////////////////////////*/
.btn-center {
  margin-left: auto;
  margin-right: auto;
}

.btn-right {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin-left: auto;
    margin-right: auto;
  }
}

/*////////////////////////

hdg__

////////////////////////*/
/***************************

object/top.scss

***************************/
.mv {
  position: relative;
  width: 100%;
  /* margin-bottom: 160px; */
}

/* @media screen and (max-width: 768px) {
  .mv {
    margin-bottom: 80px;
  }
} */

.main-visual {
  position: relative;
  width: 100%;
  padding-top: 150px;
}

@media screen and (min-width: 769px) {
  .main-visual {
    padding-top: 200px;
  }
}

.main-visual .mvSlider .swiper-slide img {
  width: 100%;
}

.mv-visual_saide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 10px;
}

.mv-visual_contents {
  display: grid;
  gap: 10px;
  margin-top: 120px;
  position: relative;
}

.mv-visual_contents::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(transparent 80%, #fff);
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.mv-visual_deco {
  position: absolute;
  top: -85px;
  right: 0;
  left: 0;
  text-align: center;
  z-index: 5;
}

@media screen and (min-width: 769px) {
  .mv-visual_deco {
    top: -85px;
    right: 65px;
    left: auto;
  }

  .mv-visual_saide {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mv-visual_contents {
    display: grid;
    grid-template-columns: 20% 1fr 20%;
    gap: 20px 39px;
    margin-top: 80px;
  }
}

@media screen and (min-width: 1200px) {
  .mv-visual_contents {
    display: grid;
    grid-template-columns: 15% 1fr 15%;
    gap: 20px 39px;
  }
}

.mv-visual_img img,
.mv-visual_saide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.note {
  position: relative;
  padding-left: 1em;
}

.note:before {
  position: absolute;
  content: "※";
  left: 0;
}

.btn-pdf {
  position: relative;
  max-width: 610px;
  width: calc(100% - 80px);
  min-height: 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.3888888889rem;
  color: #fff;
  line-height: 2;
  margin-top: -67px;
  margin-left: auto;
  margin-right: auto;
  background: radial-gradient(at 55% 30%, #2CACE4, #2C56C7);
}

@media screen and (max-width: 425px) {
  .btn-pdf {
    min-height: 110px;
    margin-top: -55px;
    font-size: 1.1111111111rem;
  }
}

.btn-pdf:after {
  position: absolute;
  content: "";
  width: 21px;
  height: 29px;
  background: url("img/common/arrow.svg") no-repeat center center;
  background-size: cover;
  right: clamp(20px, 6.5104166667vw, 50px);
  top: 50%;
  translate: 0 -50%;
  z-index: 3;
}

@media screen and (max-width: 425px) {
  .btn-pdf:after {
    width: 16px;
    background-size: 100% auto;
    background-position: bottom center;
    right: 15px;
  }
}

.btn-pdf:hover {
  color: #fff;
}

.btn-pdf:hover:after {
  translate: 10px -50%;
  transition: all 0.6s;
}

@media screen and (max-width: 425px) {
  .btn-pdf img {
    width: 29px;
  }
}

/* 260618 */
.main-visual_title {
  font-size: 30px;
  text-align: center;
  font-weight: 500;


}

@media screen and (min-width: 425px) {
  .main-visual_title {
    font-size: 40px;
  }
}

.main-visual_title_color {
  background: linear-gradient(80deg, #B8BBDD, #384896, #232060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-visual_title_num {
  font-size: 114px;
  font-weight: 600;
  font-style: italic;

  background: linear-gradient(140deg, #B8BBDD, #384896, #232060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container_l {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}

.br_sp {
  display: block;
}

.br_pc {
  display: none;
}

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

  .br_pc {
    display: block;
  }
}

.title02 {
  text-align: center;
  font-size: 60px;
  font-family: "Cormorant Infant", serif;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.title02 span {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  margin-top: -20px;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 769px) {
  .title02 {
    font-size: 80px;
  }

  .title02 span {
    font-size: 30px;
    margin-top: -30px;
  }
}

@media screen and (min-width: 1024px) {
  .title02 {
    font-size: 128px;
  }

  .title02 span {
    font-size: 40px;
    margin-top: -40px;
  }
}

.top_message .title02 {
  background: linear-gradient(#E0DFDA, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top_history .title02 {
  background: linear-gradient(rgba(224, 223, 218, 0.43) 60%, #2C3581);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.top_history .title02 span {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

.top_event .title02 {
  background: linear-gradient(#E0DFDA 50%, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-items: flex-start;
}

.top_event .title02 span {
  color: #2B2B2B;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}


.message_text {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .message_text {
    font-size: 18px;
  }
}

.message_text-small {
  font-weight: 400;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .message_text-small {
    font-weight: 400;
    font-size: 16px;
  }
}

.top_message {
  padding: 80px 0 0;
  margin-bottom: 120px;

  background: url(img/top/message_bg.png);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: bottom right;
}

@media screen and (min-width: 769px) {
  .top_message {
    background-size: 50%;
  }
}

.message_text-name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.message_wrap {
  margin-top: -4%;
}

.top_history_bg {
  position: relative;
}

.top_history_bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/top/history_bg.png);
  background-repeat: repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.top_history {
  /* background: url(img/top/history_bg.png); */
  background: linear-gradient(45deg, #2B4196, #2D2564);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.history_left {
  position: absolute;
  top: 20%;
  left: 0;
  pointer-events: none;

}


.history_right {
  position: absolute;
  top: 20%;
  right: 0;
  pointer-events: none;
  text-align: right;
}

.history_right img {
  width: 100%;
  max-width: 50%;
}

.history_left img {
  width: 100%;
  max-width: 50%;
}

@media screen and (min-width: 769px) {
  .history_right img {
    width: 100%;
    max-width: 100%;
  }

  .history_left img {
    width: 100%;
    max-width: 100%;
  }
}

.top_history::before {
  content: "";
  width: 100%;
  height: 200px;
  background: linear-gradient(transparent, transparent, #fff);
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 769px) {
  .top_history::before {
    content: "";
    width: 100%;
    height: 300px;
    background: linear-gradient(transparent, transparent, #fff);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.top_history .container_l {
  position: relative;
  z-index: 5;
}

.top_history .title02 {
  line-height: 0.6;
}

.top_history .title02 span {
  line-height: 1;
  margin-top: -5px;
}

@media screen and (min-width: 769px) {
  .top_history .title02 span {
    margin-top: -10px;
  }
}

.history_text {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .history_text {
    font-size: 18px;
  }
}

.history_lead-text {
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .history_lead-text {
    margin-top: 40px;
  }
}

.history_list {
  margin-top: 50px;
  /* margin-bottom: 20px; */
  padding-bottom: 100px;
}

.history_item {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: flex-start;
  position: relative;
  padding-left: 20px;
  padding-bottom: 30px;
}

.history_img {
  margin-top: 15px;
}

.history_item::before {
  content: "";
  width: 3px;
  height: 100%;
  display: block;
  background: #fff;
  position: absolute;
  top: 20px;
  left: 0;
}

.history_item:last-child::before {
  top: 0;
  background: linear-gradient(#fff, transparent);
}

.history_item::after {
  content: "";
  background: #fff;
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: -5px;
}

.history_contents {
  margin-top: 10px;
}


@media screen and (min-width: 769px) {
  .history_item {
    grid-template-columns: 420px 1fr;
    padding-left: 30px;
    padding-bottom: 40px;
  }

  .history_item::before {
    top: 40px;
  }

  .history_item::after {
    top: 35px;
    left: -5px;
  }

  .history_contents {
    margin-top: 16px;
  }
}

.history_year {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.history_year .cormorant {
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 769px) {
  .history_year {
    color: #fff;
    font-weight: bold;
    font-size: 21px;
  }

  .history_year .cormorant {
    font-weight: 500;
    font-size: 64px;
  }
}




.btn01 {
  font-size: 16px;
  font-weight: bold;
  padding: 25px 40px;
  border-radius: 54px;
  background: #2B4196;
  border: 1px solid #2B4196;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  line-height: 1;
  position: relative;
}

.btn01 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

@media screen and (min-width: 769px) {
  .btn01 {
    padding: 30px 20px;
  }

  .btn01 i {

    right: 40px;
  }
}

.btn01:hover {
  opacity: 1;
  background: #fff;
  color: #2B4196;
}

@media screen and (min-width: 769px) {
  .btn01 {
    font-size: 18px;
  }
}


.btn02 {
  font-size: 16px;
  font-weight: bold;
  padding: 25px 40px;
  border-radius: 54px;
  background: #2B4196;
  border: 1px solid #2B4196;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  line-height: 1;
  position: relative;
}

.btn02 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

@media screen and (min-width: 769px) {
  .btn02 {
    padding: 30px 20px;
  }

  .btn02 i {
    left: 40px;
  }
}

.btn02:hover {
  opacity: 1;
  background: #fff;
  color: #2B4196;
}

@media screen and (min-width: 769px) {
  .btn02 {
    font-size: 18px;
  }
}

.top_event {
  padding: 120px 0 120px;
}


.tabs {
  margin-top: 50px;
  margin-bottom: 60px;
}


.tab-list,
.event_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 10px;
}

.tab-item,
.event_item {
  color: #B1B1B1;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.5s;
}

@media screen and (min-width: 769px) {

  .tab-item,
  .event_item {
    font-size: 18px;
  }
}



.tab-panel {
  display: none;
}

.tab-item.active,
.event_item.active {
  color: #2B4196;
  border-bottom: 1px solid #2B4196;
  font-weight: bold;
}
.tab-item.active a,
.event_item.active a {
  color: #2B4196;
  font-weight: bold;
}
.tab-panel.active {
  display: block;
}

.news_item {
  border-bottom: 1px solid #B1B1B1;
  padding: 25px 0;

  display: grid;
  gap: 20px;
}


@media screen and (min-width: 769px) {
  .news_item {
    grid-template-columns: 250px 1fr;
    align-items: flex-start;
  }
}

.news_left {
  display: grid;
  gap: 5px;
  padding: 0 7px;
}

.news_date {
  font-size: 16px;
  font-weight: 600;
  color: #B1B1B1;
}

.news_cat {
  border: 1px solid #2B4196;
  color: #2B4196;
  border-radius: 12px;
  width: 100%;
  max-width: max-content;
  padding: 2px 25px;
}

.news_title {
  font-size: 16px;
  color: #2B4196;
  font-weight: bold;
  /* margin-bottom: 10px; */
}

.news_contents p {
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .news_title {
    font-size: 18px;
  }

  .news_contents p {
    font-size: 15px;
  }
}

.title03 {
  color: #2C56C7;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .title03 {
    font-size: 36px;
  }
}

.top_support {
  background: url(img/top/support_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
  position: relative;
}

.top_support-bg_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.top_support-bg_top img {
  width: 100%;
}

.support_box {
  margin-top: 50px;
  background: #fff;
  padding: 30px 20px;
}

.support_box p {
  font-size: 16px;
  line-height: 1.94;
}

.support_box .btn01 {
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .support_box {
    margin-top: 70px;
    padding: 50px 40px;
  }

  .support_box p {
    font-size: 18px;
  }

  .support_box .btn01 {
    margin-top: 60px;
  }

}

.title04 {
  font-weight: bold;
  color: #2B2B2B;
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .title04 {
    font-weight: bold;
    font-size: 40px;
  }
}


.mv_fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.mv-visual_contents .mv_fadeUp {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
    じわっ
    ===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.blurTrigger {
  opacity: 0;
}




.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi .previouspostslink {
  margin-right: 25px;
  height: 55px;
  width: 55px;
  background-image: url(img/common/page-prev-black.png);
  background-position: center;
  background-size: contain;
  color: transparent;
}

@media screen and (max-width: 640px) {
  .wp-pagenavi .previouspostslink {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 11px;
  }
}
.wp-pagenavi .previouspostslink:hover {
  background-image: url(img/common/page-prev-white.png);
  color: transparent;
}

.wp-pagenavi .current {
  color: #202020;
  font-weight: bold;
  margin: 0 10px;
  line-height: 55px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
}

.wp-pagenavi a {
  color: #9ba0a6;
  font-weight: bold;
  margin: 0 10px;
  line-height: 55px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
}

@media screen and (max-width: 640px) {
  .wp-pagenavi a {
    margin: 0 5px;
    line-height: 40px;
  }
}
.wp-pagenavi a:hover {
  color: #202020;
}

.wp-pagenavi .no-item {
  line-height: 1;
  margin: 0 10px;
  width: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  color: #9a9fa5;
  position: relative;
  font-weight: bold;
  line-height: 55px;
}

@media screen and (max-width: 640px) {
  .wp-pagenavi .no-item {
    margin: 0 5px;
  }
}
.wp-pagenavi .nextpostslink {
  margin-left: 25px;
  height: 55px;
  width: 55px;
  background-image: url(img/common/page-next-black.png);
  background-position: center;
  background-size: contain;
  color: transparent;
}

@media screen and (max-width: 640px) {
  .wp-pagenavi .nextpostslink {
    margin-left: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 11px;
  }
}
.wp-pagenavi .nextpostslink:hover {
  background-image: url(img/common/page-next-white.png);
  color: transparent;
}


.is-first-visit .eventfadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
.eventfadeUp {
  opacity: 1; 
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top_event .wp-pagenavi{
  margin-top: 50px;
}

/* 260703 */
.news_excerpt a{
  color: #2B4196;
  text-decoration: underline;
}

.news_excerpt{
  margin-top: 120px;
  border-bottom: 1px solid #B1B1B1;
  padding-bottom: 120px;
}

/*# sourceMappingURL=style.css.map */