@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -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: 1.6rem;
  color: #1F1F1F;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  letter-spacing: 0.05em;
  width: 100%;
}

a {
  color: #202020;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -ms-transition: .3s;
  transform: rotate(0.05deg);
}

a:hover {
  color: #1F1F1F;
  text-decoration: none;
  opacity: 0.65;
}

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

li {
  margin: 0;
  list-style: none;
  transform: rotate(0.05deg);
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
dd,
dt,
dl {
  margin: 0;
  transform: rotate(0.05deg);
}

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: "M PLUS 1p", sans-serif;
  font-size: 100%;
  line-height: 1.7;
  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;
  transform: rotate(0.05deg);
}

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;
  outline-offset: -2px;
}

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

p,
a,
li {
  transform: rotate(0.05deg);
}

/* 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;
}

.block {
  display: block;
}

/*margin*/
.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-150 {
  margin-top: 150px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

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

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-150 {
  margin-bottom: 150px;
}

.g-0 {
  gap: 0px;
}

.g-10 {
  gap: 10px;
}

.g-20 {
  gap: 20px;
}

.g-30 {
  gap: 30px;
}

.g-40 {
  gap: 40px;
}

.g-50 {
  gap: 50px;
}

.g-60 {
  gap: 60px;
}

.g-70 {
  gap: 70px;
}

.g-80 {
  gap: 80px;
}

.g-90 {
  gap: 90px;
}

.g-100 {
  gap: 100px;
}

/* 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] {
  font-size: 1.6rem;
  background: #F2F5F7;
  border: 1px solid #C8D0DB;
  padding: 17px;
  width: 100%;
  border-radius: 5px;
}

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

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 {
  appearance: none;
  font-size: 1.6rem;
  border: 1px solid #C8D0DB;
  padding: 17px;
  border-radius: 5px;
  width: 130px;
  background-image: url(./img/contact/triangle.png);
  background-repeat: no-repeat;
  background-position: right 17px top 27px;
  background-size: 10px 6px;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #F2F5F7;
  border: 1px solid #C8D0DB;
  padding: 17px;
  width: 100%;
  border-radius: 5px;
  resize: vertical;
  width: 100%;
  height: 280px;
}

textarea:focus {
  outline: none;
  border-color: #38464F;
}

input[type=checkbox],
input[type=radio] {
  appearance: none;
  border: 1px solid #C8D0DB;
  margin-right: 10px;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

input[type=checkbox]:not([name=privacy]),
input[type=radio] {
  position: absolute;
  top: calc(50% - 13px);
  left: 17px;
}

.privacy input[type=checkbox] {
  position: relative;
  top: inherit;
  left: inherit;
}

input[type=checkbox] {
  border-radius: 5px;
  text-align: center;
}

input[type=checkbox]::before {
  display: block;
  font-family: "Font Awesome 5 Free";
  content: '\f00c';
  font-size: 2rem;
  line-height: 26px;
  font-weight: 900;
  color: #37464F;
  transform: scale(0);
  transform-origin: center;
}

input[type=checkbox]:checked::before {
  transform: scale(1);
}

input[type=radio] {
  background-color: #F2F5F7;
  border-radius: 100%;
}

input[type=radio]::before {
  /* ラジオボタンの内側の● */
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #37464F;
  transform: translate(5px, 5px) scale(0);
  transform-origin: center;
}

input[type=radio]:checked::before {
  transform: translate(5px, 5px) scale(1);
}

textarea::placeholder,
input::placeholder {
  font-size: 1.6rem;
  color: #AAAAAA;
}

