@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

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

ul, ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  display: block;
}

/***************************************
                グローバルナビ
***************************************/
.burger {
  --opacity: 1;
  --rotate: 0;
  --translate: .5rem;
  display: grid;
  place-items: center;
  width: 60px;
  margin-top: 12px;
  aspect-ratio: 1;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: -55px;
  z-index: 10;
  border-radius: 50%;
}
@media (width >= 768px) {
  .burger {
    right: calc(50% - 365px);
  }
}
@media (width >= 430px) {
  .burger {
    width: 55px;
  }
}
.burger:hover {
  opacity: 0.7;
}
.burger:visited {
  background-color: transparent;
}
.burger a:active {
  opacity: 0.5;
}
.burger a:focus {
  opacity: 0.5;
}
.burger.is-active {
  --opacity: 0;
  --rotate: 135deg;
  --translate: 0;
  position: absolute;
}
.burger span {
  display: block;
  width: 55%;
  height: 1px;
  background-color: #333;
  grid-area: 1/1/-1/-1;
  transition: opacity 0.4s ease, rotate 0.4s ease, translate 0.4s ease;
}
@media (width >= 768px) {
  .burger span {
    width: 75%;
  }
}
.burger span:nth-child(1) {
  opacity: var(--opacity);
}
.burger span:nth-child(2) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.burger span:nth-child(3) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}

.g_navi {
  padding: 1em 1em 2em 1em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.g_navi::-webkit-scrollbar {
  display: none;
}
.g_navi.is-active {
  opacity: 1;
  pointer-events: all;
}
.g_navi__menulist {
  margin: 0 0 100px 0;
}
.g_navi__menulist img {
  max-width: 180px;
  width: auto;
  margin: 10px auto 5px auto;
}
.g_navi__menulist_feature li.list_item:nth-child(1) {
  margin-top: 10px;
}
.g_navi__menulist_feature li.list_item {
  margin: 0;
  margin-left: 2em;
  padding: 12px 0;
  width: calc(100% - 2em);
  border: none;
}
.g_navi__menulist_feature li.list_item:nth-child(n+1) {
  border-bottom: 1px solid #bab9b9;
}
.g_navi__menulist_feature li.list_item:last-child {
  border-bottom: none;
}
.g_navi__menulist--title {
  font-weight: bold;
}

nav.g_navi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  color: #000;
  background: #eff4f6;
  transform: translateX(100%);
  transition: all 0.8s;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 55px 35px 35px 35px;
  margin: 0 auto;
}
nav.g_navi ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 640px;
}
nav.g_navi ul li {
  line-height: 1.6;
  padding: 38px 0;
  width: 100%;
  border-bottom: 1px solid #bab9b9;
}
nav.g_navi ul li a {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
nav.g_navi ul li:nth-child(-n+1) {
  border: none;
}
nav.g_navi ul li:last-child {
  border-bottom: none;
}
nav.g_navi.is-active {
  transform: translateX(0%);
}

.g_navi__link {
  display: inline-block;
  width: 100%;
  position: relative;
  vertical-align: middle;
  text-decoration: none;
}
.g_navi__link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  border-top: 1px solid #bab9b9;
  border-right: 1px solid #bab9b9;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.4s;
}
.g_navi__link:hover::after {
  right: 0px;
  opacity: 0.8;
}

.g_navi_menu__contents_head {
  display: block;
  font-size: 30px;
  font-weight: bold;
  font-family: "Montserrat";
  letter-spacing: 0.3;
  padding: 30px 0 5px 0;
  margin: 0 auto;
  text-align: center;
}

.g_navi_menu__contents--big {
  font-size: 18px;
  font-weight: bold;
}

.g_navi_menu__small {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.g_navi_menu__small small {
  display: block;
  font-family: "Montserrat";
  padding-top: 50px;
}

/* nav.Men ul { background: #ccc; margin: 0 auto; padding: 0; width: 100%; } 
nav.g_navi ul li { list-style-type: none; padding: 0; width: 100%; border-bottom: 1px solid #fff; } 
nav.g_navi ul li:last-child { padding-bottom: 0; border-bottom: none; } 
nav.g_navi ul li:hover{ background :#ddd; } 
nav.g_navi ul li a { display: block; color: #000; padding: 1em 0; text-decoration :none; }  */
/***************************************
                リンクボタン
***************************************/
.btn_arrow_left {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  outline: none;
  text-decoration: none;
  color: #242424;
}
.btn_arrow_left:hover::before {
  right: 50%;
}
.btn_arrow_left:hover::after {
  left: -10%;
}
.btn_arrow_left::before {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 40%;
  width: 60%;
  height: 1px;
  background: #242424;
  transition: all 0.4s;
}
.btn_arrow_left::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 15px;
  height: 1px;
  background: #242424;
  transform: rotate(-35deg);
  transition: all 0.4s;
}

.btn_arrow_right {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  outline: none;
  text-decoration: none;
  color: #242424;
}
.btn_arrow_right:hover::before {
  left: 50%;
}
.btn_arrow_right:hover::after {
  right: -10%;
}
.btn_arrow_right::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 40%;
  width: 60%;
  height: 1px;
  background: #242424;
  transition: all 0.4s;
}
.btn_arrow_right::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 15px;
  height: 1px;
  background: #242424;
  transform: rotate(35deg);
  transition: all 0.4s;
}

.btn_arrow_right_secondary {
  position: relative;
  display: inline-block;
  padding: 0 35px 0 0;
  outline: none;
  text-decoration: none;
  color: #242424;
}
.btn_arrow_right_secondary:hover::before {
  left: 50%;
}
.btn_arrow_right_secondary:hover::after {
  right: -10%;
}
.btn_arrow_right_secondary::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 40%;
  width: 60%;
  height: 1px;
  background: #242424;
  transition: all 0.4s;
}
.btn_arrow_right_secondary::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 15px;
  height: 1px;
  background: #242424;
  transform: rotate(35deg);
  transition: all 0.4s;
}

.arrow_right__mini {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-top: 6px;
  margin-left: 8px;
  border-radius: 9999px;
  background-color: #3e3a39;
}

.arrow_right__mini::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  margin-left: 8px;
  border-radius: 9999px;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
  background-color: #3e3a39;
}

.arrow_right__mini_w {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-top: 6px;
  margin-left: 8px;
  border-radius: 9999px;
  background-color: #fff;
}

.arrow_right__mini_w::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  margin-left: 8px;
  border-radius: 9999px;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
  background-color: #fff;
}

.button_normal {
  padding: 1em 2.75em;
  border-radius: 40px;
  border: 1px solid #3e3a39;
  display: inline-block;
}

.button_link {
  font-weight: bold;
  width: fit-content;
  padding: 1em 2.75em;
  border-radius: 40px;
  border: 1px solid #3e3a39;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  background-color: #fff;
  position: relative;
  transition: color 0.5s ease;
  overflow: hidden;
}
@media (width <= 768px) {
  .button_link {
    padding: 0.7em 2.3em;
  }
}
@media (width <= 570px) {
  .button_link {
    padding: 0.6em 2.2em;
  }
}

.button_link:hover {
  color: #fff;
}

.button_link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
  border-radius: 40px;
}

.button_link::before {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  content: "";
  border-radius: 40px;
  width: 100%;
  height: 100%;
  background: #3e3a39;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.button_link__text {
  position: relative;
}

.button_link:hover .arrow_right__mini_a {
  background-color: #fff;
}

.button_link:hover .arrow_right__mini_a::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  margin-left: 8px;
  border-radius: 9999px;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
  background-color: #fff;
}

.arrow_right__mini_a {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-top: 6px;
  margin-left: 8px;
  border-radius: 9999px;
  background-color: #3e3a39;
}

.arrow_right__mini_a::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  margin-left: 8px;
  border-radius: 9999px;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
  background-color: #3e3a39;
}

.button_link__w {
  display: inline-block;
  font-weight: bold;
  width: fit-content;
  padding: 1em 2.75em;
  border-radius: 40px;
  border: 1px solid #fff;
  color: #fff;
  background-color: #009d97;
  text-align: center;
  text-decoration: none;
  outline: none;
  position: relative;
  transition: color 0.5s ease;
  overflow: hidden;
}

.button_link__w:hover {
  color: #fff;
}

.button_link__w:hover::before {
  transform: scaleX(1);
  transform-origin: left;
  border-radius: 40px;
}

.button_link__w::before {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  content: "";
  border-radius: 40px;
  width: 100%;
  height: 100%;
  background: #3e3a39;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.button_link:hover .arrow_right__mini_a_w {
  background-color: #3e3a39;
}

.button_link:hover .arrow_right__mini_a_w::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  margin-left: 8px;
  border-radius: 9999px;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
  background-color: #3e3a39;
}

.arrow_right__mini_a_w {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-top: 6px;
  margin-left: 8px;
  border-radius: 9999px;
  background-color: #fff;
}

.arrow_right__mini_a_w::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  margin-left: 8px;
  border-radius: 9999px;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
  background-color: #fff;
}

/***************************************
                gloval
***************************************/
html {
  overflow-x: hidden;
  --color_des_base: #3e3a39;
  --color_des_secondary: #555;
  --color_primary: #161616;
  --color_main: #009d97;
  --color_main_secon: #eff4f6;
  --color_sub: #06e9e0;
  --color_sub_secon: #F8FDFF;
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  background-color: #fff;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "Montserrat", "Helvetica Neue", "Helvetica", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: var(--color_des_base);
  font-feature-settings: "palt" 1;
  letter-spacing: 0.01em;
}
@media (width <= 570px) {
  body {
    font-size: 15px;
  }
}

address {
  font-style: normal;
  font-weight: normal;
  line-height: 1.7;
  letter-spacing: 0.075em;
}

small {
  font-size: 11px;
  letter-spacing: 0.15em;
}
@media (width <= 768px) {
  small {
    font-size: 10px;
  }
}

p {
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.01em;
}