/* wordpress wp-pagenavi */
.page-number {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.page-number a:not(.nextpostslink, .previouspostslink),
.page-number span:not(.list_link) {
  font-size: 2rem;
  font-weight: 500;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #F0F2F4;
  background-color: #F0F2F4;
  color: #37464F;
  margin: 5px;
  width: 50px;
  height: 50px;
  line-height: 49px;
  display: block;
  text-decoration: none;
  padding: 0;
}

.page-number span.no-item {
  background-color: transparent;
  border: transparent;
  line-height: 43px;
}

.page-number span.current {
  border: 1px solid #37464F;
  color: #fff;
  background: #37464F;
  font-weight: normal;
}

.page-number .wp-pagenavi {
  position: relative;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .page-number .wp-pagenavi {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.page-number .wp-pagenavi .list_link {
  width: 135px;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .page-number .wp-pagenavi .list_link {
    margin: 5px auto 0;
  }
}

.page-number .wp-pagenavi .previouspostslink,
.page-number .wp-pagenavi .nextpostslink {
  position: absolute;
}

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

  .page-number .wp-pagenavi .previouspostslink,
  .page-number .wp-pagenavi .nextpostslink {
    position: relative;
  }
}

.page-number .wp-pagenavi .previouspostslink {
  left: 0;
}

@media screen and (max-width: 768px) {
  .page-number .wp-pagenavi .previouspostslink {
    width: 100%;
  }
}

.page-number .wp-pagenavi .nextpostslink {
  right: 0;
}

@media screen and (max-width: 768px) {
  .page-number .wp-pagenavi .nextpostslink {
    width: 100%;
  }
}

/* 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 {
  font-size: 1.2rem;
  padding: 20px 0 35px;
  margin-left: 0;
  z-index: 2;
}

.breadcrumbs a {
  color: #1F1F1F;
}

.breadcrumbs a:hover {
  opacity: .6;
}

.breadcrumbs ul,
.breadcrumbs ol {
  list-style: none;
  text-align: right;
}

.breadcrumbs li {
  display: inline;
  color: #999999;
}

.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
  color: #1F1F1F;
}

.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 */
/* 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: #000;
  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: .2em 2em;
}

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

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

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

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

layout/header.scss

***************************/
header {
  background-color: #fff;
  color: #202020;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 0 20px 15px 30px;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header_inner .header_logo {
  max-width: 386px;
  width: 25%;
}

.header_inner .header_contents {
  position: relative;
  padding-top: 20px;
}

.header_inner .header_contents .new-header_sub {
  padding-right: 455px;
}

@media screen and (max-width:1370px) {
  .header_inner .header_contents .new-header_sub {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header_inner .header_contents .sub_nav {
    order: 3;
  }
}

.header_inner .header_contents .sub_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.866vw;
  gap: 20px;
  white-space: nowrap;
}

@media screen and (max-width: 1370px) {
  .header_inner .header_contents .sub_nav {
    gap: 15px;
  }
}

.header_inner .header_contents .sns-banner {
  margin-right: 475px;
  height: 40px;
}

.header_inner .header_contents .sns-banner.new-sns-banner {
  margin-right: 0;
}

@media screen and (max-width: 1370px) {
  .header_inner .header_contents .sns-banner {
    margin-right: 410px;
  }
}

.header_inner .header_contents .translation .language-switcher {
  padding: 5px 10px;
  font-size: 1.4rem;
  width: 75px;
  background-position: right 4px center;
}

@media screen and (max-width: 1200px) {
  .header_inner .header_contents .translation .language-switcher {
    margin-top: 20px;
  }
}

.header_inner .header_contents .header_form-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  font-size: 1.3rem;
  position: absolute;
  top: 0;
  right: 10px;
}

@media screen and (max-width: 1370px) {
  .header_inner .header_contents .header_form-link {
    font-size: 1.1rem;
  }
}

.header_inner .header_contents .header_form-link li {
  text-align: center;
  height: 100%;
  width: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: linear-gradient(90deg, #ec5a73, #fe795c);
}

@media screen and (max-width: 1370px) {
  .header_inner .header_contents .header_form-link li {
    width: 128px;
  }
}

.header_inner .header_contents .header_form-link li a {
  width: 100%;
  color: #fff;
  line-height: 1.2;
}

.header_inner .header_contents .header_form-link li a p {
  margin-top: 5px;
}

.header_inner .header_contents .header_form-link li:first-child {
  border-bottom-left-radius: 16px;
  background-image: linear-gradient(90deg, #744ccf, #a443d8);
}

.header_inner .header_contents .header_form-link li:last-child {
  border-bottom-right-radius: 16px;
  background-image: linear-gradient(90deg, #00b2c5, #00c68a);
}

.header_inner .header_contents .header_form-link li .radius-left,
.header_inner .header_contents .header_form-link li .radius-right {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
}

.header_inner .header_contents .header_form-link li .radius-left:after,
.header_inner .header_contents .header_form-link li .radius-right:after {
  position: absolute;
  content: '';
  display: block;
  width: 200%;
  height: 200%;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
}

.header_inner .header_contents .header_form-link li .radius-left {
  transform: translateX(-100%);
  top: 0px;
  left: 0px;
}

.header_inner .header_contents .header_form-link li .radius-left:after {
  top: 0px;
  left: 0px;
  box-shadow: 16px -16px 0 0 #7B4BD0;
  transform: translate(-50%, 0);
}

.header_inner .header_contents .header_form-link li .radius-right {
  transform: translateX(100%);
  top: 0px;
  right: 0px;
}

.header_inner .header_contents .header_form-link li .radius-right:after {
  top: 0px;
  right: 0px;
  box-shadow: -16px -16px 0 0 #00C68B;
  transform: translate(50%, 0);
}

.header_inner .header_contents .header_nav {
  /* margin-top: 20px; */
  margin-top: 0;
}

.header_contents.active .header_nav {
  margin-top: 20px;
}

.header_inner .header_contents .header_nav .gnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93vw;
  font-weight: bold;
  gap: 20px;
  white-space: nowrap;
}

@media screen and (max-width: 1370px) {
  .header_inner .header_contents .header_nav .gnav {
    gap: 10px;
  }
}

.header_inner .header_contents .header_nav .gnav li {
  position: relative;
}

.header_inner .header_contents .header_nav .gnav li.under_link .fa-chevron-down {
  font-size: 0.86vw;
  transition: all 0.3s;
}

.header_inner .header_contents .header_nav .gnav li.under_link:hover .fa-chevron-down {
  opacity: 0.25;
}

.header_inner .header_contents .header_nav .gnav li.under_link:hover .under_box {
  display: block;
}

.header_inner .header_contents .header_nav .gnav li .under_box {
  display: none;
  position: absolute;
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  padding: 22px;
  background-color: #fff;
  width: 220px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px -5px #777777;
}

.header_inner .header_contents .header_nav .gnav li .under_box:before {
  content: url(./img/common/fukidashi.png);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  top: -17px;
}

.header_inner .header_contents .header_nav .gnav li .under_box>li {
  padding-bottom: 15px;
  border-bottom: 1px solid #C8D0DB;
}

.header_inner .header_contents .header_nav .gnav li .under_box>li:last-child {
  padding-bottom: 10px;
  margin-top: 15px;
}

.header_inner .header_contents .header_nav .gnav li .under_box>li .list_link {
  justify-content: space-between;
  margin-top: 0;
}

.header_inner .header_contents .header_nav .gnav li .under_box>li .list_link img {
  width: 38px;
  margin-right: 5px;
}

.header_inner .header_contents .header_nav .gnav li .under_box>li:last-child i {
  width: 24px;
  height: 24px;
  line-height: 24px;
}

.header_inner .header_contents .header_nav .header_tel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.header_inner .header_contents .header_nav .header_tel a {
  white-space: nowrap;
  pointer-events: none;
  font-size: 2.8rem;
  font-weight: 600;
}

@media screen and (max-width: 1370px) {
  .header_inner .header_contents .header_nav .header_tel a {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 500px) {
  .header_inner .header_contents .header_nav .header_tel a {
    pointer-events: all;
  }
}

.header_inner .header_contents .header_nav .header_tel span {
  text-align: center;
  font-size: 1rem;
}

@media screen and (max-width: 1200px) {
  header {
    padding: 0;
    box-shadow: 0px 0px 8px -5px #777;
  }

  .header_inner .header_logo {
    width: 193px;
    padding: 10px;
  }

  .header_inner .header_contents {
    transition: all 0.5s;
    padding: 0 50px;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    left: 200%;
    top: 74px;
    display: flex;
    justify-content: start;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .header_inner .header_contents.active {
    left: 0;
  }

  .header_inner .header_contents .header_sub {
    display: block;
  }

  .header_inner .header_contents .new-header_sub {
    padding-right: 0;
  }

  .header_inner .header_contents .header_sub .sub_nav {
    display: none;
  }

  .header_inner .header_contents .header_sub .sns-banner {
    margin: 20px 0 0 0;
    justify-content: start;
  }

  .header_inner .header_contents .header_sub .header_form-link {
    position: fixed;
    width: 100%;
    top: auto;
    left: 0;
    bottom: 0;
    z-index: 999;
  }

  .header_inner .header_contents .header_sub .header_form-link li {
    width: calc(100% / 3);
  }

  .header_inner .header_contents .header_sub .header_form-link li:first-child {
    border-radius: 0;
  }

  .header_inner .header_contents .header_sub .header_form-link li:last-child {
    border-radius: 0;
  }

  .header_inner .header_contents .header_sub .header_form-link li .radius-left,
  .header_inner .header_contents .header_sub .header_form-link li .radius-right {
    display: none;
  }

  .header_inner .header_contents .header_nav {
    display: block;
  }

  .header_inner .header_contents .header_nav .gnav {
    display: block;
    font-size: 1.6rem;
  }

  .header_inner .header_contents .header_nav .gnav>li {
    margin-bottom: 15px;
  }

  .header_inner .header_contents .header_nav .gnav>li.under_link:hover .under_box {
    display: none;
  }

  .header_inner .header_contents .header_nav .gnav>li.under_link i {
    display: none;
  }

  .header_inner .header_contents .header_nav .gnav>li.under_link li {
    font-size: 1.4rem;
    margin-top: 10px;
  }

  .header_inner .header_contents .header_nav .header_tel {
    justify-content: start;
    flex-wrap: wrap;
    gap: 0;
  }

  .header_inner .header_contents .header_nav .header_tel img {
    width: 70px;
    margin-right: 5px;
  }

  .header_inner .header_btn {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }

  .header_inner .header_btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
  }

  .header_inner .header_btn span:nth-child(1),
  .header_inner .header_btn span:nth-child(2) {
    border-radius: 5px;
    background: #38464F;
    height: 3px;
  }

  .header_inner .header_btn span:nth-child(1) {
    top: 14px;
    width: 85%;
  }

  .header_inner .header_btn span:nth-child(2) {
    top: 24px;
    width: 73%;
  }

  .header_inner .header_btn:after {
    content: 'メニュー';
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    top: 31px;
    left: 0;
    transition: all .4s;
  }

  .header_inner .header_btn.active span:nth-child(1) {
    top: 14px;
    width: 85%;
    transform: translateY(6px) rotate(-30deg);
  }

  .header_inner .header_btn.active span:nth-child(2) {
    top: 26px;
    width: 85%;
    transform: translateY(-6px) rotate(30deg);
  }

  .header_inner .header_btn.active:after {
    content: 'とじる';
    transform: translateX(5px);
  }
}

@media screen and (max-width: 500px) {
  .header_inner .header_contents .header_sub .sns-banner {
    justify-content: center;
  }

  .header_inner .header_contents .header_sub .sns-banner p {
    width: 100%;
    padding: 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0;
    font-size: 1.4rem;
  }

  .header_inner .header_contents .header_sub .sns-banner ul {
    width: 100%;
    gap: 25px;
    padding: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }

  .header_inner .header_contents .header_nav .header_tel {
    justify-content: center;
  }
}

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

layout/footer.scss

***************************/
.f-banner {
  background: url(./img/common/img_footer.jpg) no-repeat;
  background-size: cover;
  margin-top: 60px;
  padding: 100px 0 85px;
  color: #fff;
}

.f-banner.f-banner__home {
  margin-top: 0;
}

@media screen and (max-width: 1225px) {
  .f-banner {
    padding: 70px 0 55px;
    text-align: center;
  }
}

.f-banner .f-copy {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1225px) {
  .f-banner .f-copy {
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 768px) {
  .f-banner .f-copy {
    font-size: 2rem;
  }
}

.f-banner .f-contact {
  margin-top: 10px;
}

@media screen and (max-width: 1225px) {
  .f-banner .f-contact {
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .f-banner .f-contact ul {
    display: block;
  }
}

.f-banner .f-contact li {
  text-align: center;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 15px;
  padding: 30px 0;
}

@media screen and (max-width: 1370px) {
  .f-banner .f-contact li {
    width: 240px;
  }
}

@media screen and (max-width: 768px) {
  .f-banner .f-contact li {
    margin-bottom: 15px;
    padding: 20px 0;
  }
}

.f-banner .f-contact li a {
  width: 100%;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .f-banner .f-contact .tel {
    display: block;
  }
}

.f-banner .f-contact .tel a {
  font-size: 3.2rem;
  font-weight: 600;
  pointer-events: none;
  color: #fff;
}

@media screen and (max-width: 500px) {
  .f-banner .f-contact .tel a {
    pointer-events: all;
  }
}

.f-banner .f-contact .tel p:first-of-type {
  font-weight: bold;
}

footer {
  width: 100%;
  background: #fff;
}

.footer_contents {
  padding-top: 80px;
  gap: 25px;
}

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

@media screen and (max-width: 768px) {
  .footer_contents .f-info {
    gap: 35px;
  }
}

.footer_contents .f-info ul li:last-child {
  margin-top: 35px;
}

.footer_contents .f-info ul li p {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.footer_contents .f-info ul li a {
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  position: relative;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.footer_contents .f-nav {
  font-weight: bold;
  font-size: 1.7rem;
}

@media screen and (max-width: 768px) {
  .footer_contents .f-nav {
    font-size: 1.4rem;
  }
}

.footer_contents .f-nav li:not(:first-child) {
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .footer_contents .f-nav li:not(:first-child) {
    margin-top: 15px;
    font-size: 1.4rem;
  }
}

.footer_contents .f-nav li:not(:first-child).under {
  font-size: 1.6rem;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .footer_contents .f-nav li:not(:first-child).under {
    font-size: 1.3rem;
    margin-top: 5px;
  }
}

.f-btn {
  font-weight: bold;
  padding-bottom: 80px;
  margin-top: 50px;
  gap: 15px;
}

.f-btn .line {
  background-color: #00B34F;
  color: #fff;
  width: 280px;
  line-height: 56px;
  display: block;
  text-align: center;
  border-radius: 30px;
  font-size: 1.4rem;
  position: relative;
}

.f-btn .line.is--en {
  width: 335px;
}

.f-btn .line:before {
  content: '';
  background: url(./img/common/icon_line_wh.png) no-repeat;
  width: 21px;
  height: 20px;
  background-size: contain;
  position: absolute;
  left: 30px;
  top: calc(50% - 10px);
}

.f-btn .sns-banner {
  height: 56px;
  font-size: 1.3rem;
}

.f-btn .sns-banner p {
  width: 120px;
}

.f-btn .sns-banner ul {
  width: 220px;
  gap: 20px;
}

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

  .f-btn .line,
  .f-btn .line.is--en,
  .f-btn .sns-banner {
    width: 100%;
  }

  .f-btn .sns-banner p {
    width: 100%;
    font-size: 1.4rem;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 0;
  }

  .f-btn .sns-banner ul {
    width: 100%;
    gap: 30px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}

.f-group,
.f-bottom {
  border-top: 1px solid #DFE4EA;
  padding: 25px 0;
}

@media screen and (max-width: 1100px) {
  .f-group ul {
    justify-content: start;
    gap: 50px;
  }
}

@media screen and (max-width: 500px) {
  .f-group ul {
    gap: 30px;
  }
}

.f-group ul a {
  display: block;
  width: fit-content;
  font-size: 1.4rem;
}

@media screen and (max-width: 500px) {
  .f-group ul a {
    font-size: 1.2rem;
  }
}

.f-group ul span {
  line-height: 1.2;
  display: block;
  margin-top: 3px;
}

@media screen and (max-width: 500px) {
  .f-group ul span {
    font-size: 1rem;
  }
}

.f-bottom a {
  font-size: 1.2rem;
}

.f-bottom p {
  font-size: 1rem;
}

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

user common css

////////////////////////*/
main {
  margin-top: 145px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  main {
    margin-top: 74.5px;
  }
}

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

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

.col02 {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.sp {
  display: none;
}

.sp_1200 {
  display: none;
}

.sp_550 {
  display: none;
}

.tab {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

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

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

  .pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  main {
    margin-top: 70px;
  }

  .tab {
    display: block;
  }

  .pc_768 {
    display: none;
  }
}

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

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

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

  .sp_550 {
    display: block;
  }
}

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

fonts

////////////////////////*/
.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.bold {
  font-weight: bold;
}

.fz-20 {
  font-size: 2rem;
}

.fz-18 {
  font-size: 1.8rem;
}

.fz-16 {
  font-size: 1.6rem;
}

.fz-13 {
  font-size: 1.3rem;
}

.ls_5 {
  letter-spacing: 0.05em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_1 {
  line-height: 1;
}

.col-white {
  color: #fff;
}

.underline {
  text-decoration: underline;
}

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

object/project/effects.scss

***************************/
/* その場で */
.fadeInTrigger {
  opacity: 0;
  transition-property: opacity;
  transition-duration: .4s;
  transition-timing-function: ease-in-out;
}

.fadeInTrigger.is-show {
  opacity: 1;
}

/* 下から */
.fadeUpTrigger {
  opacity: 0;
  transform: translateY(20px);
  transition-property: transform, opacity;
  transition-duration: .4s;
  transition-timing-function: ease-in-out;
}

.fadeUpTrigger.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ぎゅーん */
.scaleUpTrigger {
  opacity: 0;
  transform: scale(0.9);
  transition: transform .3s ease-in-out, opacity .3s ease-in-out;
}

.scaleUpTrigger.is-show {
  opacity: 1;
  transform: scale(1);
}

.js--border {
  background: linear-gradient(90deg, #000, #000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s;
}

.js--border.hov {
  background-size: 100% 1px;
}

.opening-wrap {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 999;
  top: 0;
  left: 0;
}

.opening-wrap.is--hidden {
  animation: fadeOut 1.5s both;
}

.opening-wrap .opening-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.opening-wrap .opening-text.is--hidden {
  animation: fadeOut 1.5s both;
}

.opening-wrap .opening-text.is--second {
  display: none;
}

.opening-wrap .opening-text.is--second div:before {
  display: none;
}

.opening-wrap .opening-text div {
  position: relative;
  font-size: 5rem;
}

.opening-wrap .opening-text div:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
  top: 0;
  animation: fadeInLeft 3s ease-in-out both;
}

.opening-wrap .opening-text .break {
  display: none;
}

.opening-wrap .opening-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 3s ease-in both;
  animation-delay: 4.5s;
}

.opening-wrap .opening-logo .logo {
  width: 30%;
}

@media screen and (max-width: 600px) {
  .opening-wrap .opening-text div {
    font-size: 6vw;
  }

  .opening-wrap .opening-text .break {
    display: block;
  }
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

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

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

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

common

////////////////////////*/
.sns-banner {
  font-size: 1rem;
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: bold;
}

.sns-banner p,
.sns-banner ul {
  background-color: #F0F2F4;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sns-banner p {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-right: 1px solid #DFE4EA;
  width: 80px;
  letter-spacing: 0;
}

.sns-banner ul {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  width: 220px;
  gap: 20px;
}

.list_link {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 35px;
}

.list_link i {
  border-radius: 100%;
  width: 36px;
  height: 36px;
  display: block;
  text-align: center;
  font-size: 1rem;
  line-height: 36px;
  background-color: #F0F2F4;
}

.list_link i.fa-arrow-right {
  margin-left: 10px;
}

.list_link i.fa-arrow-left {
  margin-right: 10px;
}

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

.col02 .main {
  max-width: 71.4%;
  width: 1000px;
}

@media screen and (max-width: 1024px) {
  .col02 .main {
    width: 100%;
    max-width: 100%;
  }
}

.sidebar {
  width: 21.4%;
  font-size: 1.4rem;
  margin-top: 100px;
}

@media screen and (max-width: 1024px) {
  .sidebar {
    width: 100%;
    margin-top: 50px;
    text-align: center;
  }
}

.sidebar p {
  font-weight: bold;
  margin-bottom: 20px;
}

.sidebar .relation ul {
  margin-bottom: 0;
}

.sidebar ul {
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #DFE4EA;
  margin-bottom: 50px;
}

.sidebar ul li {
  padding: 15px 20px;
  border-bottom: 1px solid #DFE4EA;
}

.sidebar ul li:last-child {
  border-bottom: none;
}

.sidebar ul li a:before {
  content: url(./img/common/btn_arrow_right.png);
  margin-right: 10px;
}

.sidebar .list_link {
  margin-top: 30px;
  justify-content: start;
}

@media screen and (max-width: 1024px) {
  .sidebar .list_link {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .sidebar .index {
    text-align: left;
    border-radius: 15px;
    border: 1px solid #DFE4EA;
    overflow: hidden;
  }

  .sidebar .index p.tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F0F2F4;
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid transparent;
    transition: all 0.4s;
  }

  .sidebar .index p.tab i {
    transition: all 0.4s;
  }

  .sidebar .index p.tab.is-open {
    border-bottom: 1px solid #DFE4EA;
  }

  .sidebar .index p.tab.is-open i {
    transform: rotateZ(-180deg);
  }

  .sidebar .index ul {
    border: none;
    border-radius: 0;
    display: none;
    margin: 0;
  }

  .sidebar .index ul .all {
    background-color: #fff;
  }
}

.flow_list {
  margin-left: 40px;
}

@media screen and (max-width: 500px) {
  .flow_list {
    margin-left: 20px;
  }
}

.flow_list .flow_item {
  border-left: 4px solid #E0E3E8;
  padding-left: 70px;
  padding-bottom: 70px;
}

@media screen and (max-width: 500px) {
  .flow_list .flow_item {
    padding-left: 35px;
  }
}

.flow_list .flow_item:last-child {
  border-left: 4px solid transparent;
  padding-bottom: 0;
}

.flow_list .flow_item h4 {
  font-size: 2.2rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .flow_list .flow_item h4 {
    font-size: 2rem;
  }
}

.flow_list .flow_item h4:after {
  display: block;
  position: absolute;
  top: calc(50% - 40px);
  left: -113px;
  content: '';
  width: 87px;
  height: 80px;
}

@media screen and (max-width: 500px) {
  .flow_list .flow_item h4:after {
    top: calc(50% - 26px);
    left: -66px;
    width: 56px;
    height: 52px;
  }
}

.flow_list .flow_item>p {
  padding: 20px 0 25px;
}

.bg_gray {
  background-color: #F0F2F4;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .bg_gray {
    padding: 20px 15px;
  }
}

.bg_gray h5 {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.bg_gray+.bg_gray {
  margin-top: 10px;
}

.outer_link {
  line-height: 1.2;
}

.outer_link:after {
  position: absolute;
  top: 3px;
  right: -18px;
  content: '';
  background: url(./img/common/outer-link.png) no-repeat;
  background-size: contain;
  width: 11px;
  height: 10px;
}

.sub_main-visual {
  background-color: #F0F2F4;
  padding-bottom: 50px;
  border-top: 1px solid #DFE4EA;
  border-bottom: 1px solid #DFE4EA;
}

@media screen and (max-width: 768px) {
  .sub_main-visual .sub_main-inner {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}

.sub_main-visual .sub_main-inner .sub_main-hdg {
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .sub_main-visual .sub_main-inner .sub_main-hdg {
    gap: 10px;
  }
}

.sub_main-visual .sub_main-inner .sub_main-hdg span {
  font-size: 4.8rem;
  line-height: 1;
  display: block;
}

@media screen and (max-width: 768px) {
  .sub_main-visual .sub_main-inner .sub_main-hdg span {
    font-size: 3.6rem;
  }
}

.sub_main-visual .sub_main-inner .sub_main-hdg span .sub_info {
  font-size: 1.4rem;
  font-weight: normal;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .sub_main-visual .sub_main-inner .sub_main-hdg img {
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  .sub_main-visual .sub_main-inner>img {
    margin-top: 20px;
  }
}

.hdg01 {
  margin-top: 85px;
  margin-bottom: 40px;
  padding-bottom: 15px;
  padding-left: 5px;
  font-size: 3.2rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .hdg01 {
    font-size: 2.8rem;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 500px) {
  .hdg01 {
    margin-top: 55px;
  }
}

.hdg01:before,
.hdg01:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
}

.hdg01:before {
  background-color: #DFE4EA;
  width: 100%;
  height: 1px;
}

.hdg01:after {
  background-color: #565556;
  width: 20px;
  height: 1px;
}

.hdg02 {
  font-size: 2rem;
  background-color: #37464F;
  color: #fff;
  padding: 0 15px;
  line-height: 4.8rem;
  border-radius: 5px;
  font-weight: 500;
  margin-bottom: 30px;
}

.btn01 {
  display: block;
  width: 300px;
  border-radius: 30px;
  border: 1px solid #DFE4EA;
  font-size: 1.4rem;
  line-height: 5.5rem;
  padding: 0 22px;
  background-color: #fff;
}

.btn01.w-400 {
  width: 400px;
}

.btn01:before {
  content: url(./img/common/btn_arrow_right.png);
  margin-right: 10px;
}

@media screen and (max-width: 500px) {
  .btn01 {
    width: 100%;
  }

  .btn01.w-400 {
    width: 100%;
  }
}

.btn02 {
  display: block;
  width: 360px;
  border-radius: 30px;
  border: 1px solid #BCC2CF;
  background-color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 6rem;
  padding: 0 40px;
  position: relative;
  /* 251203 add */
  width: min(100%, 360px);
}

.btn02:after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  background: #F0F3F4 url(./img/common/arrow_right.png) no-repeat center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  transition: all 0.3s;
}

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

layout/news.scss

***************************/
.news_list li {
  border-bottom: 1px solid #DFE4EA;
  padding: 25px 0;
}

.news_list li a {
  display: flex;
  align-items: center;
  line-height: 2rem;
}

@media screen and (max-width: 768px) {
  .news_list li a {
    display: block;
  }
}

.news_list li a span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .news_list li a span {
    margin-bottom: 10px;
  }
}

.news_list li a span.ymd {
  color: #939DA6;
  font-size: 1.4rem;
  margin-right: 15px;
  font-family: "Montserrat", sans-serif;
  width: 84px;
  font-weight: 500;
}

.news_list li a span.category {
  color: #929DA5;
  background-color: #F0F2F4;
  font-size: 1.1rem;
  border-radius: 15px;
  padding: 0 20px;
  margin-right: 20px;
  font-weight: 600;
}

.news_list li a span.category.important {
  color: #fff;
  background-color: #FE4275;
}

.news_list li a span.new {
  display: inline;
  color: #fff;
  background-color: #FB4E5B;
  font-size: 1rem;
  border-radius: 15px;
  padding: 0 5px;
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  .news_list li a span.new {
    margin-bottom: 0px;
  }
}

.sidebar .index .all {
  background-color: #EFF3F4;
}

.blog-main .news_list a .blog_thum {
  margin: 0 30px 0 0;
  border-radius: 15px;
  overflow: hidden;
}

.blog-main .news_list a .blog_thum img {
  width: 100%;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .blog-main .news_list a .blog_thum {
    margin: 0 0 15px 0;
    width: 100%;
  }
}

.blog-main .news_list a:hover img {
  scale: 1.1;
}

.news-detail01 span {
  display: inline-block;
}

.news-detail01 span.ymd {
  color: #939DA6;
  font-size: 1.4rem;
  margin-right: 15px;
  font-family: "Montserrat", sans-serif;
  width: 84px;
  font-weight: 500;
}

.news-detail01 span.category {
  color: #929DA5;
  background-color: #F0F2F4;
  font-size: 1.1rem;
  border-radius: 15px;
  padding: 0 20px;
  margin-right: 20px;
  font-weight: 600;
}

.news-detail01 span.category.important {
  color: #fff;
  background-color: #FE4275;
}

.news-detail01 .txt {
  padding-bottom: 75px;
  border-bottom: 1px solid #DFE4EA;
  line-height: 2;
}

.news-detail01 .txt h4 {
  font-size: 2.2rem;
}

.news-detail01 .txt h5 {
  font-size: 2rem;
}

.news-detail01 .txt h6 {
  font-size: 1.8rem;
}

.news-detail01 .txt ul li {
  list-style-type: disc;
  margin-left: 20px;
}

.news-detail01 .txt a {
  text-decoration: underline;
  display: block;
}

.news-detail01 .list_link {
  justify-content: start;
}

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

layout/admission.scss

***************************/
.admission02>p {
  line-height: 2;
}

.admission02 .btn01:last-child:before {
  content: url(./img/common/btn_arrow_bottom.png);
}

.admission03 .hdg01 {
  margin-bottom: 60px;
}

.admission03 .flow_list .flow_item:first-child h4:after {
  background: url(./img/admission/step01.png) no-repeat;
  background-size: contain;
  top: 0;
}

.admission03 .flow_list .flow_item:nth-child(2) h4:after {
  background: url(./img/admission/step02.png) no-repeat;
  background-size: contain;
}

.admission03 .flow_list .flow_item:nth-child(3) h4:after {
  background: url(./img/admission/step03.png) no-repeat;
  background-size: contain;
}

.admission03 .flow_list .flow_item:nth-child(4) h4:after {
  background: url(./img/admission/step04.png) no-repeat;
  background-size: contain;
}

.admission03 .flow_list .flow_item:nth-child(5) h4:after {
  background: url(./img/admission/step05.png) no-repeat;
  background-size: contain;
}

.bg_gray {
  border-left: 4px solid #C8D0DB;
}

.bg_gray .btn02:nth-child(4) {
  color: #fff;
  background-color: #00B34F;
}

.bg_gray .btn02:nth-child(4):after {
  background: #009F48 url(./img/common/icon_line_wh.png) no-repeat center;
}

@media screen and (max-width: 768px) {
  .bg_gray .tel {
    display: block;
    text-align: center;
  }
}

.bg_gray .tel a {
  font-size: 3.5rem;
  font-weight: 600;
  pointer-events: none;
}

@media screen and (max-width: 500px) {
  .bg_gray .tel a {
    pointer-events: all;
  }
}

.bg_gray .tel p {
  font-size: 1.3rem;
}

.bg_gray .tel p:first-of-type {
  color: #fff;
  padding: 0 7px;
  line-height: 2.5rem;
  background-color: #37464F;
  border-radius: 15px;
}

.bg_gray .tel p:last-of-type {
  color: #777;
}

.table {
  border-spacing: 0;
  border: 2px solid #C8D0DB;
  font-size: 1.4rem;
}

.table tr {
  border-bottom: 1px solid #C8D0DB;
}

.table tr:last-child {
  border-bottom: none;
}

.table tr th {
  border-right: 1px solid #C8D0DB;
  background-color: #F2F5F7;
  width: 25%;
}

.table tr td {
  padding: 12px 20px;
}

@media screen and (max-width: 500px) {
  .table tr td {
    padding: 10px 5px;
  }
}

.table tr td ul li {
  list-style: disc;
  margin-left: 20px;
}

.table tr td+td {
  border-left: 1px solid #C8D0DB;
}

.memo {
  margin-top: 20px;
  font-size: 1.3rem;
}

.memo li:not(:last-child) {
  margin-bottom: 5px;
}

.schoolexpenses-main .schoolexpenses01>p:nth-of-type(n+2) {
  margin-bottom: 25px;
}

.schoolexpenses-main .schoolexpenses01 .graph {
  margin-top: 35px;
  border: 1px solid #C8D0DB;
  padding: 40px 15px;
  text-align: center;
}

.schoolexpenses-main .schoolexpenses01 .graph h5 {
  border-radius: 5px;
  font-size: 1.8rem;
  background-color: #F0F2F4;
  padding: 20px 15px;
  width: 76.2%;
  margin: 0 auto 30px;
}

@media screen and (max-width: 768px) {
  .schoolexpenses-main .schoolexpenses01 .graph h5 {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .schoolexpenses-main .schoolexpenses01 .graph h5 br {
    display: none;
  }
}

.schoolexpenses-main .schoolexpenses01 .graph h5 span {
  display: block;
}

.schoolexpenses-main .schoolexpenses01 .table {
  text-align: center;
}

.schoolexpenses-main .schoolexpenses01 .table th {
  padding: 12px 0;
  width: 33.3%;
}

.schoolexpenses-main .schoolexpenses01 .table td .red {
  color: #FA4D5A;
  position: relative;
}

.schoolexpenses-main .schoolexpenses01 .table td .red:after {
  position: absolute;
  content: '';
  width: 120%;
  height: 8px;
  background-color: #FFCAD3;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: -1;
}

.schoolexpenses-main .bg_gray {
  border-left: 4px solid #C8D0DB;
}

.schoolexpenses-main .bg_gray .btn02:nth-child(4) {
  color: #fff;
  background-color: #00B34F;
}

.schoolexpenses-main .bg_gray .btn02:nth-child(4):after {
  background: #009F48 url(./img/common/icon_line_wh.png) no-repeat center;
}

.schoolexpenses-main .bg_gray .tel {
  margin-right: 40px;
}

@media screen and (max-width: 1215px) {
  .schoolexpenses-main .bg_gray .tel {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 500px) {
  .schoolexpenses-main .bg_gray .tel {
    margin: 0 auto 10px;
  }
}

.schoolexpenses-main .bg_gray .tel a {
  font-size: 2.8rem;
}

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

layout/faq.scss

***************************/
.faq01 .faq_box:not(:first-child) {
  margin-top: 20px;
}

.faq01 .faq_box .faq_q {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #37464F;
  padding: 10px 20px 10px 75px;
  overflow: hidden;
  position: relative;
}

.faq01 .faq_box .faq_q span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #29353D;
  margin-right: 15px;
}

.faq01 .faq_box .faq_a {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border: 1px solid #DFE4EA;
  border-top: none;
  padding: 28px 25px;
}

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

layout/contact.scss

***************************/
.contact-main p {
  line-height: 2;
}

.contact-main .mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0;
}

.contact-main .mw_wp_form_confirm .privacy {
  display: none;
}

.form {
  margin-top: 70px;
}

.form dl:not(:last-child) {
  margin-bottom: 30px;
}

.form dl dt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: bold;
  margin-bottom: 15px;
}

.form dl dt span {
  display: block;
  color: #fff;
  line-height: 25px;
  font-size: 1.3rem;
  border-radius: 15px;
  margin-right: 10px;
  padding: 0 8px;
}

.form dl dt span.req {
  background-color: #F97162;
}

.form dl dt span.opt {
  background-color: #969EAB;
}

.form dl dd {
  flex-wrap: wrap;
}

.form dl dd .size_m {
  width: 250px;
}

.form dl dd input[name=postal] {
  margin-left: 10px;
}

.form dl dd input[type=text]+input[type=text] {
  margin-top: 5px;
}

.form dl dd:has(.horizontal-item) {
  display: flex;
  gap: 5px;
}

.form dl dd:has(.horizontal-item) .horizontal-item {
  white-space: nowrap;
  font-size: 1.6rem;
  border: 1px solid #C8D0DB;
  padding: 17px 17px 17px 53px;
  border-radius: 5px;
  display: inline-block;
  width: calc(100% / 4 - 5px);
  position: relative;
}

@media screen and (max-width: 1235px) {
  .form dl dd:has(.horizontal-item) .horizontal-item {
    width: calc(100% / 2 - 5px);
  }
}

@media screen and (max-width: 500px) {
  .form dl dd:has(.horizontal-item) .horizontal-item {
    width: 100%;
  }
}

.form dl dd select.size_m {
  padding: 17px 30px;
}

@media screen and (max-width: 500px) {
  .form dl dd select:not(:last-child) {
    margin-bottom: 5px;
  }
}

.privacy {
  margin-top: 45px;
}

.privacy label {
  position: relative;
  margin-top: 10px;
  border: 1px solid #C8D0DB;
  border-radius: 5px;
  padding: 25px 0;
  display: flex;
  justify-content: center;
}

.form_button {
  font-weight: 500;
  width: 450px;
  background-color: #38464F;
  color: #fff;
  font-size: 2rem;
  line-height: 7.2rem;
  border-radius: 50px;
  margin: 65px auto 0;
  transition: all 0.3s;
}

@media screen and (max-width: 500px) {
  .form_button {
    width: 100%;
  }
}

.form_button:hover {
  cursor: pointer;
  opacity: 0.65;
}

.form_button:after {
  color: #fff;
  background: #28353D url(./img/contact/arrow_right_wh.png) no-repeat center;
  width: 72px;
  height: 72px;
}

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

layout/application.scss

***************************/
.application-main .mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0;
}

.application-main .mw_wp_form_confirm .privacy {
  display: none;
}

.form-inner_box {
  width: 100%;
  margin-bottom: 50px;
}

.form-inner_box__ttl {
  font-size: 1.9rem;
  font-weight: 600;
  color: #fff;
  background: #37464F;
  border-radius: 7px;
  padding: 10px 20px;
  margin-bottom: 30px;
}

.form dl dd .size_l {
  max-width: 360px;
  width: 100%;
}

.form-inner_box textarea {
  height: auto;
}

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

layout/about.scss

***************************/
.about-inner_box {
  margin-bottom: 60px;
}

.about-inner_box p {
  line-height: 2;
}

.about-inner_box .btn01 {
  position: relative;
  line-height: 1.6;
  padding: 15px 25px 15px 35px;
  border-radius: 100px;
}

.about-inner_box .btn01::before {
  position: absolute;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 20px;
  top: 0;
  height: 100%;
  margin-right: 0;
}

.about-inner_box__ttl {
  font-size: 1.9rem;
  font-weight: 600;
  color: #fff;
  background: #37464F;
  border-radius: 7px;
  padding: 10px 20px;
  margin-bottom: 30px;
}

.about-inner_box__img {
  margin: 30px 0;
}

.about-inner_box__text {
  border: 1px solid #c8d0db;
  padding: 20px 30px;
  margin: 30px 0;
}

.about-inner_box__text .bg-gray {
  display: inline-block;
  padding: 5px 10px;
  background: #F0F2F4;
  border-radius: 7px;
}

.num-list {
  counter-reset: 0;
}

.num-list li {
  position: relative;
  counter-increment: count;
  padding-left: 25px;
  line-height: 2;
}

.num-list li:not(:last-child) {
  margin-bottom: 10px;
}

.num-list li::before {
  position: absolute;
  content: counter(count);
  width: 15px;
  height: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  border: 1px solid #1f1f1f;
  border-radius: 100%;
  left: 0;
  top: 5px;
}

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

layout/curriculum.scss

***************************/
.curriculum-main .btn01 {
  line-height: 1.6;
  padding: 15px 22px;
}

.curriculum01 {
  width: 100%;
}

.curriculum_image_block {
  width: 100%;
  margin: 30px 0 50px;
  padding: 25px 30px;
  border: 1px solid #C8D0DB;
  text-align: center;
}

.curriculum_num_list {
  width: 100%;
  display: grid;
  gap: 20px 0;
  counter-reset: 0;
}

.curriculum_num_list li h4 {
  position: relative;
  font-size: 1.9rem;
  padding-left: 35px;
  margin-bottom: 10px;
}

.curriculum_num_list li h4:before {
  position: absolute;
  content: counter(count);
  width: 26px;
  height: 26px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-align: center;
  line-height: 26px;
  border-radius: 100%;
  background: #37464F;
  left: 0;
  top: calc(50% - 13px);
}

.curriculum_num_list_block {
  position: relative;
  counter-increment: count;
  background: #F0F2F4;
  border-left: 4px solid #C8D0DB;
  padding: 20px 30px;
  z-index: 1;
}

.curriculum_num_list_block:not(:first-child):after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: '\2b';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 2rem;
  line-height: 40px;
  color: #37464F;
  text-align: center;
  background: #C8D0DB;
  border-radius: 100%;
  left: calc(50% - 20px);
  top: -30px;
  z-index: 3;
}

/* .curriculum_num_list .schooling_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid #C8D0DB;
  background: #fff;
} */

.curriculum_num_list .schooling_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid #C8D0DB;
  background: #fff;
}

.curriculum_num_list .schooling_list li {
  display: grid;
  grid-template-rows: 45px 1fr;
  width: calc(100% - 1px);
}

.curriculum_num_list .schooling_list li:not(:last-child) {
  border-right: 1px solid #C8D0DB;
}

.curriculum_num_list .schooling_list li .ttl {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #C8D0DB;
  background: #F0F2F4;
}

.curriculum_num_list .schooling_list li .cont {
  font-size: 1.4rem;
  padding: 15px;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .curriculum_num_list .schooling_list {
    grid-template-columns: 1fr;
  }
}

.basic_container {
  display: grid;
  grid-template-columns: 63% 33%;
  gap: 20px 4%;
}

@media screen and (max-width: 600px) {
  .basic_container {
    grid-template-columns: 1fr;
  }
}

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

layout/_information.scss

***************************/
.information-main .btn02 {
  max-width: 360px;
  width: 100%;
}

.information-main .infor_box {
  width: 100%;
  border-top: 1px solid #c8d0db;
}

.information-main .infor_box div {
  display: grid;
  grid-template-columns: 160px 1fr;
  letter-spacing: 0.032em;
  line-height: 2;
  border-bottom: 1px solid #c8d0db;
}

.information-main .infor_box div dt {
  background: #F0F2F4;
  font-weight: 600;
}

.information-main .infor_box div dt,
.information-main .infor_box div dd {
  padding: 15px;
}

.greeting_basic_block {
  width: 100%;
  display: grid;
  grid-template-columns: 30% 67%;
  gap: 20px 3%;
}

.greeting_basic_block_img {
  width: 100%;
}

.greeting_basic_block_img img {
  border-radius: 15px;
}

.greeting_basic_block_text {
  line-height: 2;
  letter-spacing: 0.032em;
}

.greeting_basic_block_text h4 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.greeting_basic_block_text p {
  margin-bottom: 10px;
}

.greeting_basic_block_text p.name {
  margin-top: 25px;
  font-size: 2rem;
  text-align: right;
  margin-bottom: 0;
}

.greeting_basic_block_text p.name span {
  font-size: 1.4rem;
  margin-right: 15px;
}

@media screen and (max-width: 600px) {
  .greeting_basic_block {
    grid-template-columns: 100%;
  }

  .greeting_basic_block_img {
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .greeting_basic_block_text p.name span {
    display: block;
    width: 100%;
  }
}

.information02 {
  overflow: hidden;
}

.instructor_slide_wrap {
  width: 84%;
  margin-bottom: 30px;
}

.instructor_slide_inner {
  width: 100%;
  padding-top: 50px;
}

.instructor_slide .slick-list {
  overflow: visible;
}

.instructor_slide .slick-track {
  display: flex;
}

.instructor_slide .slick-slide {
  display: flex;
  height: auto !important;
}

.instructor_slide .slick-num {
  position: absolute;
  max-width: 40px;
  width: 100%;
  top: -40px;
  right: -9%;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
}

.instructor_slide .slide-arrow {
  position: absolute;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  color: #fff;
  border-radius: 100%;
  background: #37464F;
  z-index: 2;
  top: -50px;
}

.instructor_slide .slide-arrow.prev-arrow {
  right: -14%;
}

.instructor_slide .slide-arrow.next-arrow {
  right: -19%;
}

.instructor_slide_block {
  width: 100%;
}

.instructor_slide_block .inner {
  height: auto;
  background: #F1F2F4;
  border-radius: 12px;
  margin-right: 20px;
  padding: 30px;
}

.instructor_image {
  margin-bottom: 20px;
}

.instructor_image img {
  max-width: 240px;
  width: 100%;
  border-radius: 100%;
  margin: 0 auto;
}

.instructor_name {
  text-align: center;
  margin-bottom: 20px;
}

.instructor_name .position {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  border-radius: 20px;
  background: #37464F;
  padding: 3px 5px;
  margin-right: 10px;
}

.instructor_name .fz-19 {
  font-size: 1.9rem;
}

.instructor_flow {
  width: 100%;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #dfe4ea;
}

.instructor_flow li {
  position: relative;
  padding-left: 15px;
}

.instructor_flow li:before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #37464F;
  left: 0;
  top: 9px;
}

@media screen and (max-width: 768px) {
  .instructor_slide_wrap {
    width: calc(100% + 20px);
  }

  .instructor_slide .slide-arrow.prev-arrow {
    right: 60px;
  }

  .instructor_slide .slide-arrow.next-arrow {
    right: 20px;
  }

  .instructor_slide .slick-num {
    right: 110px;
  }
}

.calendar_list {
  width: 100%;
  border-bottom: 1px solid #dfe4ea;
}

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

.calendar_list .calendar_list_item .month {
  position: relative;
  width: 90px;
}

.calendar_list .calendar_list_item .month div {
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, #17E8E2 0%, #118AE3 100%);
  border-radius: 100%;
}

.calendar_list .calendar_list_item .month div:after {
  position: absolute;
  content: '';
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #16DDE2;
  right: -8px;
  top: calc(50% - 5px);
}

.calendar_list .calendar_list_item .month span {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70px;
  height: 70px;
  font-weight: 600;
  background: #fff;
  border-radius: 100%;
  text-align: center;
  letter-spacing: 0.032em;
}

.calendar_list .calendar_list_item .cont {
  width: calc(100% - 100px);
  padding: 5px 10px 35px 10px;
  display: grid;
  grid-template-columns: 57% 34%;
  gap: 20px 9%;
}

.calendar_list .calendar_list_item .cont .text h4 {
  font-size: 2.4rem;
}

.calendar_list .calendar_list_item .cont .text ul {
  margin-top: 10px;
}

.calendar_list .calendar_list_item .cont .text ul li {
  position: relative;
  padding-left: 20px;
}

.calendar_list .calendar_list_item .cont .text ul li:before {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  background: #38464E;
  border-radius: 100%;
  left: 0;
  top: 7px;
}

.calendar_list .calendar_list_item .cont .text .caption {
  width: 100%;
  font-size: 1.4rem;
  line-height: 2;
  padding: 10px 20px;
  border-radius: 15px;
  background: #F0F2F4;
  margin-top: 20px;
}

.calendar_list .calendar_list_item .cont .img {
  width: 100%;
}

.calendar_list .calendar_list_item .cont .img img {
  border-radius: 15px;
}

.calendar_list .calendar_list_item:not(:last-child) {
  margin-bottom: 30px;
}

.calendar_list .calendar_list_item:not(:last-child) .month:after {
  position: absolute;
  content: '';
  width: 4px;
  height: 100%;
  background: #DFE4EA;
  left: 38px;
  top: 40px;
  z-index: -1;
}

.calendar_list .calendar_list_item:not(:last-child) .cont {
  border-bottom: 1px solid #DFE4EA;
}

@media screen and (max-width: 768px) {
  .calendar_list .calendar_list_item .cont .text h4 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .calendar_list .calendar_list_item .cont {
    grid-template-columns: 100%;
  }
}

@media screen and (max-width: 500px) {
  .calendar_list .calendar_list_item .month {
    width: 60px;
  }

  .calendar_list .calendar_list_item .month div {
    width: 55px;
    height: 55px;
  }

  .calendar_list .calendar_list_item .month div:after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #16DDE2;
    right: -6px;
    top: calc(50% - 4px);
  }

  .calendar_list .calendar_list_item .month span {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .calendar_list .calendar_list_item .cont {
    width: calc(100% - 70px);
  }

  .calendar_list .calendar_list_item:not(:last-child) .month:after {
    left: 25px;
  }
}

.greeting_basic_block_text_inner {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.greeting_basic_block_text_inner:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, #fff 100%);
  left: 0;
  bottom: 0;
}

.greeting_basic_block_text_inner.is--show {
  height: auto;
}

.greeting_basic_block_text_inner.is--show:after {
  display: none;
}

.greeting_basic_block_text_inner dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
}

.greeting_basic_block_text_inner dl div dt {
  font-weight: bold;
}

.more-btn {
  position: relative;
  display: block;
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #37464F;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

.more-btn span {
  position: relative;
  z-index: 2;
}

.more-btn:hover {
  color: #fff;
  background: #37464F;
}

.more-btn.is--hide {
  display: none;
}

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

layout/_campus.scss

***************************/
.campus_info_block {
  width: 100%;
  display: grid;
  grid-template-columns: 46% 50%;
  gap: 20px 4%;
}

.campus_info_block .text {
  line-height: 2;
  letter-spacing: 0.032em;
}

.campus_info_block .text .fw600 {
  font-weight: 600;
}

.campus_info_block .text ul li {
  position: relative;
  padding-left: 20px;
}

.campus_info_block .text ul li:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #38464F;
  border-radius: 100%;
  left: 0;
  top: 10px;
}

.campus_image_slide .slick-num {
  position: absolute;
  max-width: 60px;
  width: 100%;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 10px;
}

.campus_image_slide .campus_image_slide_item {
  position: relative;
}

.campus_image_slide .campus_image_slide_item img {
  border-radius: 12px;
}

.campus_image_slide .campus_image_slide_item .inner {
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  bottom: 0;
  padding-right: 90px;
}

.campus_image_slide .campus_image_slide_item .inner p {
  color: #fff;
  text-shadow: 0 0 5px #000;
  text-align: right;
}

@media screen and (max-width: 600px) {
  .campus_info_block {
    grid-template-columns: 100%;
  }
}

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

layout/top.scss

***************************/
.top01 {
  width: 100%;
  margin-bottom: 100px;
}

.top01__inner {
  background: #F0F2F4;
  padding: 20px 0 30px;
}

.container {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.wide_wrapper {
  max-width: 94%;
  width: 100%;
  margin: 0 auto;
}

.important_news {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.important_news p {
  position: absolute;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 200px;
  height: 100%;
  font-size: 1.2rem;
  color: #fff;
  background: #EF2969;
  border-radius: 60px;
  left: 0;
  top: 0;
  z-index: 2;
}

.important_news a {
  display: block;
  width: 100%;
  padding: 10px 220px;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  border-radius: 60px;
  background: #FD4477;
  z-index: 1;
}

.important_news a span {
  background: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s;
}

.important_news a:hover {
  opacity: 1;
}

.important_news a:hover>span {
  background-size: 100% 1px;
}

.main_visual {
  position: relative;
  width: 100%;
}

.main_visual .progress {
  position: absolute;
  width: 240px;
  height: 2px;
  background: #E7E9EA;
  bottom: 60px;
  left: 60px;
}

.main_visual .progress .bar {
  position: absolute;
  content: '';
  width: 0%;
  top: 0;
  left: 0;
  background: #37464F;
  height: 100%;
}

.main_visual .slick-num {
  position: absolute;
  max-width: 50px;
  width: 100%;
  bottom: 50px;
  left: 300px;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  text-align: center;
}

.main_visual_slide {
  position: relative;
  background: #fff;
  border-radius: 25px;
}

.main_visual_slide .slide-arrow {
  position: absolute;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  color: #fff;
  border-radius: 100%;
  background: #37464F;
  z-index: 2;
  bottom: 42px;
}

.main_visual_slide .slide-arrow.prev-arrow {
  left: 360px;
}

.main_visual_slide .slide-arrow.next-arrow {
  left: 400px;
}

.main_visual_block {
  width: 100%;
}

.main_visual_block_inner {
  display: grid;
  grid-template-columns: 500px 1fr;
}

.main_visual_block .text_area {
  padding: 60px;
  padding-bottom: 160px;
}

.main_visual_block .text_area .cat {
  display: inline-block;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  padding: 1px 15px;
  border-radius: 15px;
  background: #8C6BD8;
  margin: 0;
}

.main_visual_block .text_area .ttl {
  font-size: 2.4rem;
  letter-spacing: 0.032em;
  line-height: 1.8;
  margin-top: 20px;
}

.main_visual_block .text_area .ttl span {
  background: linear-gradient(180deg, transparent 70%, #EAE4F8 70%);
}

.main_visual_block .text_area p {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 30px;
}

.main_visual_block .text_area .btn02 {
  max-width: 240px;
  width: 100%;
  margin-top: 40px;
}

.main_visual_block .banner_area img {
  border-radius: 25px;
}

@media screen and (max-width: 1200px) {
  .main_visual .progress {
    width: 200px;
    bottom: 40px;
    left: 30px;
  }

  .main_visual .slick-num {
    bottom: 30px;
    left: 235px;
  }

  .main_visual_slide .slide-arrow {
    bottom: 22px;
  }

  .main_visual_slide .slide-arrow.prev-arrow {
    left: 290px;
  }

  .main_visual_slide .slide-arrow.next-arrow {
    left: 330px;
  }

  .main_visual_block_inner {
    grid-template-columns: 400px 1fr;
  }

  .main_visual_block_inner .text_area {
    padding: 30px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 1050px) {
  .important_news a {
    text-align: left;
    padding: 10px 20px 10px 220px;
  }
}

@media screen and (max-width: 900px) {
  .main_visual_block_inner {
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 600px) {
  .important_news p {
    height: 30px;
    line-height: 30px;
  }

  .important_news a {
    border-radius: 20px;
    padding: 40px 20px 10px;
    margin-top: -10px;
  }

  .main_visual .progress {
    width: calc(100% - 210px);
  }

  .main_visual .slick-num {
    left: inherit;
    right: 120px;
  }

  .main_visual_slide .slide-arrow.prev-arrow {
    left: inherit;
    right: 75px;
  }

  .main_visual_slide .slide-arrow.next-arrow {
    left: inherit;
    right: 30px;
  }

  .main_visual_block .text_area .ttl {
    font-size: 2rem;
    margin-top: 5px;
  }

  .main_visual_block .text_area p {
    margin-top: 15px;
  }

  .main_visual_block .text_area .btn02 {
    margin-top: 20px;
  }
}

.top02 {
  width: 100%;
  margin-bottom: 80px;
}

.top02 .btn02 {
  max-width: 360px;
  width: 100%;
}

.t-about {
  position: relative;
  width: 100%;
  display: flex;
}

.t-about:before {
  position: absolute;
  content: '';
  max-width: 1260px;
  width: 90%;
  height: 100%;
  background: linear-gradient(211deg, #1BDE77 0%, #23C09D 100%);
  border-radius: 23px;
  top: 0;
  left: 5%;
  z-index: -1;
  opacity: 0.1;
}

.t-about_ttl {
  width: 70px;
}

.t-about_ttl h3 {
  width: 45px;
  background: url(./img/top/about_icn.png) no-repeat top left/contain;
  background-size: 44px auto;
  padding-top: 70px;
  font-size: 1.9rem;
  line-height: 45px;
  writing-mode: tb-rl;
}

.t-about_content {
  width: calc(100% - 70px);
  display: flex;
  padding: 60px 0 80px;
}


.t-about_content_text {
  width: 58%;
  padding: 0 30px;
}


.t-about_content_text .inner {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.t-about_content_img {
  width: 42%;
  padding-bottom: 25px;
}

.t-about_content_img img {
  border-radius: 25px;
}

.t-about_slide .slick-dots {
  bottom: -25px;
  text-align: left;
}

.t-about_slide .slick-dots button:before {
  text-align: left;
  color: #37464F;
  opacity: 0.1;
}

.t-about_slide .slick-dots .slick-active button:before {
  opacity: 1;
}

@media screen and (max-width: 1400px) {
  .t-about:before {
    width: calc(100% - 140px);
    left: 70px;
  }
}

@media screen and (max-width: 900px) {
  .t-about:before {
    width: calc(100% - 70px);
    left: 70px;
  }

  .t-about_content {
    display: block;
    padding-bottom: 0;
  }

  .t-about_content_text {
    width: 100%;
  }

  .t-about_content_text .inner {
    max-width: 100%;
  }

  .t-about_content_img {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 0;
  }

  .t-about_slide .slick-dots {
    max-width: 100px;
    width: 100%;
    height: 25px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
  }

  .t-about_slide .slick-dots li {
    transform: translateY(-4px);
  }

  .t-about_slide .slick-dots li button:before {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .t-about_content {
    padding-top: 0;
  }
}

@media screen and (max-width: 600px) {
  .t-about {
    display: block;
  }

  .t-about:before {
    width: 100%;
    left: 0;
    height: calc(100% - 50px);
    top: 50px;
  }

  .t-about_ttl {
    width: 100%;
  }

  .t-about_ttl h3 {
    width: 100%;
    height: 40px;
    padding-top: 0;
    padding-left: 55px;
    line-height: 40px;
    writing-mode: rl;
    background-size: 35px auto;
  }

  .t-about_content {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .t-about_ttl h3 {
    height: auto;
  }

  .t-about:before {
    height: calc(100% - 100px);
    top: 100px;
  }
}

.t-cont_hdg {
  width: 100%;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.t-cont_hdg h3 {
  font-size: 2.9rem;
  letter-spacing: 0.032em;
  margin-right: 50px;
}

.t-cont_hdg img {
  margin-right: 20px;
}

.curriculum_memu {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.curriculum_memu .slide-arrow {
  position: absolute;
  width: 60px;
  height: 60px;
  top: calc(50% - 60px);
  background: #F0F3F4;
  border-radius: 100%;
  padding: 0;
  z-index: 2;
}

.curriculum_memu .slide-arrow.prev-arrow {
  left: -15px;
}

.curriculum_memu .slide-arrow.prev-arrow:before {
  position: absolute;
  content: url(./img/common/arrow_right.png);
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 60px;
  top: 0;
  left: 0;
  transform: rotate(180deg);
}

.curriculum_memu .slide-arrow.next-arrow {
  right: -15px;
}

.curriculum_memu .slide-arrow.next-arrow:before {
  position: absolute;
  content: url(./img/common/arrow_right.png);
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 60px;
  top: 0;
  left: 0;
}

.curriculum_memu a {
  display: block;
  padding: 0 15px;
}

.curriculum_memu a:hover {
  opacity: 1;
}

.curriculum_memu a:hover .curriculum_memu_img:before {
  background: rgba(0, 0, 0, 0.3);
}

.curriculum_memu a:hover .curriculum_memu_img img {
  transform: scale(1.1);
}

.curriculum_memu a:hover .curriculum_memu_text:after {
  transform: translateX(5px);
}

.curriculum_memu_img {
  position: relative;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
}

.curriculum_memu_img:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: transparent;
  top: 0;
  left: 0;
  z-index: 1;
}

.curriculum_memu_img img {
  transition: all 1s;
}

.curriculum_memu_text {
  position: relative;
  padding-right: 40px;
}

.curriculum_memu_text p {
  font-size: 1.3rem;
  letter-spacing: 0.032em;
}

.curriculum_memu_text h4 {
  font-size: 1.9rem;
  letter-spacing: 0.032em;
}

.curriculum_memu_text:after {
  position: absolute;
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  line-height: 36px;
  color: #37464F;
  background: #F0F3F4;
  border-radius: 100%;
  right: 0;
  top: calc(50% - 18px);
  text-align: center;
  transition: all .6s;
}

@media screen and (max-width: 1024px) {
  .curriculum_memu {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .curriculum_memu {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .t-cont_hdg h3 {
    font-size: 2.2rem;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .t-cont_hdg img {
    width: 35px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 450px) {
  .curriculum_memu {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .curriculum_memu_img img {
    width: 100%;
  }
}

.top03 {
  width: 100%;
  margin-bottom: 100px;
}

.information_menu_block {
  width: 100%;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  margin-top: 30px;
}

.information_greeting {
  position: relative;
  width: 36%;
  overflow: hidden;
  border-radius: 15px;
}

.information_greeting img {
  width: 100%;
  transition: all .6s;
}

.information_greeting img.hov {
  transform: scale(1.1);
}

.information_greeting p {
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.032em;
}

.information_greeting h4 {
  font-size: 1.9rem;
  color: #fff;
  letter-spacing: 0.032em;
}

.information_greeting a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px;
  padding-right: 60px;
}

.information_greeting a:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.information_greeting a:before {
  position: absolute;
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  line-height: 36px;
  color: #37464F;
  background: #F0F3F4;
  border-radius: 100%;
  right: 25px;
  bottom: 30px;
  text-align: center;
  transition: all .6s;
}

.information_menu {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 25px;
}

.information_menu li {
  padding: 20px 0;
  border-bottom: 1px solid #DFE4EA;
}

.information_menu li:first-child,
.information_menu li:nth-child(2) {
  border-top: 1px solid #DFE4EA;
}

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

.information_menu a:hover {
  opacity: 1;
}

.information_menu a:hover .inner:after {
  transform: translateX(10px);
}

.information_menu img {
  width: 28%;
  padding-right: 20px;
}

.information_menu .inner {
  position: relative;
  width: 72%;
  padding-right: 50px;
}

.information_menu .inner p {
  font-size: 1.3rem;
  letter-spacing: 0.032em;
}

.information_menu .inner h4 {
  font-size: 1.9rem;
  letter-spacing: 0.032em;
}

.information_menu .inner:after {
  position: absolute;
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  line-height: 36px;
  color: #37464F;
  background: #F0F3F4;
  border-radius: 100%;
  right: 10px;
  bottom: calc(50% - 18px);
  text-align: center;
  transition: all .6s;
}

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

  .information_greeting {
    width: 100%;
    margin-bottom: 30px;
  }

  .information_menu {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .information_menu {
    grid-template-columns: 1fr;
  }

  .information_menu li {
    padding: 10px 0;
  }

  .information_menu li:nth-child(2) {
    border-top: 0;
  }
}

.top04 {
  width: 100%;
  background: #F0F2F4;
  padding: 90px 0;
}

.t-news_block {
  width: 32%;
}

.t-news_block .block_head {
  width: 100%;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.t-news_block .block_head h3 {
  font-size: 1.9rem;
  letter-spacing: 0.032em;
  line-height: 45px;
}

.t-news_block .block_head h3 img {
  margin-right: 20px;
}

.t-news_block .block_head h3 i {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 5px;
  margin-right: 20px;
  background: linear-gradient(90deg, #744ccf, #a443d8);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.t-news_block .block_head h3 i:after {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  background: linear-gradient(45deg, transparent 50%, #a443d8 50%);
  transform: rotate(45deg);
  right: -3px;
  top: calc(50% - 3px);
  z-index: -1;
}

.t-news_block .block_head a {
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  padding-right: 45px;
}

.t-news_block .block_head a i {
  position: absolute;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  line-height: 36px;
  background: #fff;
  border-radius: 100%;
  color: #37464F;
  text-align: center;
  right: 0;
  top: calc(50% - 18px);
  transition: transform .6s;
}

.t-news_block .block_head a:hover i {
  transform: translateX(10px);
}

.t-news_block .news_list {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #DFE4EA;
  margin-top: 30px;
}

.t-news_block .news_list li {
  padding: 20px 30px;
}

.t-news_block .news_list li:last-child {
  border-bottom: none;
}

.t-news_block .news_list li a {
  font-size: 1.4rem;
}

.t-news_block .news_list li a span.category {
  width: 108px;
  padding: 0;
  text-align: center;
}

.t-news_block .news_list li a .blog_thum {
  width: 105px;
  margin-right: 20px;
}

.t-news_block .news_list li a .blog_thum img {
  width: 100%;
  border-radius: 10px;
}

@media screen and (max-width: 1200px) {
  .t-news_block {
    width: 48%;
  }

  .t-news_block:first-child {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .t-news_block {
    width: 100%;
  }

  .t-news_block:not(:last-child) {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .t-news_block .block_head h3 img {
    width: 35px;
    margin-right: 10px;
  }

  .t-news_block .block_head h3 i {
    width: 35px;
    height: 35px;
    font-size: 1.6rem;
    margin-right: 10px;
  }
}


/* 240708 */
.sports-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sports-cont-item .img {
  margin-bottom: 20px;
}

.sports-cont-item h4 {
  font-size: 2rem;
}

.course_memu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .course_memu {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media screen and (max-width: 600px) {
  .sports-cont {
    grid-template-columns: 100%;
  }
}

@media screen and (max-width: 500px) {
  .course_memu {
    grid-template-columns: 100%;
  }
}

/* 240722 */
.sns-banner ul li i {
  font-size: 1.5rem;
}

@media screen and (max-width: 500px) {
  .sns-banner {
    flex-wrap: wrap;
  }

  .header_inner .header_contents .header_sub .sns-banner {
    height: auto;
  }
}


/* 240730 */
/*.bogo-language-switcher {
  height: 0;
  opacity: 0;
}*/

/* 240821 */
/*@media screen and (max-width: 1200px) {
  footer {
    padding-bottom: 70px;
  }
}*/

/* 240927 */
.translation_wrap {
  gap: 0 20px;
}

.translation_wrap .translation .language-switcher {
  padding: 5px 10px;
  font-size: 1.4rem;
  width: 75px;
  background-position: right 4px center;
}

/* 241202 */
.flow-tab {
  width: 100%;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 15px;
}

.flow-tab li {
  position: relative;
  width: 100%;
  padding: 10px 0;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.032em;
  border: 2px solid;
  border-radius: 4px;
  text-align: center;
}

.flow-tab li:hover {
  cursor: pointer;
}

.flow-tab li i {
  display: none;
}

.flow-tab li span {
  padding-bottom: 3px;
}

.flow-tab #anc01 {
  border-color: #3679CF;
  color: #3679CF;
}

.flow-tab #anc01 span {
  background: linear-gradient(0deg, #3679CF 2px, transparent 2px);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 100%;
  transition: background-size .6s;
}

.flow-tab #anc01:hover span {
  background-size: 100% 100%;
}

.flow-tab #anc02 {
  border-color: #56AF7E;
  color: #56AF7E;
}

.flow-tab #anc02 span {
  background: linear-gradient(0deg, #56AF7E 2px, transparent 2px);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 100%;
  transition: background-size .6s;
}

.flow-tab #anc02:hover span {
  background-size: 100% 100%;
}

.flow-tab #anc03 {
  border-color: #E46161;
  color: #E46161;
}

.flow-tab #anc03 span {
  background: linear-gradient(0deg, #E46161 2px, transparent 2px);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 100%;
  transition: background-size .6s;
}

.flow-tab #anc03:hover span {
  background-size: 100% 100%;
}

.flow-tab .now {
  padding: 14px 0;
  font-size: 1.9rem;
}

.flow-tab .now i {
  display: block;
  position: absolute;
  content: '';
  width: 100%;
  height: 11px;
  left: 0;
  bottom: -13px;
}

.flow-tab .now i:before {
  position: absolute;
  content: '';
  width: 50%;
  height: calc(100% + 1px);
  background: #fff;
  border-top-right-radius: 15px;
  top: 0;
  left: 0;
  z-index: 2;
}

.flow-tab .now i:after {
  position: absolute;
  content: '';
  width: 50%;
  height: calc(100% + 1px);
  background: #fff;
  border-top-left-radius: 15px;
  top: 0;
  right: 0;
  z-index: 2;
}

.flow-tab #anc01.now {
  color: #fff;
  background-color: #3679CF;
}

.flow-tab #anc01.now i {
  background-color: #3679CF;
}

.flow-tab #anc02.now {
  color: #fff;
  background-color: #56AF7E;
}

.flow-tab #anc02.now i {
  background-color: #56AF7E;
}

.flow-tab #anc03.now {
  color: #fff;
  background-color: #E46161;
}

.flow-tab #anc03.now i {
  background-color: #E46161;
}

.flow-context-box {
  position: relative;
  background: linear-gradient(90deg, #F3F3F3 1px, #fff 1px);
  background-repeat: repeat;
  background-size: 20px 100%;
}

.flow-context-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 50px 35px;
  border: 2px solid;
  border-radius: 7px;
  background: linear-gradient(180deg, #F3F3F3 1px, transparent 1px);
  background-repeat: repeat;
  background-size: 100% 20px;
  opacity: 0;
  transition: opacity .6s;
}

.flow-context-block.now {
  position: relative;
  opacity: 1;
}

.flow-context-block#anc01 {
  border-color: #3679CF;
}

.flow-context-block#anc02 {
  border-color: #56AF7E;
}

.flow-context-block#anc03 {
  border-color: #E46161;
}

.flow-context-block-timeline {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.flow-context-block-timeline:not(:last-child) {
  padding-bottom: 30px;
}

@media screen and (min-width: 901px) {
  .flow-context-block-timeline:nth-child(2n) {
    flex-flow: row-reverse;
  }
}

.flow-context-block-timeline:not(:last-child):after {
  position: absolute;
  content: '';
  width: 2px;
  height: 100%;
  border-right: 2px dotted;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.flow-context-block-timeline .img {
  width: calc((100% - 100px) / 2);
}

.flow-context-block-timeline .clock {
  position: relative;
  width: 100px;
  text-align: center;
}

.flow-context-block-timeline .clock:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  border-top: 2px dotted;
  top: 50%;
  z-index: -1;
  left: 50%;
}

.flow-context-block-timeline:nth-child(2n) .clock:before {
  left: -50%;
}

.flow-context-block-timeline .text {
  width: calc((100% - 100px) / 2);
}

.flow-context-block-timeline .text dt {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.032em;
  color: #fff;
  text-align: center;
  padding: 5px 20px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.flow-context-block-timeline .text dd {
  padding: 20px 30px;
  border-radius: 4px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .1);
  border: 1px solid;
}

.flow-context-block-timeline .text dd h4 {
  font-size: 1.9rem;
  letter-spacing: 0.032em;
}

.flow-context-block-timeline .text dd p {
  line-height: 2;
  letter-spacing: 0.032em;
  margin-top: 10px;
}

#anc01 .flow-context-block-timeline:after {
  border-color: #3679CF;
}

#anc02 .flow-context-block-timeline:after {
  border-color: #56AF7E;
}

#anc03 .flow-context-block-timeline:after {
  border-color: #E46161;
}

#anc01 .flow-context-block-timeline .clock:before {
  border-color: #3679CF;
}

#anc02 .flow-context-block-timeline .clock:before {
  border-color: #56AF7E;
}

#anc03 .flow-context-block-timeline .clock:before {
  border-color: #E46161;
}

#anc01 .flow-context-block-timeline .text dt {
  background: #3679CF;
}

#anc02 .flow-context-block-timeline .text dt {
  background: #56AF7E;
}

#anc03 .flow-context-block-timeline .text dt {
  background: #E46161;
}

#anc01 .flow-context-block-timeline .text dd {
  border-color: #3679CF;
  background: #EEF4F7;
}

#anc02 .flow-context-block-timeline .text dd {
  border-color: #56AF7E;
  background: #F8F8ED;
}

#anc03 .flow-context-block-timeline .text dd {
  border-color: #E46161;
  background: #FBF4F2;
}

#anc01 .flow-context-block-timeline .text dd h4 {
  color: #3679CF;
}

#anc02 .flow-context-block-timeline .text dd h4 {
  color: #56AF7E;
}

#anc03 .flow-context-block-timeline .text dd h4 {
  color: #E46161;
}

@media screen and (max-width: 900px) {
  .flow-context-block-timeline {
    width: 100%;
    flex-wrap: wrap;
  }

  .flow-context-block-timeline .img {
    width: 100%;
    text-align: center;
  }

  .flow-context-block-timeline .clock {
    width: 100%;
    margin: 20px 0;
  }

  .flow-context-block-timeline .clock:before {
    display: none;
  }

  .flow-context-block-timeline .text {
    width: 100%;
  }

  .flow-context-block-timeline:not(:last-child):after {
    transform: translateX(-50%) translateY(20px);
  }
}

@media screen and (max-width: 768px) {
  .flow-tab {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-tab .now i {
    display: none;
  }

  .flow-context-block {
    padding: 30px 15px;
  }
}

@media screen and (max-width: 425px) {
  .flow-tab {
    grid-template-columns: 100%;
  }
}


.top-story {
  padding-bottom: 100px;

  h3 {
    display: flex;
    align-items: flex-start;
    margin-right: 0;
  }

  .t-cont_hdg {
    margin-bottom: 40px;
  }

  .subTitle {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    margin-top: 10px;
  }
}

.top-story>.container>.t-cont_hdg {
  justify-content: center;
  text-align: center;
}

.top-story_slideWrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.top-story_slideBox {
  width: calc(50% - 43px);
}

.top-story_slide {
  position: relative;
}

.top-story_slide li {
  border: 1px solid #DFE4EA;
  border-radius: 11px;
  padding: 25px 35px;
  margin: 0 10px 1px;
}

.top-story_slide .slide-arrow {
  position: absolute;
  width: 60px;
  height: 60px;
  top: calc(50% - 30px);
  background: #F0F3F4;
  border-radius: 100%;
  padding: 0;
  z-index: 2;
}

.top-story_slide .slide-arrow.prev-arrow {
  left: -20px;
}

.top-story_slide .slide-arrow.prev-arrow:before {
  position: absolute;
  content: url(./img/common/arrow_right.png);
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 60px;
  top: 0;
  left: 0;
  transform: rotate(180deg);
}

.top-story_slide .slide-arrow.next-arrow {
  right: -20px;
}

.top-story_slide .slide-arrow.next-arrow:before {
  position: absolute;
  content: url(./img/common/arrow_right.png);
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 60px;
  top: 0;
  left: 0;
}

.top-story_slide a {
  display: block;
  padding: 0 15px;
}

.top-story_slide a:hover {
  opacity: 1;
}

.top-story_slide a:hover .top-story_slide_img:before {
  background: rgba(0, 0, 0, 0.3);
}

.top-story_slide a:hover .top-story_slide_img img {
  transform: scale(1.1);
}

.top-story_slide a:hover .top-story_slide_text:after {
  transform: translateX(5px);
}

.top-story_slide_img {
  position: relative;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
}

.top-story_slide_img:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: transparent;
  top: 0;
  left: 0;
  z-index: 1;
}