a {
  color: var(--color_des_base);
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

.header {
  z-index: 99;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header__logo {
  max-width: 300px;
  margin: 30px auto 15px 35px;
  display: block;
}
.header__logo img {
  max-width: 308px;
}
@media (width <= 768px) {
  .header__logo {
    margin: 28px auto 15px 30px;
  }
  .header__logo img {
    width: 270px;
  }
}
@media (width <= 570px) {
  .header__logo {
    margin: 26px auto 15px 28px;
  }
  .header__logo img {
    max-width: 240px;
    width: 100%;
  }
}
@media (width <= 430px) {
  .header__logo {
    margin: 26px auto 15px 28px;
  }
  .header__logo img {
    max-width: 232px;
    width: 100%;
  }
}
.header__index {
  padding: 0;
  margin: 0;
}
.header__action {
  padding: 12px 30px;
  margin: 0 0 0 auto;
  background-color: #009D97;
}
@media (width <= 570px) {
  .header__action {
    padding: 8px 18px;
  }
}
.header__action .action__txt_sub {
  display: inline-block;
  font-size: 15px;
  line-height: 0.8;
  margin: 0;
  padding: 0;
}
.header__action .action__txt_main {
  display: block;
  font-size: 20px;
  font-weight: bold;
  line-height: 0.7;
  margin: 0;
  padding-bottom: 0.7em;
}
.header__action a {
  color: #fff;
}
@media (width <= 768px) {
  .header__action .action__txt_sub {
    font-size: 14px;
  }
  .header__action .action__txt_main {
    font-size: 19px;
  }
}
@media (width <= 570px) {
  .header__action .action__txt_sub {
    display: none;
  }
  .header__action .action__txt_main {
    font-size: 16px;
    line-height: 1.2;
    padding: 0.5em 0 0.5em 0;
  }
}

.br__sl_none {
  display: inline;
}
@media (width <= 570px) {
  .br__sl_none {
    display: none;
  }
}

.header_navi__right_area {
  margin: 0 0 0 auto;
  display: flex;
  gap: 12px;
}
.header_navi__right_area .buger_space {
  margin: 2px 16px 0 auto;
  position: relative;
}
@media (width <= 768px) {
  .header_navi__right_area {
    gap: 12px;
  }
  .header_navi__right_area .buger_space {
    margin: 2px 6px 0 auto;
  }
}
@media (width <= 570px) {
  .header_navi__right_area {
    gap: 6px;
  }
  .header_navi__right_area .buger_space {
    margin: -6px 6px 0 auto;
  }
}
@media (width <= 430px) {
  .header_navi__right_area {
    gap: 4px;
  }
  .header_navi__right_area .buger_space {
    margin: -6px 0 0 auto;
  }
}

footer {
  margin: 0 auto;
  padding: 82px 0;
  background-color: var(--color_main);
  color: #fff;
}
@media (width <= 768px) {
  footer {
    padding: 42px 0 62px 0;
  }
}
@media (width <= 570px) {
  footer {
    padding: 36px 0 62px 0;
  }
}
@media (width <= 430px) {
  footer {
    padding: 22px 0 48px 0;
  }
}
footer p {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
}
@media (width <= 570px) {
  footer p {
    line-height: 1.4;
  }
}
@media (width <= 768px) {
  footer p {
    font-size: 18px;
  }
}
footer strong {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.1;
}
@media (width <= 570px) {
  footer strong {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media (width <= 768px) {
  footer strong {
    font-size: 30px;
  }
}
footer address {
  font-size: 14px;
}
@media (width <= 570px) {
  footer address {
    font-size: 28px;
    line-height: 1.4;
    padding-bottom: 1em;
  }
}
@media (width <= 768px) {
  footer address {
    font-size: 13px;
  }
}
footer .footer__tel {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
}
@media (width <= 768px) {
  footer .footer__tel {
    font-size: 15px;
  }
}
footer a {
  color: #fff;
}
footer small {
  display: inline-block;
  padding-top: 32px;
}
@media (width <= 570px) {
  footer small {
    line-height: 1.7;
  }
}
footer .container__footer {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (width <= 570px) {
  footer .container__footer {
    justify-content: center;
    align-items: center;
  }
}
@media (width <= 1024px) {
  footer .container__footer {
    max-width: 548px;
    display: flex;
    flex-flow: column;
    gap: 24px;
  }
}
@media (width <= 1024px) {
  footer .footer__small_pc {
    display: none;
  }
}
footer .footer__small_other {
  display: none;
}
@media (width <= 1024px) {
  footer .footer__small_other {
    display: inline-block;
    margin-top: 10px;
  }
}
footer .footer__inner {
  width: 1000px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (width <= 570px) {
  footer .footer__inner {
    max-width: 400px;
    display: flex;
    flex-flow: column;
    gap: 18px;
  }
}
@media (width <= 1024px) {
  footer .footer__inner {
    width: auto;
    max-width: 548px;
    display: flex;
    flex-flow: column;
    gap: 24px;
  }
}
footer .container__footer_overview {
  margin: 0 0 0 0;
  padding-right: 5em;
  border-right: 1px solid #00cdc1;
}
@media (width <= 1024px) {
  footer .container__footer_overview {
    width: 100%;
    border-right: none;
  }
}
footer .nav__footer {
  max-width: 1000px;
  margin: 16px auto 0 auto;
}
footer .nav__footer a {
  color: #fff;
}
footer .nav__footer ul {
  font-size: 15px;
  column-count: 2;
}
footer .nav__footer ul li {
  padding: 0 5px 5px 0;
  margin-right: 36px;
}
@media (width <= 768px) {
  footer .nav__footer {
    max-width: 500px;
    margin: 0 auto 0 0;
  }
  footer .nav__footer ul {
    font-size: 14px;
  }
}
@media (width <= 1024px) {
  footer .nav__footer {
    width: 100%;
    max-width: 548px;
    margin: 0 auto 0 0;
  }
  footer .nav__footer ul {
    padding: 2em 0 2em 0;
    border-top: 1px solid #00cdc1;
    border-bottom: 1px solid #00cdc1;
  }
}

.title__shoulder {
  text-align: justify;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  padding-bottom: 8px;
}
@media (width <= 768px) {
  .title__shoulder {
    font-size: 18px;
  }
}

.title__big {
  text-align: justify;
  font-size: 94px;
  font-weight: bold;
  font-family: "YakuHanJP", "Montserrat";
}
@media (width <= 768px) {
  .title__big {
    font-size: 68px;
  }
}
@media (width <= 430px) {
  .title__big {
    font-size: 56px;
  }
}

.title__main_en {
  display: inline-block;
  text-align: justify;
  font-size: 94px;
  font-weight: bold;
  font-family: "YakuHanJP", "Montserrat";
  line-height: 1;
}
@media (width <= 768px) {
  .title__main_en {
    font-size: 68px;
  }
}
@media (width <= 430px) {
  .title__main_en {
    font-size: 56px;
  }
}

.title__main_jp {
  display: inline-block;
  text-align: justify;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-feature-settings: "palt";
  padding-bottom: 20px;
}
@media (width <= 768px) {
  .title__main_jp {
    font-size: 28px;
  }
}
@media (width <= 430px) {
  .title__main_jp {
    font-size: 26px;
  }
}

.title__big__sec {
  text-align: justify;
  font-size: 62px;
  font-weight: bold;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
}
@media (width <= 768px) {
  .title__big__sec {
    font-size: 52px;
  }
}
@media (width <= 570px) {
  .title__big__sec {
    font-size: 46px;
    line-height: 1.3;
  }
}
@media (width <= 430px) {
  .title__big__sec {
    font-size: 40px;
  }
}

.title__third {
  font-size: 50px;
  font-weight: bold;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "Montserrat", "Helvetica Neue", "Helvetica", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
}
@media (width <= 768px) {
  .title__third {
    font-size: 40px;
  }
}
@media (width <= 570px) {
  .title__third {
    font-size: 32px;
  }
}
@media (width <= 430px) {
  .title__third {
    font-size: 26px;
  }
}

.title__eye_catch {
  text-align: justify;
  font-size: 22px;
  font-weight: bold;
  font-family: "Montserrat";
  font-feature-settings: "palt";
  letter-spacing: -0.01em;
}
@media (width <= 768px) {
  .title__eye_catch {
    font-size: 20px;
  }
}
@media (width <= 570px) {
  .title__eye_catch {
    font-size: 18px;
  }
}

.title__sub_jp {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}
@media (width <= 768px) {
  .title__sub_jp {
    font-size: 24px;
  }
}
@media (width <= 570px) {
  .title__sub_jp {
    font-size: 20px;
  }
}
@media (width <= 430px) {
  .title__sub_jp {
    font-size: 18px;
  }
}

.title__name {
  text-align: justify;
  font-size: 16px;
  font-weight: bold;
  font-feature-settings: "palt";
  padding-bottom: 20px;
}
@media (width >= 1024px) {
  .title__name {
    font-size: 20px;
  }
}

.title__heading {
  text-align: justify;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-feature-settings: "palt";
  padding-bottom: 20px;
}

.txt__lead {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.7;
}
@media (width <= 768px) {
  .txt__lead {
    font-size: 20px;
  }
}

.lead {
  font-weight: bold;
  line-height: 1.7;
  font-feature-settings: "palt";
}

.description__sub {
  font-size: 12px;
  line-height: 1.7;
  font-feature-settings: "palt";
}
@media (width >= 768px) {
  .description__sub {
    font-size: 13px;
  }
}
@media (width >= 1024px) {
  .description__sub {
    font-size: 14px;
  }
}

.font_kanji_measure {
  font-family: "Yu Gothic", "Hiragino Sans", "Meiryo", sans-serif;
}

.txt_date {
  font-weight: normal;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.txt_indent_left {
  padding-left: 0.5em;
  display: block;
}

.main_visual {
  width: 100%;
}
.main_visual img {
  width: 100%;
  height: 700px;
}

.main_visual_lg {
  width: 100%;
}
.main_visual_lg .main_img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
@media (width <= 768px) {
  .main_visual_lg .main_img {
    height: 600px;
  }
}
@media (width <= 430px) {
  .main_visual_lg .main_img {
    height: 500px;
  }
}

.img_lg__round {
  border-radius: 48px 0 48px 0;
}

.img_main {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  max-width: 768px;
  height: auto;
  display: block;
}
@media (width >= 768px) {
  .img_main {
    margin: 0 auto;
    margin-left: -30px;
  }
}
@media (width >= 1024px) {
  .img_main {
    max-width: 834px;
    margin-left: -55px;
  }
}

.img_primary {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  max-width: 768px;
  height: auto;
  display: block;
}
@media (width >= 768px) {
  .img_primary {
    margin: 0 auto;
    margin-left: -30px;
  }
}

.img_normal {
  width: 100%;
  max-width: 768px;
  height: auto;
  display: block;
}

.container__main {
  margin: 0 auto;
}

.u-header_t_margin {
  padding-top: 82px;
}
@media (width <= 768px) {
  .u-header_t_margin {
    padding-top: 70px;
  }
}
@media (width <= 430px) {
  .u-header_t_margin {
    padding-top: 70px;
  }
}

.u-pdt82px {
  padding-top: 82px;
}

.container__m1280 {
  max-width: 1280px;
  margin: 0 auto;
}

.container__m1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.container__m824 {
  max-width: 824px;
  margin: 0 auto;
}

.container__m648 {
  max-width: 648px;
  margin: 0 auto;
}
.container__m648_left {
  max-width: 648px;
  margin: 0 auto 0 0;
}

.container__flex_center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.br__sl {
  display: none;
}
@media (width <= 570px) {
  .br__sl {
    display: inline;
  }
}

/***************************************
                その他共通
***************************************/
.container__footer_aside {
  max-width: 1000px;
  margin: 0 auto 62px auto;
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 32px;
}
@media (width <= 570px) {
  .container__footer_aside {
    gap: 20px;
    margin: 0 auto 28px auto;
  }
}
@media (width <= 768px) {
  .container__footer_aside {
    gap: 26px;
    margin: 0 auto 32px auto;
  }
}
@media (width <= 1024px) {
  .container__footer_aside {
    display: flex;
    flex-flow: column;
    gap: 24px;
    margin: 0 10% 62px 10%;
  }
}
.container__footer_aside aside {
  width: 100%;
}
.container__footer_aside .aside_txt {
  display: block;
  font-size: 15px;
  line-height: 1.7;
  padding-top: 0.5em;
}
@media (width <= 768px) {
  .container__footer_aside .aside_txt {
    font-size: 14px;
  }
}
.container__footer_aside_left {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 484px;
  height: 220px;
  padding: 3.5em 5em 3.5em 5em;
  margin: 3em 0 3em 0;
  border-radius: 40px 0 40px 0;
  color: #fff;
  background-color: #66B6C0;
}
.container__footer_aside_left h2 {
  font-size: 34px;
  font-weight: bold;
  line-height: 1.3;
}
@media (width <= 768px) {
  .container__footer_aside_left {
    padding: 2.5em 3.5em 2.5em 3.5em;
  }
  .container__footer_aside_left h2 {
    font-size: 26px;
  }
  .container__footer_aside_left .aside_txt {
    font-size: 14px;
    line-height: 1.3;
  }
}
@media (width <= 1024px) {
  .container__footer_aside_left {
    flex-grow: 1;
    flex-basis: 100%;
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 3em auto 0.5em auto;
  }
}
@media (width <= 430px) {
  .container__footer_aside_left {
    padding: 2em 2.5em 2em 2.5em;
  }
  .container__footer_aside_left h2 {
    font-size: 22px;
  }
  .container__footer_aside_left .aside_txt {
    font-size: 14px;
    line-height: 1.3;
  }
}
.container__footer_aside_right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 484px;
  height: 220px;
  padding: 3.5em 5em 3.5em 5em;
  margin: 3em 0 3em 0;
  border-radius: 40px 0 40px 0;
  color: fff;
  background-color: #66B6C0;
}
.container__footer_aside_right h2 {
  font-size: 34px;
  font-weight: bold;
  line-height: 1.3;
}
@media (width <= 1024px) {
  .container__footer_aside_right {
    flex-grow: 1;
    flex-basis: 100%;
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 3em auto;
  }
}
@media (width <= 768px) {
  .container__footer_aside_right {
    padding: 2.5em 3.5em 2.5em 3.5em;
    margin: 0 auto 1.5em auto;
  }
  .container__footer_aside_right h2 {
    font-size: 26px;
  }
}
@media (width <= 430px) {
  .container__footer_aside_right {
    padding: 2.5em;
    margin: 0 auto 0 auto;
  }
  .container__footer_aside_right h2 {
    font-size: 22px;
  }
  .container__footer_aside_right .aside_txt {
    font-size: 14px;
    line-height: 1.3;
  }
}

.container__other_head {
  background-color: var(--color_main_secon);
}
.container__other_head .container__m1280 {
  padding: 184px 100px 100px 100px;
}
@media (width <= 768px) {
  .container__other_head .container__m1280 {
    padding: 134px 52px 52px 52px;
  }
}
.container__other_head .title__eye_catch {
  line-height: 1;
  margin-bottom: 20px;
}
@media (width <= 768px) {
  .container__other_head .title__eye_catch {
    margin-bottom: 16px;
  }
}
@media (width <= 570px) {
  .container__other_head .title__eye_catch {
    margin-bottom: 12px;
  }
}
.container__other_head p {
  font-weight: bold;
}
.container__other_head h1 {
  line-height: 1;
  margin-bottom: 48px;
}
@media (width <= 768px) {
  .container__other_head h1 {
    margin-bottom: 38px;
  }
}
@media (width <= 570px) {
  .container__other_head h1 {
    margin-bottom: 32px;
    line-height: 1.2;
  }
}
@media (width <= 430px) {
  .container__other_head h1 {
    margin-bottom: 30px;
    line-height: 1.2;
  }
}
.container__other_head ul {
  display: flex;
  gap: 22px;
  row-gap: 10px;
  padding-top: 8px;
}
@media (width <= 768px) {
  .container__other_head ul {
    gap: 18px;
    row-gap: 10px;
  }
}
.container__other_head ul a {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  margin-right: 22px;
}
@media (width <= 768px) {
  .container__other_head ul a {
    flex-wrap: wrap;
    font-size: 14px;
    margin-right: 18px;
  }
}
.container__other_head ul li {
  border-right: 1px solid;
}
.container__other_head ul li:last-child {
  border: none;
}
@media (width <= 768px) {
  .container__other_head ul .border__none {
    border: none;
  }
}
@media (width <= 768px) {
  .container__other_head ul {
    flex-wrap: wrap;
    font-size: 14px;
  }
}

.container__other_normal {
  margin: 136px auto 0 auto;
}
.container__other_normal h2 {
  text-align: center;
  line-height: 1;
  margin-bottom: 18px;
}
.container__other_normal .title__sub_jp {
  text-align: center;
  margin: 0 0 72px 0;
}
.container__other_normal h3 {
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 44px;
}
@media (width <= 768px) {
  .container__other_normal h3 {
    font-size: 22px;
  }
}
@media (width <= 570px) {
  .container__other_normal h3 {
    font-size: 20px;
    margin-bottom: 38px;
  }
}
@media (width <= 430px) {
  .container__other_normal h3 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}

/***************************************
                TOPページ
***************************************/
.main_copy__top {
  margin: 0 auto;
  position: relative;
}
.main_copy__top img {
  position: absolute;
  inset: 125px 0 0 30%;
  z-index: 3;
  animation: fadeIn 5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (width <= 768px) {
  .main_copy__top img {
    inset: 125px 0 0 2%;
    max-width: 292px;
    height: auto;
  }
}
@media (width <= 570px) {
  .main_copy__top img {
    inset: 135px 0 0 2%;
    max-width: 254px;
    height: auto;
  }
}
@media (width <= 430px) {
  .main_copy__top img {
    inset: 85px 0 0 1%;
    max-width: 232px;
    height: auto;
  }
}

.main_visual__top {
  width: 100%;
  height: 700px;
  position: relative;
}
@media (width <= 768px) {
  .main_visual__top {
    height: 650px;
  }
}
@media (width <= 430px) {
  .main_visual__top {
    height: 550px;
  }
}
.main_visual__top img {
  position: absolute;
  width: 100%;
  height: 700px;
  object-fit: cover;
  opacity: 0;
  animation: fade_img_motion 30s infinite;
}
@media (width <= 768px) {
  .main_visual__top img {
    height: 650px;
    object-position: 64.5% center;
  }
}
@media (width <= 430px) {
  .main_visual__top img {
    height: 550px;
    object-position: 63.5% center;
  }
}
.main_visual__top img:nth-of-type(1) {
  animation: fade_img_motion__first 30s infinite;
  animation-delay: 0s;
}
.main_visual__top img:nth-of-type(2) {
  animation-delay: 10s;
}
.main_visual__top img:nth-of-type(3) {
  animation-delay: 20s;
}
@keyframes fade_img_motion__first {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  36% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade_img_motion {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  36% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.main_visual__top_study {
  width: 900px;
  height: 680px;
  position: relative;
}
@media (width <= 768px) {
  .main_visual__top_study {
    width: 100%;
    height: 0;
    padding-top: 75%;
    overflow: hidden;
  }
}
.main_visual__top_study img {
  position: absolute;
  display: block;
  width: 100%;
  height: 680px;
  opacity: 0;
  animation: fade_img_motion 16s infinite;
}
@media (width <= 768px) {
  .main_visual__top_study img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0 0 0 0;
  }
}
.main_visual__top_study img:nth-of-type(1) {
  animation: fade_img_motion__first 16s infinite;
  animation-delay: 0s;
}
.main_visual__top_study img:nth-of-type(2) {
  animation-delay: 8s;
}
@keyframes fade_img_motion__first {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  46% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade_img_motion {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  46% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.main_visual__top_study_sec {
  width: 900px;
  height: 680px;
  position: relative;
}
@media (width <= 768px) {
  .main_visual__top_study_sec {
    width: 100%;
    height: 0;
    padding-top: 75%;
    overflow: hidden;
  }
}
.main_visual__top_study_sec img {
  position: absolute;
  width: 100%;
  height: 680px;
  opacity: 0;
  animation: fade_img_motion 16s infinite;
}
@media (width <= 768px) {
  .main_visual__top_study_sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0 0 0 0;
  }
}
.main_visual__top_study_sec img:nth-of-type(1) {
  animation: fade_img_motion__first 16s infinite;
  animation-delay: 0s;
}
.main_visual__top_study_sec img:nth-of-type(2) {
  animation-delay: 8s;
}
@keyframes fade_img_motion__first {
  0% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  46% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade_img_motion {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  46% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.container__top {
  width: 100%;
  margin: 0 auto;
}
.container__top_mission {
  position: relative;
  max-width: 648px;
  margin: 136px auto 82px auto;
  padding: 0 0 68px 0;
}
@media (width <= 768px) {
  .container__top_mission {
    margin: 90px 8% 52px 8%;
    padding: 0 0 38px 0;
  }
}
.container__top_mission .title__shoulder {
  font-size: 28px;
  text-align: center;
}
.container__top_mission .txt__lead {
  text-align: center;
}
.container__top_about {
  max-width: 648px;
  margin: 0 auto;
  padding: 0 0 124px 0;
  display: flex;
  flex-flow: column;
}
@media (width <= 768px) {
  .container__top_about {
    margin: 0 8%;
    padding: 0 0 80px 0;
  }
}
@media (width <= 430px) {
  .container__top_about {
    margin: 0 8%;
    padding: 0 0 62px 0;
  }
}
.container__top_about .title__main_en {
  display: block;
  text-align: center;
  margin-bottom: 8px;
}
@media (width <= 430px) {
  .container__top_about .title__main_en {
    margin-bottom: 8px;
  }
}
.container__top_about .title__main_jp {
  display: block;
  text-align: center;
}
.container__top_about p {
  max-width: 648px;
  padding-bottom: 32px;
}
.container__top_about .right {
  margin: 0 0 0 auto;
}
.container__top_about .button_normal {
  margin: 0 0 68px auto;
  font-weight: bold;
}
.container__top_study {
  position: relative;
  padding-top: 52px;
}
.container__top_study .title__main_en {
  z-index: 1;
  display: inline-block;
  max-height: 150px;
  text-align: center;
  position: absolute;
  inset: 6px 0 0;
}
@media (width <= 768px) {
  .container__top_study .title__main_en {
    inset: 22px 0 0;
  }
}
@media (width <= 430px) {
  .container__top_study .title__main_en {
    inset: 26px 0 0;
  }
}
.container__top_study .title__study_sub_en {
  font-size: 56px;
  font-weight: bold;
  font-family: "YakuHanJP", "Montserrat", sans-serif;
  display: block;
  line-height: 1;
  margin: 48px 0 24px 0;
}
@media (width <= 768px) {
  .container__top_study .title__study_sub_en {
    font-size: 48px;
    margin: 38px 0 18px 0;
  }
}
@media (width <= 430px) {
  .container__top_study .title__study_sub_en {
    font-size: 42px;
    margin: 32px 0 16px 0;
  }
}
.container__top_study .title__study_sub_jp {
  font-size: 32px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "Montserrat", "Helvetica Neue", "Helvetica", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  display: block;
  line-height: 1;
  margin: 0 0 38px 0;
}
@media (width <= 768px) {
  .container__top_study .title__study_sub_jp {
    font-size: 26px;
    margin: 0 0 28px 0;
  }
}
@media (width <= 430px) {
  .container__top_study .title__study_sub_jp {
    font-size: 24px;
    margin: 0 0 26px 0;
  }
}
.container__top_study p {
  max-width: 504px;
  padding-bottom: 52px;
}
@media (width <= 768px) {
  .container__top_study p {
    width: 100%;
  }
}
.container__top_study_merit {
  color: #fff;
  margin: 0 auto 0 auto;
  padding: 180px 0 0 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 32px;
  background-color: #009D97;
}
@media (width <= 1024px) {
  .container__top_study_merit {
    gap: 22px;
  }
}
@media (width <= 768px) {
  .container__top_study_merit {
    flex-direction: column-reverse;
    gap: 0px;
    padding: 130px 0 62px 0;
  }
}
.container__top_study_merit .u-layout__right {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  max-width: 504px;
  width: auto;
  padding: 38px 3% 0 0;
  margin: 0 auto 0 32px;
}
@media (width <= 1024px) {
  .container__top_study_merit .u-layout__right {
    padding: 26px 3% 0 0;
    margin: 0 auto 0 24px;
  }
}
@media (width <= 768px) {
  .container__top_study_merit .u-layout__right {
    width: 100%;
    padding: 26px 8% 0 8%;
    margin: 0 auto 0 auto;
  }
  .container__top_study_merit .u-layout__right p {
    margin: 0;
    padding: 0 0 38px;
  }
}
.container__top_study_merit .study_right_button {
  position: relative;
  z-index: 6;
}
@media (width <= 768px) {
  .container__top_study_merit .study_right_button {
    text-align: right;
  }
}
.container__top_study_merit .u-layout__left {
  width: auto;
  max-width: 55vw;
}
@media (width <= 1024px) {
  .container__top_study_merit .u-layout__left {
    max-width: 45vw;
  }
}
@media (width <= 768px) {
  .container__top_study_merit .u-layout__left {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
.container__top_study_merit .u-layout__left img {
  border-radius: 0 100px 0 0;
  width: auto;
  max-width: 55vw;
  object-fit: cover;
}
@media (width <= 1024px) {
  .container__top_study_merit .u-layout__left img {
    max-width: 45vw;
  }
}
@media (width <= 768px) {
  .container__top_study_merit .u-layout__left img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 32px 0;
  }
}
.container__top_study_merit .button_normal {
  font-weight: bold;
  color: #fff;
  border: 1px solid #fff;
  position: relative;
}
.container__top_study_strengths {
  margin: 0 auto 0 auto;
  padding-bottom: 148px;
  display: flex;
  justify-content: space-between;
  align-self: stretch;
  gap: 32px;
  background-color: #B7DEDC;
}
@media (width <= 1024px) {
  .container__top_study_strengths {
    gap: 24px;
  }
}
@media (width <= 768px) {
  .container__top_study_strengths {
    flex-direction: column-reverse;
    padding: 68px 0 128px 0;
  }
}
.container__top_study_strengths .u-layout__right {
  display: flex;
  flex-direction: column;
  max-width: 504px;
  width: auto;
  padding: 38px 0 0 3%;
  margin: 0 32px 0 auto;
}
@media (width <= 1024px) {
  .container__top_study_strengths .u-layout__right {
    margin: 0 24px 0 auto;
  }
}
@media (width <= 768px) {
  .container__top_study_strengths .u-layout__right {
    width: 100%;
    padding: 0 8% 0 8%;
  }
  .container__top_study_strengths .u-layout__right p {
    margin: 0;
    padding: 0 0 38px;
  }
}
.container__top_study_strengths .u-layout__left {
  width: auto;
  max-width: 55vw;
}
@media (width <= 1024px) {
  .container__top_study_strengths .u-layout__left {
    max-width: 45vw;
    overflow: hidden;
  }
}
@media (width <= 768px) {
  .container__top_study_strengths .u-layout__left {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}
.container__top_study_strengths .u-layout__left img {
  border-radius: 100px 0 0 0;
  width: auto;
  max-width: 55vw;
  object-fit: cover;
}
@media (width <= 1024px) {
  .container__top_study_strengths .u-layout__left img {
    width: 100%;
    max-width: 45vw;
  }
}
@media (width <= 768px) {
  .container__top_study_strengths .u-layout__left img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 24px 0;
  }
}
.container__top_study_strengths .right {
  text-align: right;
  margin: 0 0 0 auto;
}
@media (width <= 768px) {
  .container__top_study_strengths .right {
    margin: 0 0 0 auto;
  }
}
.container__top_study_strengths .button_normal {
  font-weight: bold;
  position: relative;
}
.container__top_school {
  max-width: 1000px;
  margin: 0 auto 0 auto;
  position: relative;
  padding: 82px 0 148px 0;
}
@media (width <= 768px) {
  .container__top_school {
    margin: 0 8% 0 8%;
    padding: 62px 0 128px 0;
  }
}
@media (width <= 430px) {
  .container__top_school {
    margin: 0 8% 0 8%;
    padding: 58px 0 98px 0;
  }
}
.container__top_school .title__main_en {
  display: block;
  text-align: center;
  position: absolute;
  inset: -42px 0 0 0;
}
@media (width <= 768px) {
  .container__top_school .title__main_en {
    inset: -38px 0 0 0;
  }
}
@media (width <= 430px) {
  .container__top_school .title__main_en {
    inset: -28px 0 0 0;
  }
}
.container__top_school .title__main_jp {
  font-size: 32px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "Montserrat", "Helvetica Neue", "Helvetica", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  display: block;
  line-height: 1;
  margin: -20px auto 48px auto;
  text-align: center;
}
@media (width <= 768px) {
  .container__top_school .title__main_jp {
    font-size: 26px;
    margin: -20px auto 48px auto;
  }
}
.container__top_school .title__study_sub_en {
  font-size: 60px;
  font-weight: bold;
  font-family: "YakuHanJP", "Montserrat", sans-serif;
  display: block;
  line-height: 1;
  margin: 48px 0 24px 0;
}
@media (width <= 768px) {
  .container__top_school .title__study_sub_en {
    font-size: 48px;
  }
}
.container__top_school .img__rounded {
  display: inline-block;
  border-radius: 70px 0 70px 0;
  margin: 0 auto 62px auto;
}
@media (width <= 768px) {
  .container__top_school .img__rounded {
    width: 100%;
    height: auto;
    border-radius: 60px 0 60px 0;
    margin: 0 auto 48px auto;
  }
}
.container__top_school p {
  max-width: 648px;
  margin: 0;
  padding-bottom: 32px;
}
.container__top_school .container__m648 .right {
  text-align: right;
  margin-top: 32px;
}
.container__top_school .container__m648 .button_normal {
  font-weight: bold;
  position: relative;
}
.container__top_interview {
  margin: 0 auto 0 auto;
  position: relative;
  padding: 128px 0 132px 0;
  background-color: #EFF4F6;
}
@media (width <= 768px) {
  .container__top_interview {
    padding: 118px 0 122px 0;
  }
}
.container__top_interview .title__main_en {
  display: block;
  text-align: center;
  position: absolute;
  inset: -42px 0 0 0;
}
@media (width <= 768px) {
  .container__top_interview .title__main_en {
    inset: -36px 0 0 0;
  }
}
@media (width <= 430px) {
  .container__top_interview .title__main_en {
    inset: -28px 0 0 0;
  }
}
.container__top_interview .title__main_jp {
  font-size: 32px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "Montserrat", "Helvetica Neue", "Helvetica", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  display: block;
  line-height: 1;
  margin: 0 auto 38px auto;
  text-align: center;
  position: absolute;
  inset: 62px 0 0 0;
}
@media (width <= 768px) {
  .container__top_interview .title__main_jp {
    font-size: 26px;
    inset: 72px 0 0 0;
    margin: -26px auto 38px auto;
  }
}
.container__top_interview .container__interview_img {
  max-width: 1280px;
  margin: 62px auto 0 auto;
  display: flex;
  justify-content: center;
}
.container__top_interview .container__interview_img .img {
  border-radius: 50px 0 50px 0;
  margin-right: 12px;
}
.container__top_interview .container__m648 {
  margin: 32px auto 0 auto;
}
@media (width <= 768px) {
  .container__top_interview .container__m648 {
    margin: 32px 8% 0 8%;
  }
}
.container__top_interview .container__m648 h3 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
@media (width <= 768px) {
  .container__top_interview .container__m648 h3 {
    font-size: 28px;
  }
}
@media (width <= 430px) {
  .container__top_interview .container__m648 h3 {
    font-size: 26px;
  }
}
.container__top_interview .container__m648 p {
  max-width: 648px;
}
.container__top_interview .container__m648 .right {
  text-align: right;
  margin-top: 48px;
}
.container__top_interview .container__m648 .button_normal {
  font-weight: bold;
  position: relative;
}
.container__top_topics {
  max-width: 1000px;
  margin: 0 auto 0 auto;
  position: relative;
  padding: 82px 0 132px 0;
}
@media (width <= 768px) {
  .container__top_topics {
    padding: 72px 0 122px 0;
    margin: 0 8% 0 8%;
  }
}
@media (width <= 430px) {
  .container__top_topics {
    padding: 62px 0 72px 0;
    margin: 0 8% 0 8%;
  }
}
.container__top_topics .title {
  z-index: 0;
}
.container__top_topics .title__main_en {
  display: block;
  text-align: center;
  position: absolute;
  inset: -42px 0 0 0;
  z-index: 0;
}
@media (width <= 768px) {
  .container__top_topics .title__main_en {
    inset: -38px 0 0 0;
  }
}
@media (width <= 430px) {
  .container__top_topics .title__main_en {
    inset: -28px 0 0 0;
  }
}
.container__top_topics .title__main_jp {
  font-size: 32px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "Montserrat", "Helvetica Neue", "Helvetica", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  display: block;
  line-height: 1;
  margin: 0 auto 38px auto;
  text-align: center;
  position: absolute;
  inset: 62px 0 0 0;
  z-index: 0;
}
@media (width <= 768px) {
  .container__top_topics .title__main_jp {
    font-size: 26px;
    margin: -20px auto 38px auto;
  }
}
.container__top_topics .container__m648 {
  margin: 32px auto 0 auto;
  z-index: 10;
  position: relative;
}
.container__top_topics .container__m648 ul li {
  padding: 24px 0;
  border-bottom: 1px dotted #3e3a39;
}
@media (width <= 768px) {
  .container__top_topics .container__m648 ul li {
    padding: 24px 0;
  }
}
.container__top_topics .container__m648 .right {
  text-align: right;
  margin-top: 52px;
}
@media (width <= 768px) {
  .container__top_topics .container__m648 .right {
    margin-top: 52px;
  }
}
.container__top_topics .container__m648 .page_navigation_set {
  padding: 15px 0;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
}
.container__top_topics .container__m648 .page_navigation_set a {
  padding: 5px 10px;
}
.container__top_topics .container__m648 .button_normal {
  font-weight: bold;
  position: relative;
}

.container__topics_airticle {
  margin: 120px auto;
}
@media (width <= 768px) {
  .container__topics_airticle {
    margin: 100px auto;
  }
}
@media (width <= 570px) {
  .container__topics_airticle {
    margin: 72px auto;
  }
}
@media (width <= 768px) {
  .container__topics_airticle .container__m648 {
    width: 80%;
  }
}
.container__topics_airticle .container__m648 .date_category {
  display: flex;
  gap: 1.25em;
  text-align: justify;
  font-size: 18px;
  margin: 0;
  padding: 0 0 1.5em 0;
  font-weight: bold;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
}
@media (width <= 768px) {
  .container__topics_airticle .container__m648 .date_category {
    font-size: 15px;
  }
}
@media (width <= 570px) {
  .container__topics_airticle .container__m648 .date_category {
    font-size: 14px;
  }
}
.container__topics_airticle .container__m648 h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.5;
  margin: 0;
  padding: 0 0 1.5em 0;
}
@media (width <= 768px) {
  .container__topics_airticle .container__m648 h2 {
    font-size: 32px;
  }
}
@media (width <= 570px) {
  .container__topics_airticle .container__m648 h2 {
    font-size: 24px;
  }
}
.container__topics_airticle .container__m648 p {
  margin: 0;
  padding: 0;
}
.container__topics_airticle .container__m648 .category {
  padding: 0em 1em 0em 1em;
  background-color: #06e9e0;
  font-size: 15px;
  line-height: 2.2;
  font-weight: bold;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
}
@media (width <= 768px) {
  .container__topics_airticle .container__m648 .category {
    font-size: 14px;
  }
}
@media (width <= 570px) {
  .container__topics_airticle .container__m648 .category {
    font-size: 14px;
  }
}
.container__topics_airticle .container__m648 img {
  margin: 56px 0;
  padding: 0;
  width: 100%;
}
.container__topics_airticle .container__m648 .right {
  display: flex;
  justify-content: flex-end;
  margin-top: 6em;
}

/***************************************
                協会について
***************************************/
.container__about_mission {
  margin: 136px auto 0 auto;
}
.container__about_mission h2 {
  text-align: center;
  line-height: 1;
  margin-bottom: 18px;
}
.container__about_mission .title__sub_jp {
  text-align: center;
  margin: 0 0 72px 0;
}
.container__about_mission h3 {
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 44px;
}
@media (width <= 768px) {
  .container__about_mission h3 {
    font-size: 22px;
  }
}
@media (width <= 570px) {
  .container__about_mission h3 {
    font-size: 20px;
    margin-bottom: 38px;
  }
}
@media (width <= 430px) {
  .container__about_mission h3 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}
@media (width <= 768px) {
  .container__about_mission {
    margin: 100px auto 0 auto;
  }
}
@media (width <= 768px) {
  .container__about_mission .container__m648 {
    width: 398px;
  }
}
@media (width <= 430px) {
  .container__about_mission .container__m648 {
    width: 328px;
  }
}

.container__other_bg-img {
  width: 100%;
  height: auto;
  background: url(../img/about_bg_visual_lg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 136px;
  margin-top: 136px;
}
@media (width <= 768px) {
  .container__other_bg-img {
    padding: 46px;
    margin-top: 90px;
  }
}
@media (width <= 430px) {
  .container__other_bg-img {
    padding: 24px;
    margin-top: 60px;
  }
}
.container__other_bg-img .container__m1000 {
  padding: 128px 88px 88px 88px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
}
@media (width <= 768px) {
  .container__other_bg-img .container__m1000 {
    padding: 88px 48px 48px 48px;
  }
}
@media (width <= 768px) {
  .container__other_bg-img .container__m1000 {
    padding: 88px 32px 42px 32px;
  }
}
.container__other_bg-img h2 {
  text-align: center;
  line-height: 1;
  margin-bottom: 18px;
}
.container__other_bg-img .title__sub_jp {
  text-align: center;
  margin: 0 0 72px 0;
}
.container__other_bg-img h3 {
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 44px;
}
@media (width <= 768px) {
  .container__other_bg-img h3 {
    font-size: 22px;
  }
}
@media (width <= 570px) {
  .container__other_bg-img h3 {
    font-size: 20px;
    margin-bottom: 38px;
  }
}
@media (width <= 430px) {
  .container__other_bg-img h3 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}
.container__other_bg-img p :last-child {
  display: flex;
}
.container__other_bg-img .container__m648 {
  display: flex;
  flex-flow: column;
}
.container__other_bg-img .inner__name {
  padding: 62px 0;
  margin: 0 0 0 auto;
  font-weight: bold;
}
@media (width <= 768px) {
  .container__other_bg-img .inner__name {
    padding: 32px 0;
  }
}
.container__other_bg-img .inner__name span {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
}
@media (width <= 768px) {
  .container__other_bg-img .inner__name span {
    font-size: 22px;
  }
}
.container__other_bg-img .inner__name .inner__name_sub {
  font-size: 20px;
}
@media (width <= 768px) {
  .container__other_bg-img .inner__name .inner__name_sub {
    font-size: 18px;
  }
}

.container__about_overview {
  padding: 136px 0 136px 0;
  background-color: var(--color_main_secon);
}
.container__about_overview h2 {
  text-align: center;
  line-height: 1;
  margin-bottom: 18px;
}
.container__about_overview .title__sub_jp {
  text-align: center;
  margin: 0 0 72px 0;
}
.container__about_overview h3 {
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 44px;
}
@media (width <= 768px) {
  .container__about_overview h3 {
    font-size: 22px;
  }
}
@media (width <= 570px) {
  .container__about_overview h3 {
    font-size: 20px;
    margin-bottom: 38px;
  }
}
@media (width <= 430px) {
  .container__about_overview h3 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}
@media (width <= 768px) {
  .container__about_overview {
    padding: 90px 0 90px 0;
  }
}
@media (width <= 430px) {
  .container__about_overview {
    padding: 62px 0 62px 0;
  }
}
.container__about_overview .container__m1000 {
  padding: 122px 88px 132px 88px;
  background-color: #fff;
  border-radius: 40px;
}
@media (width <= 1024px) {
  .container__about_overview .container__m1000 {
    padding: 100px 68px 112px 68px;
    max-width: 768px;
  }
}
@media (width <= 768px) {
  .container__about_overview .container__m1000 {
    padding: 68px 38px 72px 38px;
    max-width: 478px;
  }
}
@media (width <= 570px) {
  .container__about_overview .container__m1000 {
    padding: 58px 28px 62px 28px;
    max-width: 400px;
  }
}
@media (width <= 430px) {
  .container__about_overview .container__m1000 {
    padding: 58px 28px 62px 28px;
    max-width: 338px;
  }
}
.container__about_overview ul li + li {
  padding: 42px 0 0 0;
}
@media (width <= 768px) {
  .container__about_overview ul li + li {
    padding: 32px 0 0 0;
  }
}
.container__about_overview ul li:last-child {
  padding: 42px 0 0 0;
}
@media (width <= 768px) {
  .container__about_overview ul li:last-child {
    padding: 32px 0 0 0;
  }
}
.container__about_overview dl {
  display: flex;
  align-items: flex-end;
}
.container__about_overview dl dt {
  width: 20%;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #3e3a39;
  margin: 0 30px 0 0;
  padding: 10px 0 6px 0;
}
@media (width <= 768px) {
  .container__about_overview dl dt {
    font-size: 16px;
    margin: 0 16px 0 0;
  }
}
@media (width <= 570px) {
  .container__about_overview dl dt {
    font-size: 16px;
    margin: 0 12px 0 0;
  }
}
.container__about_overview dl dd {
  width: 80%;
  border-bottom: 1px solid #3e3a39;
  padding: 10px 0 8px 0;
}
@media (width <= 768px) {
  .container__about_overview dl dd {
    font-size: 15px;
  }
}
.container__about_overview dl:last-child {
  border: none;
}
@media (width <= 768px) {
  .container__about_overview .container__m648 {
    max-width: 428px;
  }
}

.container__about_link {
  margin: 0 auto 0 auto;
  padding: 128px 0 128px 0;
}
.container__about_link h2 {
  text-align: center;
  line-height: 1;
  margin-bottom: 18px;
}
.container__about_link .title__sub_jp {
  text-align: center;
  margin: 0 0 72px 0;
}
.container__about_link h3 {
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 44px;
}
@media (width <= 768px) {
  .container__about_link h3 {
    font-size: 22px;
  }
}
@media (width <= 570px) {
  .container__about_link h3 {
    font-size: 20px;
    margin-bottom: 38px;
  }
}
@media (width <= 430px) {
  .container__about_link h3 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}
.container__about_link .container__flex_center {
  font-weight: bold;
}
@media (width <= 768px) {
  .container__about_link {
    padding: 82px 0 82px 0;
  }
}
@media (width <= 430px) {
  .container__about_link {
    padding: 62px 0 62px 0;
  }
}

/***************************************
                学校紹介
***************************************/
.container__school {
  width: 100%;
  height: auto;
  background-color: #EFF4F6;
  padding: 88px;
}
@media (width <= 768px) {
  .container__school {
    padding: 78px 48px;
  }
}
@media (width <= 430px) {
  .container__school {
    padding: 62px 28px;
  }
}
@media (width <= 430px) {
  .container__school .container__m648 .title__third {
    font-size: 36px;
  }
}
.container__school .container__m1000 {
  padding: 88px 88px 88px 88px;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
  border-radius: 40px;
}
@media (width <= 768px) {
  .container__school .container__m1000 {
    padding: 12%;
  }
}
@media (width <= 430px) {
  .container__school .container__m1000 {
    padding: 12% 8% 12% 8%;
  }
}
.container__school h2 {
  font-size: 50px;
  text-align: center;
  line-height: 1;
  margin-bottom: 38px;
}
@media (width <= 768px) {
  .container__school h2 {
    font-size: 42px;
    margin-bottom: 28px;
  }
}
.container__school .title__sub_jp {
  text-align: center;
  margin: 0 0 68px 0;
}
@media (width <= 768px) {
  .container__school .title__sub_jp {
    margin: 0 0 58px 0;
  }
}
@media (width <= 570px) {
  .container__school .title__sub_jp {
    margin: 0 0 38px 0;
  }
}
.container__school h3 {
  font-size: 32px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 38px;
}
@media (width <= 768px) {
  .container__school h3 {
    font-size: 26px;
    line-height: 1.5;
    text-indent: -1em;
    padding-left: 1em;
  }
}
.container__school .container__m824 {
  display: flex;
  flex-flow: column;
}
.container__school section + section {
  margin: 36px 0 0;
}
.container__school ul li {
  padding: 36px 0 36px 0;
  border-top: 1px solid #3e3a39;
}
.container__school ul li:nth-of-type(odd) {
  background-color: #F8FDFF;
}
.container__school ul li:last-child {
  border-bottom: 1px solid #3e3a39;
}
.container__school dl dt {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media (width <= 768px) {
  .container__school dl dt {
    font-size: 18px;
    line-height: 1.5;
    margin-right: 12%;
  }
}
.container__school dl dd {
  display: flex;
  justify-content: space-between;
  margin-right: 24px;
  gap: 8px;
}
@media (width <= 768px) {
  .container__school dl dd {
    font-size: 14px;
    margin-right: 2%;
  }
}

.container__school_sec {
  width: 100%;
  height: auto;
  background-color: #06e9e0;
  padding: 88px;
}
@media (width <= 768px) {
  .container__school_sec {
    padding: 78px 48px;
  }
}
@media (width <= 430px) {
  .container__school_sec {
    padding: 62px 28px;
  }
}
@media (width <= 430px) {
  .container__school_sec .container__m824 .title__third {
    font-size: 36px;
  }
}
.container__school_sec .container__m1000 {
  padding: 88px 88px 88px 88px;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
  border-radius: 40px;
}
@media (width <= 768px) {
  .container__school_sec .container__m1000 {
    padding: 12%;
  }
}
@media (width <= 430px) {
  .container__school_sec .container__m1000 {
    padding: 12% 8% 12% 8%;
  }
}
.container__school_sec h2 {
  font-size: 50px;
  text-align: center;
  line-height: 1;
  margin-bottom: 38px;
}
@media (width <= 768px) {
  .container__school_sec h2 {
    font-size: 42px;
    margin-bottom: 28px;
  }
}
.container__school_sec .title__sub_jp {
  text-align: center;
  margin: 0 0 68px 0;
}
@media (width <= 768px) {
  .container__school_sec .title__sub_jp {
    margin: 0 0 58px 0;
  }
}
@media (width <= 570px) {
  .container__school_sec .title__sub_jp {
    margin: 0 0 38px 0;
  }
}
.container__school_sec h3 {
  font-size: 32px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 38px;
}
@media (width <= 768px) {
  .container__school_sec h3 {
    font-size: 26px;
    line-height: 1.5;
    text-indent: -1em;
    padding-left: 1em;
  }
}
.container__school_sec .container__m824 {
  display: flex;
  flex-flow: column;
}
.container__school_sec ul li {
  padding: 36px 0 36px 0;
  border-top: 1px solid #3e3a39;
}
.container__school_sec ul li:nth-of-type(odd) {
  background-color: #F8FDFF;
}
.container__school_sec ul li:last-child {
  border-bottom: 1px solid #3e3a39;
}
.container__school_sec dl dt {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media (width <= 768px) {
  .container__school_sec dl dt {
    font-size: 18px;
    line-height: 1.5;
    margin-right: 12%;
  }
}
.container__school_sec dl dd {
  display: flex;
  justify-content: space-between;
  margin-right: 24px;
  gap: 8px;
}
@media (width <= 768px) {
  .container__school_sec dl dd {
    font-size: 14px;
    margin-right: 2%;
  }
}

.school__heading_margin_lg {
  margin-bottom: 82px;
}
@media (width <= 430px) {
  .school__heading_margin_lg {
    margin-bottom: 38px;
  }
}

.school__heading_margin_md {
  margin-bottom: 60px;
}
@media (width <= 430px) {
  .school__heading_margin_md {
    margin-bottom: 38px;
  }
}

.school__heading_margin_sm {
  margin-bottom: 38px;
}
@media (width <= 430px) {
  .school__heading_margin_sm {
    margin-bottom: 28px;
  }
}

/***************************************
                資料請求
***************************************/
.container__request {
  width: 100%;
  height: auto;
  background-color: #EFF4F6;
  padding: 136px;
}
.container__request .container__m1000 {
  padding: 128px 100px 100px 100px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
}
.container__request h2 {
  text-align: center;
  line-height: 1;
  margin-bottom: 18px;
}
.container__request .title__sub_jp {
  text-align: center;
  margin: 0 0 72px 0;
}
.container__request h3 {
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 44px;
}
@media (width <= 768px) {
  .container__request h3 {
    font-size: 22px;
  }
}
@media (width <= 570px) {
  .container__request h3 {
    font-size: 20px;
    margin-bottom: 38px;
  }
}
@media (width <= 430px) {
  .container__request h3 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}

.container__request_t {
  width: 100%;
  height: auto;
  background-color: #EFF4F6;
  padding: 136px;
}
@media (width <= 1024px) {
  .container__request_t {
    padding: 90px 8% 90px 8%;
  }
}
@media (width <= 768px) {
  .container__request_t {
    padding: 90px 8% 90px 8%;
  }
}
@media (width <= 430px) {
  .container__request_t {
    padding: 78px 8% 62px 8%;
  }
}
.container__request_t .container__m1000 {
  padding: 128px 88px 88px 88px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
}
@media (width <= 768px) {
  .container__request_t .container__m1000 {
    padding: 90px 8% 90px 8%;
  }
}
@media (width <= 768px) {
  .container__request_t .container__m1000 {
    padding: 78px 8% 58px 8%;
  }
}
.container__request_t h2 {
  text-align: center;
  line-height: 1;
  margin-bottom: 18px;
}
.container__request_t .title__sub_jp {
  text-align: center;
  margin: 0 0 72px 0;
}
.container__request_t h3 {
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 44px;
}
@media (width <= 768px) {
  .container__request_t h3 {
    font-size: 22px;
  }
}
@media (width <= 570px) {
  .container__request_t h3 {
    font-size: 20px;
    margin-bottom: 38px;
  }
}
@media (width <= 430px) {
  .container__request_t h3 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}
.container__request_t .form_head {
  margin-bottom: 76px;
}
@media (width <= 768px) {
  .container__request_t .form_head {
    margin-bottom: 58px;
  }
}
.container__request_t ul {
  width: 100%;
  max-width: 824px;
  column-count: 2;
  column-width: 100%;
  column-gap: 20px;
  margin-bottom: 30px;
}
@media (width <= 1024px) {
  .container__request_t ul {
    column-count: 1;
  }
}
@media (width <= 768px) {
  .container__request_t ul {
    column-count: 1;
    margin-bottom: 20px;
  }
}
.container__request_t ul li {
  padding-top: 16px;
  text-indent: -2em;
  padding-left: 2em;
}

.container__border {
  margin: 50px auto o auto;
  padding: 68px 0;
  border-top: 2px solid #3e3a39;
  border-bottom: 2px solid #3e3a39;
}
@media (width <= 768px) {
  .container__border {
    padding: 48px 0;
  }
}
.container__border p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 38px;
}
@media (width <= 768px) {
  .container__border p {
    font-size: 18px;
    margin-bottom: 32px;
  }
}

input[type=text]:required,
input[type=email]:required,
select:required,
input[type=text]:user-invalid,
input[type=tel]:user-invalid,
input[type=email]:user-invalid,
select:user-invalid,
textarea:user-invalid {
  color: #a90629;
  border-color: #a90629;
}

.form__item {
  margin: 0 auto;
  padding: 68px 0;
}
@media (width <= 768px) {
  .form__item {
    padding: 38px 0;
  }
}
.form__item p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 38px;
}
@media (width <= 768px) {
  .form__item p {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
.form__item .form__required {
  padding: 6px 10px;
  background-color: #d80c18;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}
@media (width <= 768px) {
  .form__item .form__required {
    padding: 2px 10px;
    max-width: 46px;
    max-height: 28px;
  }
}
.form__item .form__list_right {
  text-align: right;
  padding-right: 16px;
}
@media (width <= 768px) {
  .form__item .form__list_right {
    padding-right: 0;
  }
}
.form__item .from__list {
  width: 66%;
}
.form__item table {
  width: 100%;
  text-align: left;
}
@media (width <= 768px) {
  .form__item table {
    font-size: 14px;
  }
}
.form__item table tr {
  width: 100%;
}
.form__item table th {
  font-size: 18px;
  font-weight: bold;
  padding: 20px 20px 20px 0;
  display: flex;
  justify-content: space-between;
}
@media (width <= 768px) {
  .form__item table th {
    font-size: 16px;
    padding: 26px 0 6px 0;
  }
}
@media (width <= 768px) {
  .form__item table td {
    font-size: 14px;
    display: block;
  }
}
.form__item table td input {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
}
.form__item table td select {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  color: #3e3a39;
  border: 1px solid #ccc;
  background-color: #fff;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
}
@media (width <= 768px) {
  .form__item table td select {
    width: 100%;
  }
}
.form__item table td .select_box {
  position: relative;
  width: 100%;
}
.form__item table td .select_box::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #3e3a39;
  border-bottom: 1px solid #3e3a39;
  transform: rotate(45deg);
}
.form__item table td textarea {
  width: 100%;
  min-height: 150px;
  padding: 14px;
  margin: 20px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
}
@media (width <= 768px) {
  .form__item table td textarea {
    margin: 0;
  }
}
@media (width <= 768px) {
  .form__item table th + td {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.form__notes {
  max-width: 648px;
  margin: 0 auto;
}
.form__notes p {
  font-size: 14px;
  max-width: 648px;
  margin-bottom: 48px;
}
.form__notes label {
  display: inline-block;
  font-weight: bold;
  margin: 0 auto 42px auto;
}
.form__notes div {
  text-align: center;
}

.form__button {
  max-width: 648px;
  margin: 48px auto;
  text-align: center;
}
@media (width <= 430px) {
  .form__button {
    margin: 28px auto;
  }
}
.form__button .button_normal {
  color: #3e3a39;
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
}
.form__button .button_link {
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
}

input[type=checkbox] {
  margin-right: 0.5em;
  border: 1px solid #ccc;
  inline-size: 22px;
  block-size: 22px;
  vertical-align: middle;
  border-radius: 2px;
}

.container__request_sec .container__m1000 {
  padding: 128px 100px 100px 100px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
}
.container__request_sec h2 {
  text-align: center;
  line-height: 1;
  margin-bottom: 18px;
}
.container__request_sec .title__sub_jp {
  text-align: center;
  margin: 0 0 72px 0;
}
.container__request_sec h3 {
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 44px;
}
@media (width <= 768px) {
  .container__request_sec h3 {
    font-size: 22px;
  }
}
@media (width <= 570px) {
  .container__request_sec h3 {
    font-size: 20px;
    margin-bottom: 38px;
  }
}
@media (width <= 430px) {
  .container__request_sec h3 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}
.container__request_sec .container__m648 {
  display: flex;
  flex-flow: column;
}
.container__request_sec ul li {
  padding: 36px 0 36px 0;
  border-bottom: 1px solid #3e3a39;
}
.container__request_sec dl dt {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
.container__request_sec dl dd {
  display: flex;
  justify-content: space-between;
}

.container__m824 .form_container__first {
  width: 100%;
  max-width: 824px;
  column-count: 2;
  column-gap: 20px;
  margin-bottom: 30px;
}
@media (width <= 1024px) {
  .container__m824 .form_container__first {
    column-count: 1;
  }
}
@media (width <= 768px) {
  .container__m824 .form_container__first {
    column-count: 1;
    margin-bottom: 20px;
  }
}
.container__m824 .form_container__first .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
  display: block;
  margin-bottom: 1em;
}

.container__m824 .form__guide {
  font-size: 20px;
  padding: 68px 0 0 0;
  font-weight: bold;
  margin-bottom: 38px;
}
@media (width <= 768px) {
  .container__m824 .form__guide {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
.container__m824 .form_container__second {
  width: 100%;
  max-width: 824px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (width <= 768px) {
  .container__m824 .form_container__second {
    margin-bottom: 20px;
  }
}
.container__m824 .form_container__second .form_li {
  padding: 0;
  text-indent: 0;
}
.container__m824 .form_container__second label, .container__m824 .form_container__second li {
  width: 100%;
  max-width: 824px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 768px) {
  .container__m824 .form_container__second label, .container__m824 .form_container__second li {
    font-size: 14px;
    flex-direction: column;
    gap: 12px;
  }
}
.container__m824 .form_container__second label .form_list, .container__m824 .form_container__second li .form_list {
  width: 43%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media (width <= 768px) {
  .container__m824 .form_container__second label .form_list, .container__m824 .form_container__second li .form_list {
    margin-top: auto;
    width: 100%;
    align-items: baseline;
  }
}
.container__m824 .form_container__second label .form_list .form__required, .container__m824 .form_container__second li .form_list .form__required {
  display: inline;
  margin: 0;
  padding: 8px 10px;
  text-align: center;
  background-color: #d80c18;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
@media (width <= 768px) {
  .container__m824 .form_container__second label .form_list .form__required, .container__m824 .form_container__second li .form_list .form__required {
    padding: 8px 10px;
  }
}
.container__m824 .form_container__second label .item_name, .container__m824 .form_container__second li .item_name {
  font-size: 18px;
  line-height: 1.25;
  font-weight: bold;
  padding: 0;
}
@media (width <= 768px) {
  .container__m824 .form_container__second label .item_name, .container__m824 .form_container__second li .item_name {
    font-size: 16px;
    padding: 26px 0 6px 0;
  }
}
.container__m824 .form_container__second label .form_data_entry, .container__m824 .form_container__second li .form_data_entry {
  width: 53%;
  margin: 0;
  padding: 0;
}
@media (width <= 768px) {
  .container__m824 .form_container__second label .form_data_entry, .container__m824 .form_container__second li .form_data_entry {
    width: 100%;
  }
}
.container__m824 .form_container__second label .form_data_entry input, .container__m824 .form_container__second li .form_data_entry input {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
}
.container__m824 .form_container__second label .form_data_entry select, .container__m824 .form_container__second li .form_data_entry select {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  color: #3e3a39;
  border: 1px solid #ccc;
  background-color: #fff;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
}
@media (width <= 768px) {
  .container__m824 .form_container__second label .form_data_entry select, .container__m824 .form_container__second li .form_data_entry select {
    width: 100%;
  }
}
.container__m824 .form_container__second label .form_data_entry .select_box, .container__m824 .form_container__second li .form_data_entry .select_box {
  position: relative;
  width: 100%;
}
.container__m824 .form_container__second label .form_data_entry .select_box::after, .container__m824 .form_container__second li .form_data_entry .select_box::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #3e3a39;
  border-bottom: 1px solid #3e3a39;
  transform: rotate(45deg);
}
.container__m824 .form_container__second label .form_data_entry textarea, .container__m824 .form_container__second li .form_data_entry textarea {
  width: 100%;
  min-height: 150px;
  padding: 14px;
  margin: 20px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
}
@media (width <= 768px) {
  .container__m824 .form_container__second label .form_data_entry textarea, .container__m824 .form_container__second li .form_data_entry textarea {
    margin: 0;
  }
}

.form__notes_ctf7 {
  max-width: 648px;
  margin: 0 auto;
  padding-top: 32px;
}
.form__notes_ctf7 p {
  font-size: 14px;
  max-width: 648px;
  margin-bottom: 48px;
}
.form__notes_ctf7 label {
  display: inline-block;
  font-weight: bold;
  margin: 0 auto 42px auto;
}
.form__notes_ctf7 div {
  text-align: center;
}

.form__button_ctf7 {
  max-width: 648px;
  margin: 48px auto;
  text-align: center;
}
.form__button_ctf7:hover .submit_txt {
  color: #fff;
}
.form__button_ctf7 .button_normal {
  color: #3e3a39;
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
}
.form__button_ctf7 .button_link {
  color: #3e3a39;
  font-size: 16px;
  font-weight: bold;
  padding: 1em 4.5em;
  position: relative;
}
@media (width <= 768px) {
  .form__button_ctf7 .button_link {
    padding: 0.7em 4em;
  }
}
@media (width <= 570px) {
  .form__button_ctf7 .button_link {
    padding: 0.6em 3.5em;
  }
}
.form__button_ctf7 .button_link .submit_txt {
  position: absolute;
  padding: 0 0.5em;
  inset: 30% 0 0 0;
  z-index: 99;
}
@media (width <= 768px) {
  .form__button_ctf7 .button_link .submit_txt {
    inset: 27% 0 0 0;
  }
}
.form__button_ctf7 .button_link .submit_txt:hover {
  color: #fff;
}
.form__button_ctf7 .button_link .button_link:hover {
  color: #fff;
}
.form__button_ctf7 .button_link .button_link:hover input[type=submit] {
  color: #fff;
}
.form__button_ctf7 .button_link .button_link:hover .submit_txt {
  color: #fff;
}
.form__button_ctf7 .button_link input[type=submit] {
  display: none;
  padding: 0 0.5em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #3e3a39;
  background-color: transparent;
}
.form__button_ctf7 .button_link input[type=submit]:hover {
  color: #fff;
  position: relative;
}
.form__button_ctf7 .button_link input[type=submit]:hover .submit_txt {
  color: #fff;
}
.form__button_ctf7 .button_link .wpcf7-form-control {
  display: none;
  background-color: transparent;
}
.form__button_ctf7 .button_link .wpcf7-form-control:hover {
  color: #fff;
}
.form__button_ctf7 .button_link .wpcf7-submit {
  display: none;
  background-color: transparent;
}
.form__button_ctf7 .button_link .wpcf7-submit:hover {
  color: #fff;
}
.form__button_ctf7 .button_link .has-spinner {
  position: absolute;
  inset: 0 0 0 0;
  display: none;
  line-height: 1.5;
  background-color: transparent;
  position: absolute;
  inset: 0 0 0 0;
}
.form__button_ctf7 .button_link .has-spinner:hover {
  color: #fff;
}

/***************************************
                先輩の声
***************************************/
.senior_slide__area {
  width: 100%;
  margin: 50 auto;
  padding: 0 0 142px;
}

.top_senior_slide__area {
  width: 100%;
  margin: 50 auto;
  padding: 16px 0 16px;
}

.senior_slide__card img {
  border-radius: 50px 0 50px 0;
  margin: 0 12px 6px 0;
  padding: 0;
}
@media (width <= 768px) {
  .senior_slide__card img {
    max-width: 298px;
    height: auto;
  }
}

.senior_slide__card_top img {
  border-radius: 50px 0 50px 0;
  margin: 0 12px 6px 0;
  padding: 0;
}
@media (width <= 768px) {
  .senior_slide__card_top img {
    max-width: 258px;
    height: auto;
  }
}

.swiper-wrapper {
  overflow: visible;
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.swiper-slide {
  width: auto;
}

.swiper-pagination-bullets {
  position: static;
  margin-top: 42px;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 12px !important;
  background: #009d97 !important;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.interview__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 96px auto 62px auto;
}
@media (width <= 768px) {
  .interview__heading {
    flex-direction: column;
    gap: 12px;
    margin: 58px auto 58px auto;
  }
}
@media (width <= 430px) {
  .interview__heading {
    flex-direction: column;
    gap: 10px;
    margin: 48px auto 48px auto;
  }
}
.interview__heading p {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 5px;
  border-bottom: 4px solid #3e3a39;
}
@media (width <= 768px) {
  .interview__heading p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.interview__heading p span {
  font-size: 32px;
  font-weight: bold;
}
@media (width <= 768px) {
  .interview__heading p span {
    font-size: 28px;
  }
}
.interview__heading h2 {
  font-size: 46px;
  font-weight: bold;
  line-height: 1.4;
}
@media (width <= 768px) {
  .interview__heading h2 {
    font-size: 38px;
  }
}
@media (width <= 430px) {
  .interview__heading h2 {
    font-size: 34px;
  }
}

.interview__body .interview__mark {
  width: 1.8em;
  height: 1.8em;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
  padding: 17px 20px 16px 22px;
  background-color: #EFF4F6;
  border-radius: 50%;
  margin: 0 28px 0 0;
}
@media (width <= 768px) {
  .interview__body .interview__mark {
    font-size: 44px;
    margin: 0 22px 0 0;
  }
}
.interview__body dl dt {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 28px 0;
}
@media (width <= 768px) {
  .interview__body dl dt {
    font-size: 18px;
    margin: 0 0 22px 0;
  }
}
.interview__body dl dd {
  padding-bottom: 32px;
  margin-bottom: 42px;
  border-bottom: 1px dotted #3e3a39;
}
@media (width <= 768px) {
  .interview__body dl dd {
    padding-bottom: 22px;
    margin-bottom: 32px;
  }
}
.interview__body dl .line_none {
  border-bottom: none;
}

.interview__body + .interview__body dd {
  padding-bottom: 128px;
  border-bottom: none;
}
@media (width <= 768px) {
  .interview__body + .interview__body dd {
    padding-bottom: 98px;
  }
}

.container__interview_article {
  width: 100%;
  background-color: #fff;
  margin: 0 auto 60px auto;
}
@media (width <= 768px) {
  .container__interview_article {
    margin: 0 auto 42px auto;
    padding: 0 8% 0 8%;
  }
}

.bgc__light_gray {
  background-color: #EFF4F6;
}

.article_visual__interview {
  padding: 132px 0 0 0;
}
@media (width <= 768px) {
  .article_visual__interview {
    padding: 90px 0 0 0;
  }
}
.article_visual__interview img {
  max-width: 1000px;
  max-height: 400px;
}
@media (width <= 768px) {
  .article_visual__interview img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

/***************************************
                和歌山で学ぶ
***************************************/
.container__study_m {
  padding: 120px 0 42px 0;
  background-color: #009D97;
  color: #fff;
}
@media (width <= 768px) {
  .container__study_m {
    padding: 90px 0 42px 0;
  }
}
@media (width <= 768px) {
  .container__study_m .container__m648 {
    margin: 0 10% 0 10%;
  }
}
.container__study_m .title__big__sec {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 24px;
}
.container__study_m .title__sub_jp {
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 72px;
}
.container__study_m .container__m1000 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row-reverse;
  gap: 48px;
  padding-bottom: 62px;
  margin-bottom: 62px;
  border-bottom: 1px solid #fff;
}
@media (width <= 768px) {
  .container__study_m .container__m1000 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 38px;
    margin: 0 10% 48px 10%;
  }
}
@media (width <= 430px) {
  .container__study_m .container__m1000 {
    gap: 16px;
    margin: 0 8% 38px 8%;
  }
}
.container__study_m .container__m1000 .number {
  font-family: "Noto Sans JP";
  font-weight: 100;
  font-size: 80px;
  line-height: 1;
}
@media (width <= 768px) {
  .container__study_m .container__m1000 .number {
    font-size: 60px;
  }
}
@media (width <= 430px) {
  .container__study_m .container__m1000 .number {
    font-size: 48px;
  }
}
.container__study_m .container__m1000 .number span {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
}
.container__study_m .container__m1000 h3 {
  font-size: 36px;
  font-weight: bold;
  margin: 24px 0 32px 0;
}
@media (width <= 768px) {
  .container__study_m .container__m1000 h3 {
    font-size: 30px;
  }
}
@media (width <= 430px) {
  .container__study_m .container__m1000 h3 {
    font-size: 26px;
  }
}
.container__study_m .container__m1000 p {
  margin: 0;
  padding: 0;
}
@media (width <= 768px) {
  .container__study_m .container__m1000 .img_box img {
    margin: 0 auto 0 auto;
    width: 70%;
    height: auto;
  }
}

.number_new_white {
  position: relative;
  line-height: 1.4;
  padding: 0.25em 1em;
  display: inline-block;
  top: 0;
}
.number_new_white span {
  font-size: 80px;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  line-height: 1;
  position: relative;
  padding: 0 0.2em;
  display: inline-block;
  top: 0;
}
@media (width <= 430px) {
  .number_new_white span {
    font-size: 70px;
  }
}
.number_new_white span:before, .number_new_white span:after {
  position: absolute;
  top: 0;
  content: "";
  width: 8px;
  height: 100%;
  display: inline-block;
}
.number_new_white span:before {
  border-left: solid 2px #fff;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  left: 0;
}
.number_new_white span:after {
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  right: 0;
}

.number_new_black {
  position: relative;
  line-height: 1.4;
  padding: 0.25em 1em;
  display: inline-block;
  top: 0;
}
.number_new_black span {
  font-size: 80px;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  line-height: 1;
  position: relative;
  padding: 0 0.2em;
  display: inline-block;
  top: 0;
}
.number_new_black span:before, .number_new_black span:after {
  position: absolute;
  top: 0;
  content: "";
  width: 8px;
  height: 100%;
  display: inline-block;
}
.number_new_black span:before {
  border-left: solid 2px #3e3a39;
  border-top: solid 2px #3e3a39;
  border-bottom: solid 2px #3e3a39;
  left: 0;
}
.number_new_black span:after {
  content: "";
  border-top: solid 2px #3e3a39;
  border-right: solid 2px #3e3a39;
  border-bottom: solid 2px #3e3a39;
  right: 0;
}

.container__m1000.u-flex__reverse {
  flex-direction: row;
}
@media (width <= 768px) {
  .container__m1000.u-flex__reverse {
    flex-direction: column;
  }
}

.container__m1000.border__none {
  border-bottom: none;
}

.container__study_c {
  padding: 132px 0 142px 0;
}
@media (width <= 768px) {
  .container__study_c {
    padding: 100px 0 100px 0;
  }
}
@media (width <= 430px) {
  .container__study_c {
    padding: 78px 0 78px 0;
  }
}
.container__study_c .title__big__sec {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 24px;
}
.container__study_c .title__sub_jp {
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 56px;
}
.container__study_c h3 {
  font-size: 36px;
  font-weight: bold;
  margin: 0px 0 32px 0;
}
@media (width <= 768px) {
  .container__study_c h3 {
    font-size: 30px;
    line-height: 1.5;
    margin: 0px 0 28px 0;
  }
}
@media (width <= 430px) {
  .container__study_c h3 {
    font-size: 26px;
    line-height: 1.4;
    margin: 0px 0 28px 0;
  }
}
.container__study_c p {
  margin: 0 0 48px 0;
  padding: 0;
}
@media (width <= 768px) {
  .container__study_c .container__m648 {
    margin: 0 10% 0 10%;
  }
}
@media (width <= 430px) {
  .container__study_c .container__m648 {
    margin: 0 8% 0 8%;
  }
  .container__study_c .container__m648 img {
    width: 93%;
    height: auto;
  }
}
@media (width <= 1024px) {
  .container__study_c .container__m1000 {
    margin: 0 6% 0 6%;
  }
}
@media (width <= 768px) {
  .container__study_c .container__m1000 {
    margin: 0 12% 0 12%;
  }
}
@media (width <= 768px) {
  .container__study_c .container__m1000 {
    margin: 0 8% 0 8%;
  }
}
.container__study_c .container__m1000 table {
  text-align: left;
}
.container__study_c .container__m1000 table th {
  font-size: 24px;
  font-weight: bold;
  padding: 16px;
  border-top: 1px solid #3e3a39;
  border-right: 1px solid #3e3a39;
  background-color: #EFF4F6;
}
@media (width <= 768px) {
  .container__study_c .container__m1000 table th {
    font-size: 18px;
    padding: 12px;
  }
}
@media (width <= 768px) {
  .container__study_c .container__m1000 table th {
    font-size: 17px;
    line-height: 1.5;
    padding: 10px;
  }
}
.container__study_c .container__m1000 table td {
  padding: 16px;
  border-top: 1px solid #3e3a39;
  border-right: 1px solid #3e3a39;
}
@media (width <= 768px) {
  .container__study_c .container__m1000 table td {
    font-size: 14px;
    line-height: 1.7;
    padding: 12px;
  }
}
.container__study_c .container__m1000 table tr:first-child {
  border-top: 3px solid #3e3a39;
}
.container__study_c .container__m1000 table tr:last-child {
  border-bottom: 3px solid #3e3a39;
}
.container__study_c .container__m1000 table th:first-child {
  width: 22%;
}
.container__study_c .container__m1000 table th:nth-child(2) {
  text-align: center;
  background-color: #009d97;
  color: #fff;
}
.container__study_c .container__m1000 table th:nth-child(3) {
  text-align: center;
  border-right: none;
}
.container__study_c .container__m1000 table td:nth-child(odd) {
  border-right: none;
}
.container__study_c .center {
  display: flex;
  justify-content: center;
  padding: 62px 0 0;
  margin: 32px auto o auto;
}

.container__study_t {
  margin: 0 auto;
  padding: 132px 0 132px 0;
  background-color: #EFF4F6;
}
@media (width <= 768px) {
  .container__study_t {
    padding: 90px 0 90px 0;
  }
}
@media (width <= 430px) {
  .container__study_t {
    padding: 68px 0 68px 0;
  }
}
.container__study_t .title__big__sec {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  display: block;
  text-align: center;
  line-height: 1.2;
}
.container__study_t .study_in_w_title__secondary {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container__study_t .point {
  font-size: 28px;
  padding: 4px 22px;
  border: 1px solid #ccc;
  margin: 0 0 0 18px;
}
@media (width <= 768px) {
  .container__study_t .point {
    font-size: 24px;
  }
}
@media (width <= 430px) {
  .container__study_t .point {
    font-size: 22px;
    padding: 2px 18px;
  }
}
.container__study_t .read {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.7;
  margin: 48px auto 48px auto;
}
@media (width <= 768px) {
  .container__study_t .read {
    font-size: 20px;
    margin: 48px auto 48px auto;
    padding: 26px 0 26px 0;
  }
}
@media (width <= 430px) {
  .container__study_t .read {
    font-size: 18px;
    margin: 38px auto 38px auto;
    padding: 18px 0 18px 0;
  }
}
.container__study_t .title__sub_jp {
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 56px;
}
.container__study_t h3 {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 22px 0;
}
@media (width <= 768px) {
  .container__study_t h3 {
    font-size: 30px;
    margin: 0px 0 18px 0;
  }
}
@media (width <= 768px) {
  .container__study_t h3 {
    font-size: 26px;
    margin: 0px 0 16px 0;
  }
}
.container__study_t p {
  margin: 0 0 48px 0;
  padding: 0;
}
@media (width <= 768px) {
  .container__study_t p {
    margin: 0 0 38px 0;
  }
}
.container__study_t ul li {
  padding: 48px 0 26px 0;
  border-bottom: 1px solid #3e3a39;
}
@media (width <= 768px) {
  .container__study_t ul li {
    margin: 38px 0 22px 0;
  }
}
.container__study_t ul li:last-child {
  border-bottom: none;
}
.container__study_t .container__m648 img {
  display: block;
  margin: 0 auto;
}
@media (width <= 430px) {
  .container__study_t .container__m648 img {
    width: 75%;
    height: auto;
  }
}
@media (width <= 768px) {
  .container__study_t .container__m648 {
    max-width: 500px;
    margin: 0 10% 0 10%;
  }
}
@media (width <= 430px) {
  .container__study_t .container__m648 {
    max-width: 400px;
    margin: 0 8% 0 8%;
  }
}
.container__study_t .container__m648.right {
  display: flex;
}
.container__study_t .container__m648.right .button_normal {
  font-weight: bold;
  margin: 0 0 0 auto;
}
.container__study_t .container__m648.right .button_link {
  margin: 0 0 0 auto;
}

/***************************************
                専修学校の強み
***************************************/
.container__stremgths_skl {
  background-color: #009D97;
  padding: 82px 0 132px 0;
}
@media (width <= 768px) {
  .container__stremgths_skl {
    padding: 62px 0 90px 0;
  }
}
@media (width <= 430px) {
  .container__stremgths_skl {
    padding: 58px 0 78px 0;
  }
}
.container__stremgths_skl .container__m648 {
  color: #fff;
  padding-bottom: 48px;
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m648 {
    margin: 0 8% 0 8%;
  }
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m648 {
    margin: 0 6% 0 6%;
  }
}
.container__stremgths_skl .container__m648 .title__big__sec {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 24px;
}
.container__stremgths_skl .container__m648 .title__sub_jp {
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 56px;
}
.container__stremgths_skl .container__m648 h3 {
  font-size: 36px;
  font-weight: bold;
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m648 h3 {
    font-size: 28px;
    line-height: 1.5;
  }
}
@media (width <= 430px) {
  .container__stremgths_skl .container__m648 h3 {
    font-size: 26px;
    line-height: 1.4;
  }
}
.container__stremgths_skl .container__m648 p {
  max-width: 648px;
}
@media (width <= 430px) {
  .container__stremgths_skl .container__m648 p {
    max-width: 400px;
  }
}
.container__stremgths_skl .container__m1000 {
  padding: 100px 88px 88px 88px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  background-color: #fff;
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m1000 {
    padding: 62px 8% 42px 8%;
    margin: 0 8% 0 8%;
  }
}
.container__stremgths_skl .container__m1000 ul {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m1000 ul {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
  }
}
.container__stremgths_skl .container__m1000 ul li {
  padding: 26px 0 26px 0;
  border-bottom: 1px solid #3e3a39;
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m1000 ul li {
    padding: 8% 0 8% 0;
  }
}
@media (width <= 430px) {
  .container__stremgths_skl .container__m1000 ul li {
    padding: 6% 0 6% 0;
  }
}
.container__stremgths_skl .container__m1000 ul li h3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  padding-top: 6px;
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m1000 ul li h3 {
    font-size: 28px;
  }
}
.container__stremgths_skl .container__m1000 ul li p {
  padding: 0 0 0 0;
  margin: 28px 0 0 0;
}
.container__stremgths_skl .container__m1000 ul li:nth-of-type(n+3) {
  border-bottom: none;
  padding-bottom: 0;
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m1000 ul li:nth-of-type(n+3) {
    border-bottom: 1px solid #3e3a39;
    padding-bottom: 26px;
  }
}
.container__stremgths_skl .container__m1000 ul li:nth-child(odd) {
  border-right: 1px solid #3e3a39;
  padding-right: 26px;
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m1000 ul li:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
}
.container__stremgths_skl .container__m1000 ul li:nth-child(even) {
  padding-left: 26px;
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m1000 ul li:nth-child(even) {
    padding-left: 0;
  }
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m1000 ul li:last-child {
    border-bottom: none;
  }
}
.container__stremgths_skl .container__m1000 .number {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP";
  font-weight: 100;
  font-size: 76px;
  line-height: 1;
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m1000 .number {
    font-size: 68px;
  }
}
@media (width <= 430px) {
  .container__stremgths_skl .container__m1000 .number {
    font-size: 48px;
  }
}
.container__stremgths_skl .container__m1000 .number span {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  line-height: 1;
}
.container__stremgths_skl .container__m1000 .container__strength {
  display: flex;
  flex-direction: column-reverse;
}
.container__stremgths_skl .container__m1000 .st_ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.container__stremgths_skl .container__m1000 .st_visual {
  text-align: center;
}
.container__stremgths_skl .container__m1000 .st_visual img {
  display: block;
  margin: 0 auto 28px auto;
}
@media (width <= 768px) {
  .container__stremgths_skl .container__m1000 .st_visual img {
    width: 75%;
    height: auto;
  }
}

.container__stremgths_univ {
  background-color: #B7DEDC;
  padding: 132px 0 110px 0;
}
@media (width <= 768px) {
  .container__stremgths_univ {
    padding: 90px 0 38px 0;
  }
}
.container__stremgths_univ .container__m1000 {
  margin: 0 auto 42px auto;
  text-align: center;
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000 {
    margin: 0 auto 38px auto;
  }
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000 {
    margin: 0 auto 22px auto;
  }
}
.container__stremgths_univ .container__m1000 .univ_mainvisual img {
  border-radius: 60px 0 60px 0;
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000 .univ_mainvisual img {
    width: 90%;
    margin: 0 auto;
    border-radius: 50px 0;
  }
}
.container__stremgths_univ .container__m1000 .univ_ttl {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  line-height: 1;
  font-size: 60px;
  font-weight: bold;
  display: block;
  margin: 114px 0 0 0;
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000 .univ_ttl {
    font-size: 48px;
    margin: 90px 0 0 0;
  }
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000 .univ_ttl {
    font-size: 42px;
    margin: 58px 0 0 0;
  }
}
.container__stremgths_univ .container__m1000 .univ_ttl_sub {
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 48px 0;
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000 .univ_ttl_sub {
    font-size: 20px;
    margin: 0 0 38px 0;
  }
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000 .univ_ttl_sub {
    font-size: 18px;
    margin: 0 0 28px 0;
  }
}
.container__stremgths_univ .container__m1000 h3 {
  font-size: 36px;
  font-weight: bold;
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000 h3 {
    font-size: 28px;
    line-height: 1.5;
  }
}
@media (width <= 430px) {
  .container__stremgths_univ .container__m1000 h3 {
    font-size: 26px;
    line-height: 1.4;
  }
}
.container__stremgths_univ .container__m1000 .univ_description {
  max-width: 648px;
  margin: 18px auto 102px auto;
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000 .univ_description {
    margin: 14px 8% 52px 8%;
  }
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000 .univ_description {
    margin: 14px 8% 38px 8%;
  }
}
.container__stremgths_univ .container__m1000.container__white {
  text-align: left;
  padding: 72px 88px 72px 88px;
  margin: 0 auto 48px auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  background-color: #fff;
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000.container__white {
    border-radius: 36px;
    margin: 0 8% 38px 8%;
    padding: 48px 8% 48px 8%;
  }
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000.container__white {
    margin: 0 8% 28px 8%;
    padding: 38px 6% 38px 6%;
  }
}
.container__stremgths_univ .container__m1000.container__white h3 {
  font-size: 36px;
  font-weight: bold;
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000.container__white h3 {
    font-size: 28px;
    line-height: 1.5;
  }
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000.container__white h3 {
    font-size: 26px;
    line-height: 1.4;
  }
}
.container__stremgths_univ .container__m1000.container__white h3 span {
  font-size: 24px;
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000.container__white h3 span {
    font-size: 20px;
  }
}
.container__stremgths_univ .container__m1000.container__white .section_01 {
  padding: 0 0 12px 0;
}
.container__stremgths_univ .container__m1000.container__white .section_01 h3 {
  font-weight: bold;
}
.container__stremgths_univ .container__m1000.container__white .section_02 {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  padding: 48px 0 24px 0;
  margin: 32px auto;
  border-top: 1px solid #3e3a39;
}
@media (width <= 768px) {
  .container__stremgths_univ .container__m1000.container__white .section_02 {
    grid-template-columns: 1fr;
    padding: 28px 0 0 0;
  }
}
.container__stremgths_univ .container__m1000.container__white .section_02 h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
.container__stremgths_univ .container__m1000.container__white .section_02 ul {
  margin: 12px 0;
  padding: 0;
}
.container__stremgths_univ .container__m1000.container__white .section_02 ul li {
  font-weight: bold;
  padding: 0 0 0 0;
  text-indent: -1em;
  padding-left: 1em;
}
.container__stremgths_univ .container__m1000.container__white .section_02 p {
  margin: 0;
  padding: 0;
}
.container__stremgths_univ .container__m1000.container__white .section_02 .section_02.b_none {
  padding-bottom: 0;
}

/***************************************
                学校の選び方
***************************************/
.how_to_select {
  background-color: #009D97;
  padding: 132px 0 92px;
}
@media (width <= 768px) {
  .how_to_select {
    padding: 90px 0 64px;
  }
}
@media (width <= 768px) {
  .how_to_select {
    padding: 80px 0 58px;
  }
}
.how_to_select .how_to_select__head .title__big__sec {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 24px;
  color: #fff;
}
@media (width <= 768px) {
  .how_to_select .how_to_select__head .title__big__sec {
    margin-bottom: 12px;
  }
}
.how_to_select .how_to_select__head .title__sub_jp {
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 86px;
  color: #fff;
}
@media (width <= 768px) {
  .how_to_select .how_to_select__head .title__sub_jp {
    margin-bottom: 68px;
  }
}

.how_to_select_contents {
  margin: 0 auto;
}
.how_to_select_contents article {
  width: 100%;
  margin: 0 auto 62px auto;
  background-color: #fff;
  padding-bottom: 112px;
}
@media (width <= 768px) {
  .how_to_select_contents article {
    margin: 0 auto 38px auto;
    padding-bottom: 46px;
  }
}
.how_to_select_contents .container__m1000 {
  max-width: 1000px;
  padding: 32px 0 32px 0;
}
@media (width <= 768px) {
  .how_to_select_contents .container__m1000 {
    padding: 8%;
  }
}
.how_to_select_contents .container__m1000 img {
  border-radius: 50px 0 50px 0;
  margin: 112px auto 92px auto;
  max-width: 1000px;
}
@media (width <= 768px) {
  .how_to_select_contents .container__m1000 img {
    width: 100%;
    height: auto;
    min-height: 260px;
    object-fit: cover;
    margin: 8px auto 68px auto;
  }
}
.how_to_select_contents .container__m1000 h3 {
  font-size: 36px;
  font-weight: bold;
}
@media (width <= 768px) {
  .how_to_select_contents .container__m1000 h3 {
    font-size: 28px;
  }
}
@media (width <= 430px) {
  .how_to_select_contents .container__m1000 h3 {
    font-size: 26px;
  }
}
.how_to_select_contents .container__m1000 .number {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP";
  font-weight: 100;
  font-size: 76px;
  line-height: 1.2;
}
@media (width <= 768px) {
  .how_to_select_contents .container__m1000 .number {
    font-size: 68px;
    padding-bottom: 12px;
  }
}
@media (width <= 768px) {
  .how_to_select_contents .container__m1000 .number {
    font-size: 58px;
    padding-bottom: 12px;
  }
}
.how_to_select_contents .container__m1000 .number span {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  line-height: 1;
}
.how_to_select_contents .container__m1000 .select_contents__heading {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  padding-bottom: 82px;
}
@media (width <= 768px) {
  .how_to_select_contents .container__m1000 .select_contents__heading {
    display: block;
    padding-bottom: 52px;
  }
}
.how_to_select_contents .container__m1000 ul {
  line-height: 1.5;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (width <= 768px) {
  .how_to_select_contents .container__m1000 ul {
    font-size: 14px;
    grid-template-columns: 1fr 1fr;
  }
}
.how_to_select_contents .container__m1000 ul li {
  font-weight: bold;
  padding: 34px 0 8px 0;
  border-bottom: 1px solid #3e3a39;
}
@media (width <= 768px) {
  .how_to_select_contents .container__m1000 ul li {
    padding: 28px 0 6px 0;
  }
}
.how_to_select_contents .container__m1000 ul li:nth-child(even) {
  background-color: #F8FDFF;
}
.how_to_select_contents .container__m1000 .favorite_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (width <= 768px) {
  .how_to_select_contents .container__m1000 .favorite_list {
    gap: 28px;
  }
}
.how_to_select_contents .container__m1000 .favorite_list h4 {
  font-size: 24px;
  font-weight: bold;
}
@media (width <= 768px) {
  .how_to_select_contents .container__m1000 .favorite_list h4 {
    font-size: 20px;
  }
}
.how_to_select_contents .container__m1000 .favorite_list ul {
  display: flex;
  flex-direction: column;
}
.how_to_select_contents .container__m1000 .favorite_list ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  padding: 34px 0 8px 0;
  border-bottom: 1px solid #3e3a39;
}
@media (width <= 768px) {
  .how_to_select_contents .container__m1000 .favorite_list ul li {
    padding: 28px 0 6px 0;
  }
}
.how_to_select_contents .container__m1000 .favorite_list ul li:nth-child(even) {
  background-color: #F8FDFF;
}

.details_select summary {
  cursor: pointer;
}
.details_select summary::-webkit-details-marker {
  color: #009d97;
}
.details_select details[open] {
  animation: fadeIn 0.7s ease-in-out;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.txt__details_sub {
  font-weight: normal;
  font-size: 15px;
  line-height: 1.7;
  display: inline-block;
  padding-bottom: 0.75em;
}
@media (width <= 768px) {
  .txt__details_sub {
    font-size: 14px;
  }
}
.txt__details_sub a {
  font-weight: normal;
  font-size: 15px;
  line-height: 1.7;
  display: inline-block;
  padding-bottom: 0.75em;
}
@media (width <= 768px) {
  .txt__details_sub a {
    font-size: 14px;
  }
}

.select_contents__heading_right {
  max-width: 606px;
}
@media (width <= 768px) {
  .select_contents__heading_right {
    width: 100%;
  }
}

.job_guide {
  padding: 132px 0 90px 0;
  background-color: #EFF4F6;
}
@media (width <= 768px) {
  .job_guide {
    padding: 90px 8% 42px 8%;
  }
}
@media (width <= 430px) {
  .job_guide {
    padding: 72px 8% 42px 8%;
  }
}
.job_guide .container__m648 {
  padding-bottom: 48px;
}
@media (width <= 768px) {
  .job_guide .container__m648 {
    padding-bottom: 48px;
  }
}
.job_guide .container__m648 .title__big__sec {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 24px;
}
@media (width <= 768px) {
  .job_guide .container__m648 .title__big__sec {
    margin-bottom: 18px;
  }
}
.job_guide .container__m648 .title__sub_jp {
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 56px;
}
@media (width <= 768px) {
  .job_guide .container__m648 .title__sub_jp {
    margin-bottom: 48px;
  }
}
.job_guide .container__m648 h3 {
  font-size: 36px;
  font-weight: bold;
}
@media (width <= 768px) {
  .job_guide .container__m648 h3 {
    font-size: 28px;
    padding-bottom: 24px;
  }
}
@media (width <= 430px) {
  .job_guide .container__m648 h3 {
    font-size: 26px;
  }
}
.job_guide .container__m648 p {
  max-width: 648px;
}
.job_guide .container__m1000 {
  max-width: 1000px;
  padding: 88px 88px 88px 88px;
  margin: 0 auto 48px auto;
  background-color: rgb(255, 255, 255);
  border-radius: 40px;
}
@media (width <= 768px) {
  .job_guide .container__m1000 {
    padding: 8%;
    margin: 0 auto 38px auto;
  }
}
@media (width <= 768px) {
  .job_guide .container__m1000 {
    margin: 0 auto 28px auto;
  }
}
.job_guide h3 {
  font-size: 36px;
  font-weight: bold;
}
@media (width <= 768px) {
  .job_guide h3 {
    font-size: 28px;
  }
}
@media (width <= 430px) {
  .job_guide h3 {
    font-size: 26px;
  }
}
.job_guide .job_guide__read {
  font-weight: bold;
  padding: 24px 0 24px 0;
  border-top: 1px solid #3e3a39;
  border-bottom: 1px solid #3e3a39;
  margin: 16px auto 32px auto;
}
@media (width <= 768px) {
  .job_guide .job_guide__read {
    padding: 24px 0 24px 0;
  }
}
.job_guide .job_guide__item_name {
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  font-weight: bold;
  padding: 26px 38px;
  border: 1px solid #3e3a39;
}
@media (width <= 768px) {
  .job_guide .job_guide__item_name {
    display: block;
    width: 100%;
    padding: 24px;
  }
}
.job_guide .job_guide__body {
  display: grid;
  grid-template-columns: 1fr 252px;
  gap: 92px;
}
@media (width <= 768px) {
  .job_guide .job_guide__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.job_guide .job_guide__body ul {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  font-weight: bold;
}
@media (width <= 768px) {
  .job_guide .job_guide__body ul {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
}
.job_guide .job_guide__body ul li:first-child {
  place-items: center;
}
.job_guide p {
  margin: 0;
  padding: 0;
}

/***************************************
                奨学金
***************************************/
.container__tuition {
  margin: 0 auto;
  padding: 132px 0 92px 0;
  background-color: #EFF4F6;
}
@media (width <= 768px) {
  .container__tuition {
    padding: 90px 8% 68px 8%;
  }
}
@media (width <= 430px) {
  .container__tuition {
    padding: 78px 8% 58px 8%;
  }
}
.container__tuition .container__m648 {
  margin-bottom: 56px;
}
@media (width <= 430px) {
  .container__tuition .container__m648 {
    margin-bottom: 32px;
  }
}
.container__tuition .container__m648 h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 32px 0;
}
@media (width <= 768px) {
  .container__tuition .container__m648 h2 {
    font-size: 32px;
  }
}
@media (width <= 430px) {
  .container__tuition .container__m648 h2 {
    font-size: 28px;
  }
}
.container__tuition_body {
  max-width: 1000px;
  text-align: left;
  padding: 72px 88px 72px 88px;
  margin: 0 auto 56px auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  background-color: #fff;
}
@media (width <= 768px) {
  .container__tuition_body {
    padding: 42px 8% 42px 8%;
    margin: 0 auto 48px auto;
  }
}
@media (width <= 430px) {
  .container__tuition_body {
    padding: 38px 6% 38px 6%;
    margin: 0 auto 28px auto;
  }
}
.container__tuition_body h3 {
  font-size: 36px;
  font-weight: bold;
  display: block;
}
@media (width <= 768px) {
  .container__tuition_body h3 {
    font-size: 32px;
  }
}
@media (width <= 430px) {
  .container__tuition_body h3 {
    font-size: 26px;
  }
}
.container__tuition_body h4 {
  font-size: 20px;
}
@media (width <= 768px) {
  .container__tuition_body h4 {
    font-size: 18px;
  }
}
@media (width <= 430px) {
  .container__tuition_body h4 {
    font-size: 16px;
  }
}
.container__tuition_body.grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
}
@media (width <= 768px) {
  .container__tuition_body.grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (width <= 430px) {
  .container__tuition_body.grid {
    gap: 28px;
  }
}
.container__tuition_body.grid ul li {
  text-indent: -1em;
  padding-left: 1em;
}

.second {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  border-bottom: 1px dotted #3e3a39;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
@media (width <= 768px) {
  .second {
    grid-template-columns: 1fr;
    padding-bottom: 38px;
    margin-bottom: 38px;
    gap: 10px;
  }
}
@media (width <= 430px) {
  .second {
    padding-bottom: 28px;
    margin-bottom: 28px;
    gap: 8px;
  }
}

.second.nothing {
  padding-bottom: 0px;
  border-bottom: none;
}

.second_second {
  display: flex;
  align-items: center;
  border-right: 1px solid #3e3a39;
}
@media (width <= 768px) {
  .second_second {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    border-right: none;
  }
}
.second_second h4 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (width <= 768px) {
  .second_second h4 {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
@media (width <= 430px) {
  .second_second h4 {
    font-size: 26px;
  }
}
.second_second span {
  font-size: 20px;
  font-weight: bold;
  display: block;
}
@media (width <= 768px) {
  .second_second span {
    font-size: 18px;
  }
}

.second_third {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  gap: 28px;
  margin-bottom: 16px;
  font-weight: bold;
}
@media (width <= 768px) {
  .second_third {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 12px;
  }
}
.second_third .item_name {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #3e3a39;
}
@media (width <= 768px) {
  .second_third .item_name {
    display: grid;
    place-items: center;
    font-size: 18px;
    margin: 0 !important;
  }
}
@media (width <= 768px) {
  .second_third .item_info p {
    padding: 0;
    margin: 0;
  }
  .second_third .item_info p + p {
    margin: 8px 0 0 0;
  }
}
.second_third h5 {
  font-size: 20px;
  padding: 8px 24px;
}
@media (width <= 768px) {
  .second_third h5 {
    font-size: 18px;
    padding: 4px 0;
  }
}
.second_third .number_strong {
  font-size: 18px;
  font-weight: bold;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  line-height: 1.7;
}
@media (width <= 768px) {
  .second_third .number_strong {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  .second_third .item_name + .item_info {
    margin: 10px 0 0 0;
    padding: 0;
  }
}

.second_forth {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 28px;
  font-weight: bold;
}
@media (width <= 768px) {
  .second_forth {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.second_forth .item_name {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #3e3a39;
}
@media (width <= 768px) {
  .second_forth .item_name {
    font-size: 18px;
  }
}
.second_forth h5 {
  font-size: 20px;
  padding: 8px 24px;
}
@media (width <= 768px) {
  .second_forth h5 {
    font-size: 18px;
    padding: 4px 0;
  }
}
.second_forth p {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
.second_forth .name {
  padding-bottom: 8px;
}
@media (width <= 768px) {
  .second_forth .name {
    padding-top: 8px;
  }
}
.second_forth .number_strong {
  font-size: 18px;
  font-weight: bold;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  line-height: 1.7;
}
@media (width <= 768px) {
  .second_forth .number_strong {
    font-size: 16px;
  }
}
.second_forth .u-top_margin {
  margin-top: 24px;
}
@media (width <= 768px) {
  .second_forth .u-top_margin {
    margin-top: 10px;
  }
}

.tuition_body_head {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 28px;
  border-bottom: 1px solid #3e3a39;
  padding: 0 0 28px 0;
  margin: 0 0 32px 0;
}
@media (width <= 768px) {
  .tuition_body_head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.tuition_body_head h3 {
  line-height: 1;
  padding: 12px 0;
}
@media (width <= 768px) {
  .tuition_body_head h3 {
    padding: 8px 0 0 0;
  }
}
@media (width <= 430px) {
  .tuition_body_head h3 {
    font-size: 26px;
  }
}
.tuition_body_head p {
  padding: 0;
  margin: 0;
}

.tuition_body .body_first {
  display: grid;
  grid-template-columns: 150px max-content max-content;
  gap: 28px;
}
@media (width <= 768px) {
  .tuition_body .body_first {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.tuition_body .body_first div:first-child {
  display: grid;
  place-items: center;
  border: 1px solid #3e3a39;
  display: inline-block;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}
@media (width <= 768px) {
  .tuition_body .body_first div:first-child {
    padding: 4px;
  }
}
.tuition_body .body_first div {
  font-weight: bold;
}
@media (width <= 768px) {
  .tuition_body .body_first div:last-child {
    margin-bottom: 12px;
  }
}
.tuition_body .body_second {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 32px;
  font-weight: bold;
}
@media (width <= 768px) {
  .tuition_body .body_second {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
}
.tuition_body .body_second div:first-child {
  display: grid;
  place-items: center;
  border: 1px solid #3e3a39;
  display: inline-block;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}
@media (width <= 768px) {
  .tuition_body .body_second div:first-child {
    padding: 4px;
  }
}
.tuition_body .body_second .number_strong {
  font-size: 18px;
  font-weight: bold;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  line-height: 1.7;
}
@media (width <= 768px) {
  .tuition_body .body_second .number_strong {
    font-size: 18px;
  }
}
@media (width <= 768px) {
  .tuition_body .body_second div:last-child {
    margin-bottom: 18px;
  }
}

.price {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  padding: 6px 0 14px 0;
}
@media (width <= 768px) {
  .price {
    font-size: 36px;
  }
}
@media (width <= 768px) {
  .price {
    font-size: 30px;
  }
}

.price_sub {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  padding: 6px 0 14px 0;
}
@media (width <= 768px) {
  .price_sub {
    font-size: 24px;
  }
}
@media (width <= 430px) {
  .price_sub {
    font-size: 22px;
  }
}

.tuition_other_head {
  display: flex;
  align-items: center;
  border-right: 1px solid #3e3a39;
}
@media (width <= 768px) {
  .tuition_other_head {
    border-right: none;
    border-bottom: 1px solid #3e3a39;
    padding-bottom: 18px;
  }
}

.body_contents_first {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}
@media (width <= 768px) {
  .body_contents_first {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.body_contents_first h4 {
  display: grid;
  place-items: center;
  padding: 2px 14px;
  border: 1px solid #3e3a39;
}
.body_contents_first p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
@media (width <= 768px) {
  .body_contents_first p {
    font-size: 22px;
  }
}
@media (width <= 430px) {
  .body_contents_first p {
    font-size: 20px;
  }
}
@media (width <= 768px) {
  .body_contents_first h4 + p {
    margin: 10px 0 0 0;
    padding: 0;
  }
}

.number_strong {
  font-size: 26px;
  font-weight: bold;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5;
}

.body_contents__title_sub {
  display: grid;
  place-items: center;
  padding: 2px 14px;
  border: 1px solid #3e3a39;
}

.body_contents_second {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin: 24px 0 0 0;
}
@media (width <= 768px) {
  .body_contents_second {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.body_contents_second h4 {
  display: grid;
  place-items: center;
  padding: 2px 14px;
  border: 1px solid #3e3a39;
}
.body_contents_second p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
@media (width <= 768px) {
  .body_contents_second p {
    font-size: 22px;
  }
}
@media (width <= 430px) {
  .body_contents_second p {
    font-size: 20px;
  }
}
@media (width <= 768px) {
  .body_contents_second h4 + p {
    margin: 10px 0 0 0;
    padding: 0;
  }
}

@media (width <= 768px) {
  .body_contents_first + .body_contents_second {
    margin: 32px 0 0 0;
    padding: 0;
  }
}

.tuition_body_contents {
  border: none;
}

.frame h4 {
  display: inline-block;
  padding: 2px 14px;
  border: 1px solid #ccc;
}
.frame .h4_second {
  margin-top: 16px;
}

.tuition_inquiry {
  max-width: 648px;
  margin: 82px auto 0 auto;
}
@media (width <= 768px) {
  .tuition_inquiry {
    margin: 62px 0 0 0;
  }
}
.tuition_inquiry h3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}
@media (width <= 768px) {
  .tuition_inquiry h3 {
    font-size: 28px;
  }
}
@media (width <= 430px) {
  .tuition_inquiry h3 {
    font-size: 26px;
  }
}
.tuition_inquiry .apply {
  padding: 0 0 24px 0;
}
.tuition_inquiry .repayment {
  padding: 42px 0 24px 0;
  border-top: 1px solid #3e3a39;
  border-bottom: 1px solid #3e3a39;
}
.tuition_inquiry .contact {
  padding: 32px 0 32px 0;
}
.tuition_inquiry .contact p {
  margin: 0;
  padding: 0;
}
.tuition_inquiry .contact .renraku {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  margin: 0 0 18px 0;
}
@media (width <= 768px) {
  .tuition_inquiry .contact .renraku {
    font-size: 22px;
  }
}
@media (width <= 430px) {
  .tuition_inquiry .contact .renraku {
    font-size: 20px;
  }
}
.tuition_inquiry address {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  padding: 6px 0 14px 0;
}
@media (width <= 768px) {
  .tuition_inquiry address {
    font-size: 28px;
  }
}
@media (width <= 430px) {
  .tuition_inquiry address {
    font-size: 26px;
  }
}
.tuition_inquiry address span {
  font-size: 18px;
  line-height: 1.25;
  padding: 6px 0 14px 0;
}
@media (width <= 768px) {
  .tuition_inquiry address span {
    font-size: 14px;
  }
}
.tuition_inquiry .notes {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.7;
  padding: 6px 0;
}
@media (width <= 768px) {
  .tuition_inquiry .notes {
    font-size: 13px;
  }
}
.tuition_inquiry .notes.last {
  margin-top: 38px;
}

/***************************************
                追加設定
***************************************/
.u-layout__al_left {
  text-align: left;
}

.u-margin_layout_right {
  margin: 0 0 0 auto;
}

.u-margin_layout_center {
  margin: 0 auto;
}

.u-ltsp_m0_07em {
  letter-spacing: -0.07em;
}

.u-ltsp_m0_1em {
  letter-spacing: -0.1em;
}

.u-fz1_1up {
  font-size: 110%;
}

.u-fz1_1down {
  font-size: 90%;
}

.u-line-h1_6 {
  line-height: 1.6;
}

.u-pt10px {
  padding-top: 10px;
}

.u-pt20px {
  padding-top: 20px;
}

.u-pt30px {
  padding-top: 30px;
}

.u-pt40px {
  padding-top: 40px;
}

.u-pt60px {
  padding-top: 60px;
}

.u-pt80px {
  padding-top: 80px;
}

.u-pt70px {
  padding-top: 70px;
}

.u-pt100px {
  padding-top: 100px;
}

.u-pt120px {
  padding-top: 120px;
}

.u-pl4em {
  padding-left: 4em;
}

.u-pb_none {
  padding-bottom: 0;
}

.u-pb120px {
  padding-bottom: 120px;
}

.u-pb30px {
  padding-bottom: 30px;
}

.u-pb20px {
  padding-bottom: 20px;
}

.u-pb10px {
  padding-bottom: 10px;
}

.u-pl0_65em_sl_none {
  padding-left: 0.65em;
}
@media (width >= 570px) {
  .u-pl0_65em_sl_none {
    padding-left: 0;
  }
}

.u-mt120px {
  margin-top: 120px;
}

.u-mt100px {
  margin-top: 100px;
}

.u-mt80px {
  margin-top: 80px;
}

.u-mt70px {
  margin-top: 70px;
}

.u-mt50px {
  margin-top: 50px;
}

.u-mt40px {
  margin-top: 40px;
}

.u-mt30px {
  margin-top: 20px;
}

.u-mt20px {
  margin-top: 20px;
}

.u-mt15px {
  margin-top: 15px;
}

.u-mt10px {
  margin-top: 10px;
}

.u-mb10px {
  margin-bottom: 10px;
}

.u-mb20px {
  margin-bottom: 20px;
}

.u-mb30px {
  margin-bottom: 30px;
}

.u-mb50px {
  margin-bottom: 50px;
}

.u-mb80px {
  margin-bottom: 80px;
}

.u-mb120px {
  margin-bottom: 120px;
}

.u-mp_clear {
  margin: 0;
  padding: 0;
}

.u-ff_english {
  font-family: "Montserrat";
}

.u-protect {
  pointer-events: none;
}

.u-protect--none {
  pointer-events: auto;
}

.u-block {
  display: block;
}

.u-bld {
  font-weight: bold;
}

.u-fw--normal {
  font-weight: normal;
}

.u-bld_red {
  font-weight: bold;
  color: #d80c18;
}

.u-pb15px_md {
  padding-bottom: 0;
}
@media (width >= 768px) {
  .u-pb15px_md {
    padding-bottom: 15px;
  }
}

.u-bt_1des {
  border-top: 1px solid var(--color_des_base);
}

/***************************************
                モーション
***************************************/
.scroll_animation__FromTheBottom {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s ease-out;
}
.scroll_animation__FromTheBottom.isactive {
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.scroll_animation__FromTheBottom_dl {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease-out;
}
.scroll_animation__FromTheBottom_dl.isactive {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
  animation-delay: 0.5s;
  animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.scroll_animation__FadeIn_only {
  opacity: 0;
}
.scroll_animation__FadeIn_only.isactive {
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.scroll_animation_left_right {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.scroll_animation_left_right.isactive {
  animation: slideAnimation 3s forwards;
}
@keyframes slideAnimation {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  50% {
    -webkit-clip-path: inset(0 60% 0 0);
    clip-path: inset(0 65% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

.scroll_animation_left_right_l {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.scroll_animation_left_right_l.isactive {
  animation: slideAnimation 3.5s forwards;
}
@keyframes slideAnimation {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  50% {
    -webkit-clip-path: inset(0 60% 0 0);
    clip-path: inset(0 65% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

.scroll_animation_left_right_s {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.scroll_animation_left_right_s.isactive {
  animation: slideAnimation 1.15s forwards;
}
@keyframes slideAnimation {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  50% {
    -webkit-clip-path: inset(0 65% 0 0);
    clip-path: inset(0 65% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

.scroll_animation_line:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  width: 80%;
  height: 1px;
  background-color: #3e3a39;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  animation: slideAnimation 1.4s forwards;
}
@keyframes slideAnimation {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}

/***************************************
                モーション1
***************************************/
.test_motion {
  margin: 50vh 0;
}

.motion_testbox img {
  max-width: 100%;
  margin: 20vh 0;
}

.displayed {
  background-color: blue;
}

.motion_test_container {
  width: 100%;
  margin: 62px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.card_test {
  width: fit-content;
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 32px;
  background-color: yellow;
  opacity: 0;
  transform: translateY(200%);
  transition: all 0.5s ease-out;
}
.card_test.isactive {
  opacity: 1;
  transform: translateY(0);
}

/***************************************
                モーション2
***************************************/
.motion_test_container_02 {
  font-family: "YakuHanJP", "Montserrat", "Zen Kaku Gothic New", sans-serif;
  color: white;
  height: 100%;
  width: 100%;
  background-image: url(../../images/main.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.motion_test_container_02::after {
  content: "";
  position: absolute;
  background: black;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
}
.motion_test_container_02 .title {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
  font-size: 38px;
  opacity: 0;
}
.motion_test_container_02 .title.active {
  opacity: 1;
  transition: all 3s;
}
.motion_test_container_02 .section_motion_test {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.motion_test_container_02 .img-wrap {
  position: relative;
  top: 40%;
  height: 40%;
  width: 1px;
  overflow: hidden;
  opacity: 0;
}
.motion_test_container_02 .img-wrap.active {
  width: 40vw;
  opacity: 1;
  transition: opacity 1s, width 2s;
}
.motion_test_container_02 .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40vw;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.6);
}
.motion_test_container_02 .img-wrap.title.active > .img {
  transform: scale(1);
  transition: 1s ease-out;
}
.motion_test_container_02 h2 {
  position: absolute;
  font-size: 56px;
  top: 70%;
  z-index: 2;
  opacity: 0;
  transition: all 0.2s;
}
.motion_test_container_02 h2.active {
  opacity: 1;
  transition: opacity 3s;
}

.cocokara {
  width: 1000px;
  margin: 100px auto;
}
.cocokara .check_check {
  background-color: blue;
  width: 100%;
  max-width: 824px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width <= 768px) {
  .cocokara .check_check {
    margin-bottom: 20px;
  }
}
.cocokara .check_check label {
  width: 100%;
  max-width: 824px;
  display: flex;
  justify-content: space-between;
}
.cocokara .check_check label .check_test {
  width: 300px;
  display: flex;
  justify-content: space-between;
  background-color: gray;
}
.cocokara .check_check label .check_item {
  font-size: 18px;
  font-weight: bold;
  padding: 0;
}
.cocokara .check_check label .check_betsu {
  width: 500px;
  background-color: blue;
}/*# sourceMappingURL=style.css.map */