.top-story_slide_img img {
  transition: all 1s;
}

.top-story_slide_text {
  position: relative;
  padding-bottom: 55px;
}

.top-story_slide_text p {
  font-size: 1.4rem;
  letter-spacing: 0.032em;
}

.top-story_slide_text h4 {
  font-size: 1.6rem;
  letter-spacing: 0.032em;
  margin: 10px 0;
}

.top-story_slide_text:after {
  position: absolute;
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  line-height: 36px;
  color: #37464F;
  background: #F0F3F4;
  border-radius: 100%;
  right: 0;
  bottom: 0;
  text-align: center;
  transition: all .6s;
}

.top-story_slide_text .ymd {
  color: #939DA6;
  font-size: 1.4rem;
  margin-right: 15px;
  font-family: "Montserrat", sans-serif;
  width: 84px;
  font-weight: 500;
}

.top-story_slide_text .new {
  display: inline-block;
  color: #fff;
  background-color: #FB4E5B;
  font-size: 1rem;
  border-radius: 15px;
  padding: 0 5px;
}

.top-story_slideBox .btn02 {
  margin: 30px auto 0;
  max-width: 100%;
}

@media screen and (min-width: 769px) {
  .top-story_slideWrap {
    .t-cont_hdg {
      min-height: 195px;
      align-items: flex-start;
    }
  }
}

@media screen and (max-width: 1024px) {
  .top-story_slide {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .top-story {
    .t-cont_hdg {
      margin-bottom: 20px;
    }
  }

  .top-story_slide {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-story_slideWrap {
    flex-wrap: wrap;
    gap: 50px;
  }

  .top-story_slideBox {
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .top-story_slide {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .top-story_slide_img img {
    width: 100%;
  }
}

.campus_image_movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;

  iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
  }
}


/* 250616 Add */
.twitter-wrap {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #DFE4EA;
  margin-top: 30px;
}

.donation {
  background: #F8F8F8;
}

/* 250911 */
.donation_flow_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  counter-reset: number 0;
}

@media screen and (min-width: 769px) {
  .donation_flow_list {
    justify-content: space-between;
  }
}

.donation_flow_item {
  border: 1px solid #37464F;
  border-radius: 22px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.donation_flow_item::before {
  counter-increment: number 1;
  content: counter(number) " ";
  color: #fff;
  position: absolute;
  top: 5px;
  left: 13px;
  z-index: 3;
  font-size: 17px;
  font-weight: bold;
}

.donation_flow_item::after {
  content: "";
  background: #37464F;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.donation_flow_item figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.donation_flow_img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 22px;
  overflow: hidden;
}


.donation_flow_item figcaption {
  background: #C8D0DB;
  border-radius: 0 0 22px 22px;
  font-size: 16px;
  line-height: 1.3;
  padding: 15px 1px;
  text-align: center;
  letter-spacing: normal;
  margin-top: auto;
}

@media screen and (min-width: 768px) {
  .donation_flow_item {
    width: 48.5%;
  }
}

.donation_box {
  border: 2px solid #37464F;
  border-radius: 5px;
  padding: 15px 25px;
}

.donation_list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media screen and (min-width: 769px) {
  .donation_list {
    flex-direction: row;
  }
}

.donation_item {
  background: #fff;
  padding: 20px 30px;
}

.donation_item figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donation_title {
  font-size: 21px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

.m-0 {
  margin: 0 auto;
}

.header_donation {
  border: 1px solid #CAD6E2;
  border-radius: 20px;
  padding: 1px 20px;
  display: inline-block;
  margin-top: 10px;
}

@media screen and (min-width: 1200px) {
  .header_donation {
    margin-top: 0;
  }
}

.primary {
  padding: 180px 30px 0;
}

/* 260130 */
.top02.--new .t-about_content {
  width: 100%;
  display: block;
  padding-bottom: 40px;
}

.top02.--new .t-about_content_text {
  width: 100%;
}

.top02.--new .t-about_content_text .inner {
  max-width: 1140px;
}

.top02.--new .t-about_content .btn02 {
  margin: 0 auto;
  margin-top: 30px;
}

.top02.--new .t-about:before {
  max-width: 1300px;
  width: 100%;
}

.top02.--new .t-about_content_img {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 0 30px 0;
}

@media screen and (min-width: 769px) {
  .top02.--new .t-about_content_img {
    margin-top: 60px;
    padding-bottom: 0;
  }

}

.top-story.--new {
  padding-bottom: 60px;
}

.top-story.--new .top-graduation_Wrap .subTitle {
  text-align: left;
  font-weight: bold;
}

.top-story.--new .top-graduation_Wrap .subTitle span {
  background: #EAF2FA;
  padding: 5px 10px;
}

.top-story.--new .top-graduation_Wrap .subTitle span:first-child {
  border-radius: 7px 7px 7px 0;
}

.top-story.--new .top-graduation_Wrap .subTitle span:last-child {
  border-radius: 0 0 7px 7px;
}

.top-graduation_text_wrap {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

.top-story.--new .table {
  text-align: center;
  margin-bottom: 50px;
}

.top-story.--new .table th {
  padding: 12px 0;
  width: 33.3%;
}

.top-story.--new .table td {
  padding: 30px 0;
}

.top-story.--new .campus_info_block {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 769px) {
  .top-story.--new .table {
    margin-bottom: 75px;
  }

  .top-story.--new .top-graduation_Wrap .subTitle {
    font-size: 26px;
  }

  .top-graduation_text_wrap {
    display: grid;
    grid-template-columns: 345px 1fr;
    gap: 95px;
    margin-bottom: 50px;
  }

  .top-story.--new .campus_info_block {
    grid-template-columns: 480px 1fr;
  }
}

.box_type_title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  background: #37464F;
  border-radius: 28px;
  width: 100%;
  max-width: calc(100% - 60px);
  text-align: center;
  margin: 0 auto;
  color: #fff;
  margin-bottom: -20px;
  position: relative;
  padding: 10px;
  z-index: 2;
}

.box_type_title::before {
  content: "";
  background: #37464F;
  width: 16px;
  height: 8px;
  display: block;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.box_type_contents {
  background: #F0F2F4;
  border-radius: 24px;
  padding: 40px 30px 20px;
}

@media screen and (min-width: 769px) {
  .box_type_contents {
    padding: 65px 60px 50px;
  }

  .box_type_title {
    font-size: 20px;
    max-width: 750px;
  }

  .box_type_title br {
    display: none;
  }
}


.information_campus01,
.information_campus02 {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}


.information_campus01 img,
.information_campus02 img {
  width: 100%;
  transition: all .6s;
}

.information_campus01 img.hov,
.information_campus02 img.hov {
  transform: scale(1.1);
}

.information_campus01 p,
.information_campus02 p {
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.032em;
}

.information_campus01 h4,
.information_campus02 h4 {
  font-size: 1.9rem;
  color: #fff;
  letter-spacing: 0.032em;
}

.information_campus01 a,
.information_campus02 a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px;
  padding-right: 60px;
}

.information_campus01 a:hover,
.information_campus02 a:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.information_campus01 a:before,
.information_campus02 a:before {
  position: absolute;
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  line-height: 36px;
  color: #37464F;
  background: #F0F3F4;
  border-radius: 100%;
  right: 25px;
  bottom: 30px;
  text-align: center;
  transition: all .6s;
}

.new_link_box {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .new_link_box {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
  }
}

.school_life_list {
  display: grid;
  gap: 10px;
}

.school_life_item {
  border: 1px solid #DFE4EA;
  border-radius: 11px;
  padding: 15px;
  margin: 0 10px 1px;
}

@media screen and (min-width: 769px) {
  .school_life_item {
    padding: 25px 35px;
  }
}

@media screen and (min-width: 1200px) {
  .school_life_item:first-of-type {
    padding-bottom: 0;
  }

  .school_life_style_list {
    padding-bottom: 50px;
  }
}

.school_life_title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(45deg, #3A42C5, #3580D0, #31BDDB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.school_life_title br {
  display: block;
}

@media screen and (min-width: 769px) {
  .school_life_title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .school_life_title br {
    display: none;
  }
}
.modaal-close{
  right: 5px;
  top: 11px;
}
.modaal-wrapper{
  -webkit-overflow-scrolling: touch;
  overflow-y:scroll;
}
.modaal-wrapper::-webkit-scrollbar{ 
   width: 10px;
}
.modaal-wrapper::-webkit-scrollbar-thumb{ 
   background: #F0F3F4;
   border-radius: 3px;
}
.modaal-wrapper::-webkit-scrollbar-track-piece:start{
   background: #000;
}
.modaal-wrapper::-webkit-scrollbar-track-piece:end{
   background: #000;
}

.modaal-wrapper .modaal-close{
   background: #fff;
}
.modaal-close:after, .modaal-close:before, .modaal-close:after, .modaal-close:before{
  background: #000;
}
.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before{
  background: #fff;
}
.modaal-wrapper .modaal-close:hover{
   background: #000;
}
.modaal-container {
  background: transparent;
  box-shadow: none;
}
.modaal-content-container{
  padding: 5px;
}
.modaal-content-container video {
  width: 100%;
}

.school_life_wrap {
  display: grid;
  grid-template-areas: "center center""left right";
  gap: 30px 10px;
}

@media screen and (min-width: 1200px) {
  .school_life_wrap {
    grid-template-areas: "left center right";
    align-items: flex-end;
  }
}

.school_life_style_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* position: absolute;
  bottom: 0;
  left: -65px; */
  grid-area: left;
  margin-left: -50px;
}

.school_life_style_list {
  grid-area: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.rounditem {
  background: #CDE0FE;
  border-radius: 50%;
  text-align: center;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #4380DF;
  line-height: 1.25;
  margin: 0 auto;
}

.rounditem.--item02 {
  background: #CEEDFC;
}

.school_life_style_item {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .school_life_style_item:has(.rounditem) {
    width: 150px;
  }

  .school_life_style_item:has(img) {
    width: 20px;
  }

  .school_life_style_item:has(.school_life_style_dl) {
    width: 260px;
  }
}

.school_life_style_dl {
  border: 2px dotted #00BF6C;
  padding: 12px;
  padding-top: 20px;
  border-radius: 7px;
  width: 100%;

  position: relative;
  margin-top: 20px;
}

.school_life_style_dl dt {
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 88px;
  background: #fff;
}

.school_life_style_dl .applicant_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.school_life_style_dl .applicant_item {
  font-size: 16px;
  color: #00BF6C;
  background: #E1FBE8;
  border-radius: 16px;
  font-weight: bold;
  text-align: center;
  padding: 5px 14px;
}

@media screen and (min-width: 769px) {
  .school_life_style_list {
    flex-direction: row;
    justify-content: center;
  }

  .school_life_style_left {
    flex-direction: row;
    gap: 10px;
    margin-left: -60px;
  }

  .school_life_style_left img {
    margin-top: 40px;
  }
}

.school_life_style_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  grid-area: right;
  margin-right: -50px;
}

@media screen and (min-width: 769px) {
  .school_life_style_right {
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 10px;
    margin-right: -60px;
  }

  .school_life_style_right img {
    margin-top: 40px;
  }
}

.school_life_style_fukidashi {
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  width: 100%;
  max-width: 180px;
  padding: 15px;
  background: #F0F2F4;
  border-radius: 15px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .school_life_style_fukidashi {
    font-size: 13px;
    max-width: 220px;
    padding: 20px;
  }
}

.school_life_style_fukidashi.--left::before {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: #F0F2F4;
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
  bottom: -11px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .school_life_style_fukidashi.--left::before {
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    bottom: 65px;
    left: auto;
    right: -11px;
    margin: 0;
  }
}

.school_life_style_fukidashi.--right::before {
  content: "";
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  background: #F0F2F4;
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
  bottom: -11px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .school_life_style_fukidashi.--right::before {
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    bottom: 40px;
    right: auto;
    left: -11px;
    margin: 0;
  }
}

.school_life_activity_list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .school_life_activity_list {
    grid-template-columns: 1fr 1fr;
  }
}

.school_life_activity_item {
  background: #EAF2FA;
  border-radius: 7px;
  padding: 30px 20px;
}

.school_life_activity_title {
  color: #3580D0;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  line-height: 1.95;
  text-align: center;
}

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

.school_life_activity_contents {
  display: grid;
  gap: 5px;
}

@media screen and (min-width: 540px) {
  .school_life_activity_contents {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 769px) {
  .school_life_activity_contents {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.school_life_activity_contents li {
  border-radius: 7px;
  background: #fff;
  text-align: center;
  font-weight: bold;
  padding: 5px;
  font-size: 1.4rem;
}

.school_life_activity_contents:last-child::after {
  content: "など";
  font-size: 12px;
  font-weight: bold;
  margin-top: auto;
}


.school_life_link {
  margin: 20px 0 60px;
}

.school_life_link .btn02 {
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .school_life_link {
    margin: 40px 0 80px;
  }
}

.top_admission {
  padding-bottom: 100px;
}

@media screen and (min-width: 769px) {
  .top_admission {
    padding-bottom: 220px;
  }
}

.top_admission_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .top_admission_contents {
    margin-top: 50px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.top_admission_title {
  width: 100%;
  max-width: 300px;
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .top_admission_title {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

.top_admission_textbox {
  width: 100%;
  max-width: 850px;
}

.top_admission_img img {
  border-radius: 24px;
  width: 100%;
  max-width: 450px;
}

.top_admission_link_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .top_admission_link_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .top_admission_link_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 80px;
  }
}

.top_admission_link_list .line {
  background-color: #00B34F;
  color: #fff;
  line-height: 56px;
  display: block;
  text-align: center;
  border-radius: 30px;
  font-size: 1.4rem;
  position: relative;
  padding: 3px;
}

.top_admission_link_list .line:before {
  content: '';
  background: url(./img/common/icon_line_wh.png) no-repeat;
  width: 21px;
  height: 20px;
  background-size: contain;
  position: absolute;
  left: 30px;
  top: calc(50% - 10px);
}

.top_admission_link_list .document_request {
  background: linear-gradient(90deg, #744ccf, #a443d8);
  color: #fff;
  line-height: 56px;
  display: block;
  text-align: center;
  border-radius: 30px;
  font-size: 1.4rem;
  position: relative;
  padding: 3px;
}

.top_admission_link_list .document_request:before {
  content: '';
  background: url(./img/common/icon_request_footer.png) no-repeat;
  width: 21px;
  height: 20px;
  background-size: contain;
  background-position: center center;
  position: absolute;
  left: 30px;
  top: calc(50% - 10px);
}

.top_admission_link_list .btn02,
.top_admission_link_list .line,
.top_admission_link_list .document_request {
  width: 100%;
}

/* 260202 */
.interview_list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.interview_title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 10px 0;
}

.interview_title span {
  font-size: 14px;
}

.interview_tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}

.interview_tag_item {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #939DA6;
  background: #F0F2F4;
  border-radius: 11px;
  padding: 3px 10px;
}

.interview_btn {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #F0F3F4;
  border-radius: 31px;
  display: block;
  text-align: center;
  padding: 9px;
}

@media screen and (min-width: 540px) {
  .interview_list {
    grid-template-columns: 1fr 1fr;
  }

  .interview_title {
    font-size: 17px;
  }
}

@media screen and (min-width: 1024px) {
  .interview_list {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .interview_list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

}

.interview_item {
  border: 1px solid #DFE4EA;
  border-radius: 15px;
  padding: 25px;
}

.interview_img {
  overflow: hidden;
  border-radius: 12px;
}

.interview_img img {
  border-radius: 12px;
  width: 100%;
}

.interview_box_wrap {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}

.interview_lead_box {
  background: #DFE4EA;
  padding: 20px;
  border-radius: 10px;
}
.interview_contents_item:last-child{
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .interview_box_wrap {
    padding: 30px;
  }
  .interview_contents_item{
    margin-bottom: 20px;
  }
}

.interview_lead_box .interview_lead_text {
  margin: 0;
  margin-top: 5px;
}

.interview_lead_text {
  font-weight: bold;
  font-size: 18px;
}

.interview_contents_list {
  margin-top: 20px;
}

.interview_contents_item {
  margin-bottom: 10px;
}

.interview_contents_title {
  font-weight: bold;
  margin-bottom: 5px;
}
html {
  overflow-y: scroll;
}

.modaal-inner-wrapper{
  padding: 5px;
}
