@charset "UTF-8";

/*!
  Theme Name: nozomi-theme2025 framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: nozomi-theme2025 framework
  Version: 2.0
  Date: 2025.11.04
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


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

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #222222;
  --gray: #DDE3E9;
  --red: #E7242E;
  --blue: #0693E3;
  --dblue: #021CAA;
  --font: "Noto Sans JP", "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --noto: "Noto Sans JP", sans-serif;
  --public: "Public Sans", sans-serif;
  --inter: "Inter Tight", sans-serif;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.6s;
  -moz-transition: 0.6s;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  -ms-transition: 0.6s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

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

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

p {
  margin: 0;
  line-height: 2.1;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

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

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 50%;
}

@media screen and (min-width: 540px) {
  small {
    font-size: 80%;
  }
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

textarea {
  overflow: auto;
}

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

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

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

foundation/_animation.scss

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

.mv_title.mv_fadeUp {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*==================================================
    ボンッ、ヒュッ
    ===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
  animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

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

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

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

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

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

.blurTrigger {
  opacity: 0;
}

@-webkit-keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.textSlideIn {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideIn.is-animated {
  -webkit-animation-name: textSlideIn;
  animation-name: textSlideIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.textSlideDown {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideDown.is-animated {
  -webkit-animation-name: textSlideDown;
  animation-name: textSlideDown;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

@keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

.clipPathTrigger {
  opacity: 0;
}

.clipPathTrigger.is-animated {
  -webkit-animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
  animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
}

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

layout/_header.scss

***************************/
.header {
  position: relative;
  z-index: 999;
  width: 100%;
}

.header .container_l {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 20px;
}

@media screen and (min-width: 960px) {
  .header .container_l {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 960px) {
  .header .header__nav_item a {
    background: transparent;
  }

  .header .header__nav_item a:hover {
    opacity: 0.6;
  }
}

.header.--horikoshi .header__nav_item a:hover {
  color: var(--white);
  background: var(--red);
  opacity: 1;
}

.header.--kaita .header__nav_item a:hover {
  color: var(--white);
  background: var(--blue);
  opacity: 1;
}

.header.--kaita2 .header__nav_item a:hover {
  color: var(--white);
  background: var(--dblue);
  opacity: 1;
}

.header__logo {
  position: absolute;
  top: 15px;
  left: 20px;
  /* width: 100px; */
  width: 65px;
}

@media screen and (min-width: 540px) {
  .header__logo {
    top: 30px;
    left: 30px;
  }
}

@media screen and (min-width: 960px) {
  .header__logo {
    width: auto;
  }
}

.header__logo a {
  display: inline-block;
}

.header::after {
  content: "";
  transition: all 0.5s;
}

.header.-is-fixed {
  z-index: 999;
}

.header.-is-fixed .header__nav_item {
  box-shadow: 0 0 5px rgba(17, 17, 17, 0.205);
  transition: all 0.5s;
}

@media screen and (max-width: 960px) {
  .header.-is-fixed::after {
    content: "";
    background: var(--white);
    width: 100%;
    height: 60px;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.6);
  }

  .header.-is-fixed .header__nav_toggle {
    top: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 960px) {
  .header.-is-fixed.-is-open::after {
    box-shadow: 0 0 0 0 transparent;
  }
}

.header.-is-fixed .header__sub_nav_item a {
  color: var(--black);
}

.header.-is-fixed .header__sub_nav_item:has(i) a::before {
  background: var(--black);
}

.header__contents {
  position: fixed;
  top: 30px;
  right: 30px;
}

.header.-is-open .header__contents {
  position: fixed;
  top: 0;
  right: 0;
}

.header.-is-open .header__nav_item {
  box-shadow: none;
}

@media screen and (max-width: 960px) {
  .header.-is-open .header__contents {
    height: 100vh;
    position: fixed;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
  }
}

@media screen and (min-width: 960px) {
  .header.-is-open .header__contents {
    position: fixed;
    top: 30px;
    right: 30px;
  }
}

.header.-is-open .header__contents .header__sub_nav_item a {
  color: var(--black);
}

.header.-is-open .header__contents .header__sub_nav_item:has(i) a::before {
  background: var(--black);
}

@media screen and (max-width: 960px) {
  .header.-is-open .container_l {
    padding-right: 15px;
  }

  .header.-is-open .header__contents_wrap {
    opacity: 1;
    top: 20%;
    transform: translateY(-20%);
  }

  .header.-is-open .header__nav {
    margin-top: 20px;
  }

  .header.-is-open .header__nav_item {
    width: 100%;
  }

  .header.-is-open .header__nav_item a {
    width: 100%;
  }

  .header.-is-open .header__sub_nav_item a {
    color: var(--black);
  }
}

@media screen and (max-width: 960px) {
  .header__contents {
    max-width: min(100%, 250px);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    z-index: 5;
    transition: 0.5s;
    background: #fff;
    box-shadow: 1px 0 10px rgba(172, 172, 172, 0.836);
  }

  .header__contents_wrap {
    flex-direction: column;
    margin: 5px 0 0 0;
    padding: 0;
    text-align: center;
    position: relative;
    top: 100%;
    transform: translateY(-100%);
    opacity: 0;
  }

  .header__nav_list {
    flex-direction: column;
  }
}

.header__sub_nav_list {
  gap: 15px;
}

.header__sub_nav_item a {
  font-size: 13px;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: underline;
  line-height: 1.4;
}

.header__sub_nav_item:has(i) {
  position: relative;
}

.header__sub_nav_item:has(i) a {
  text-decoration: none;
  font-size: 16px;
  gap: 15px;
  display: flex;
  align-items: center;
}

.header__sub_nav_item:has(i) a::before {
  content: "";
  width: 1px;
  height: 10px;
  background: var(--white);
  display: block;
  transition: all 0.5s;
}

.header__nav_list {
  gap: 1px;
}

.header__nav_item a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: var(--white);
  display: inline-block;
  padding: 12px 22px;
  line-height: 1.4;
}

.header__nav_item a:hover {
  opacity: 0.6;
}

.header__sub_nav_list.flex-justify-end,
.header__nav_list.flex-justify-end {
  justify-content: center;
}

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

  .header__sub_nav_list.flex-justify-end,
  .header__nav_list.flex-justify-end {
    justify-content: flex-end;
  }
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
}

.header__nav_toggle {
  position: fixed;
  top: 30px;
  right: 20px;
}

.header__nav_toggle_bar {
  position: relative;
  margin: 8px 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 7px;
  background-color: var(--black);
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

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

.header__nav_toggle_bar {
  width: 30px;
}

.header__nav_toggle_bar::after {
  width: 30px;
}

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

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

.header__nav_toggle_title {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  padding-top: 5px;
  width: 4em;
  white-space: nowrap;
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(8px) rotate(135deg);
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 30px;
}

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

  .header__nav {
    max-width: 1140px;
    margin-left: 150px;
  }

  .header__nav .header__nav_list {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 960px) {
  .header.-is-open .header__nav_toggle {
    top: 20px;
    right: 10px;
  }

  .header.-is-open::after {
    background: transparent;
  }
}

@media screen and (max-width: 960px) {
  .header.-is-open .header_bg {
    background: transparent;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    cursor: pointer;
  }
}

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

layout/_footer.scss

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

footer

////////////////////////*/
.js-pagetop {
  font-size: 3rem;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 500;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--black);
}

.js-pagetop a {
  display: block;
  color: var(--white);
}

.footer__nav {
  margin-left: auto;
  width: 100%;
  margin-top: 50px;
}

.footer__nav_wrapper {
  background: url(img/common/footer_bg.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.footer__nav_wrapper.portrait::after {
  bottom: 5px;
  left: 5px;
}

.page--horikoshi .footer__nav_wrapper {
  background: url(img/horikoshi/common/footer_bg.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
}

.page--kaita .footer__nav_wrapper {
  background: url(img/kaita/common/footer_bg.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
}

.page--kaita2 .footer__nav_wrapper {
  background: url(img/kaita2/common/footer_bg.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
}

.page--nozomi .footer__nav_wrapper {
  background: url(img/nozomi-koi/common/footer_bg.jpg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer__navtext {
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer__navtext br {
  display: none;
}

@media screen and (min-width: 768px) {
  .footer__navtext {
    font-size: 22px;
  }

  .footer__navtext br {
    display: block;
  }
}

.footer__nav_list01 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media screen and (min-width: 540px) {
  .footer__nav_list01 {
    align-items: flex-end;
  }
}

.footer__nav_item01 {
  width: 100%;
}

@media screen and (min-width: 400px) {
  .footer__nav_item01 {
    max-width: 360px;
  }
}

.footer__nav_item01 a {
  background: var(--white);
  border-radius: 2px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 10px 25px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__nav_item01 a::after {
  content: "";
  background: url(img/common/arrow-b.png);
  width: 22px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer__nav_item01 a.--horikoshi:hover {
  opacity: 1;
  color: var(--white);
  background: var(--red);
}

.footer__nav_item01 a.--horikoshi:hover::after {
  content: "";
  background: url(img/common/arrow-w.png);
  width: 22px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer__nav_item01 a.--kaita:hover {
  opacity: 1;
  color: var(--white);
  background: var(--blue);
}

.footer__nav_item01 a.--kaita:hover::after {
  content: "";
  background: url(img/common/arrow-w.png);
  width: 22px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer__nav_item01 a.--kaita2:hover {
  opacity: 1;
  color: var(--white);
  background: var(--dblue);
}

.footer__nav_item01 a.--kaita2:hover::after {
  content: "";
  background: url(img/common/arrow-w.png);
  width: 22px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.page--horikoshi .footer__nav_item01 a:hover {
  opacity: 1;
  color: var(--white);
  background: var(--red);
}

.page--horikoshi .footer__nav_item01 a:hover::after {
  content: "";
  background: url(img/common/arrow-w.png);
  width: 22px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.page--kaita .footer__nav_item01 a:hover {
  opacity: 1;
  color: var(--white);
  background: var(--blue);
}

.page--kaita .footer__nav_item01 a:hover::after {
  content: "";
  background: url(img/common/arrow-w.png);
  width: 22px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.page--kaita2 .footer__nav_item01 a:hover {
  opacity: 1;
  color: var(--white);
  background: var(--dblue);
}

.page--kaita2 .footer__nav_item01 a:hover::after {
  content: "";
  background: url(img/common/arrow-w.png);
  width: 22px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer__nav_tel {
  color: var(--white);
  font-size: 28px;
  letter-spacing: 0.05em;
  font-family: var(--public);
  font-weight: 400;
  border-bottom: 1px solid var(--white);
  line-height: 1;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 10px;
  width: 100%;
  max-width: 360px;
}

@media screen and (min-width: 400px) {
  .footer__nav_tel {
    font-size: 32px;
  }
}

.footer__nav_tel::before {
  content: "TEL.";
  /* font-size: 12px; */
  font-size: 16px;
  letter-spacing: 0.05em;
}

.sitemap__contents {
  margin-top: 70px;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .sitemap__contents {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer__logo {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer__logo {
    text-align: right;
  }
}

.sitemap__list {
  width: 100%;
  gap: 0 20px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 768px) {
  .sitemap__list {
    margin-top: 0;
    gap: 0 30px;
    max-width: 450px;
  }
}

.sitemap__item {
  width: 100%;
}

.sitemap__link {
  border-radius: 2px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 10px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray);
}

.sitemap__link::after {
  content: "";
  background: url(img/common/arrow-b.png);
  width: 22px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
}

.sitemap__link:hover {
  opacity: 1;
  color: var(--black);
  border-bottom: 1px solid var(--black);
}

.sitemap__link:hover::after {
  content: "";
  background: url(img/common/arrow-b.png);
  width: 22px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
}

.sns_list {
  margin-top: 50px;
  gap: 5px;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .sns_list {
    margin: 0;
    margin-top: 75px;
  }
}

.sns_link {
  background: #F1F4F6;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sns_link i {
  font-size: 20px;
}

.footer:has(.sns_list) .footer__nav_list02 {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .footer:has(.sns_list) .footer__nav_list02 {
    margin-top: 75px;
  }
}

.footer__nav_list02 {
  margin-top: 75px;
  gap: 5px 20px;
}

.footer__nav_list02 a {
  font-size: 12px;
  text-decoration: underline;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.footer__nav_item02.--first {
  width: 100%;
  text-align: right;
}

@media screen and (min-width: 540px) {
  .footer__nav_item02.--first {
    width: auto;
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid #DDE3E9;
  }
}

a.--horikoshi:hover {
  background: var(--red);
  opacity: 1;
  color: var(--white);
}

a.--kaita:hover {
  background: var(--blue);
  opacity: 1;
  color: var(--white);
}

a.--kaita2:hover {
  background: var(--dblue);
  opacity: 1;
  color: var(--white);
}

.footer__copyright {
  font-size: 9px;
  display: block;
  text-align: right;
  margin-top: 40px;
  padding-bottom: 50px;
}

.bg-w {
  background: var(--white);
}

.footer .bg-w {
  margin-bottom: 735px;
}

@media screen and (min-width: 768px) {
  .footer .bg-w {
    margin-bottom: 361px;
  }
}

@media screen and (min-width: 960px) {
  .footer .bg-w {
    margin-bottom: 414px;
  }
}

.footer .is_page.bg-w {
  margin-bottom: 734px;
}

@media screen and (min-width: 768px) {
  .footer .is_page.bg-w {
    margin-bottom: 347px;
  }
}

@media screen and (min-width: 960px) {
  .footer .is_page.bg-w {
    margin-bottom: 400px;
  }
}

.preschool_list {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .preschool_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.preschool_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preschool_item.--horikoshi .preschool_link {
  background: url(img/common/preschool_horikoshi.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.preschool_item.--horikoshi .preschool_title span {
  background: var(--red);
}

.preschool_item.--kaita .preschool_link {
  background: url(img/common/preschool_kaita.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.preschool_item.--kaita .preschool_title span {
  background: var(--blue);
}

.preschool_item.--kaita2 .preschool_link {
  background: url(img/common/preschool_kaita2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.preschool_item.--kaita2 .preschool_title span {
  background: var(--dblue);
}

.preschool_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: 40px 10px;
  gap: 30px;
  position: relative;
}

.preschool_link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

@media screen and (min-width: 768px) {
  .preschool_link {
    padding: 80px 10px 80px;
    gap: 50px;
  }
}

@media screen and (min-width: 1200px) {
  .preschool_link {
    padding: 113px 10px 100px;
  }
}

.preschool_link:hover {
  color: var(--white);
  opacity: 1;
}

.preschool_link:hover::before {
  background: rgba(0, 0, 0, 0.4);
}

.preschool_title {
  text-align: center;
  font-size: 20px;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .preschool_title {
    font-size: 24px;
  }
}

.preschool_title span {
  padding: 0 10px;
  border-radius: 3px;
  display: inline-block;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .preschool_title span {
    font-size: 20px;
  }
}

.preschool_link-text {
  border-bottom: 1px solid var(--white);
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 10px;
  font-size: 15px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

.preschool_link-text::after {
  content: "";
  background: url(img/common/arrow-w.png);
  width: 22px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

.preschool_item.active .preschool_link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

.preschool_item.active .preschool_link-text {
  border: none;
  background: #707070;
  border-radius: 25px;
  padding: 12px 22px;
}

.preschool_item.active .preschool_link-text::after {
  display: none;
}

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

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

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

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #ABB2B8;
  font-size: 14px;
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 2.5;
  display: block;
  text-decoration: none;
  padding: 0;
  opacity: 1;
}

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

  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 15px;
  }
}

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

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 60px;
    height: 60px;
    line-height: 4;
    font-size: 16px;
  }
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  line-height: 3;
  width: 66px;
  position: relative;
  color: transparent;
}

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

  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    line-height: 4;
  }
}

.wp-pagenavi .previouspostslink {
  margin-right: auto;
}

.wp-pagenavi .previouspostslink::before {
  content: "";
  width: 22px;
  height: 7px;
  display: block;
  background: url(img/common/blog_arrow_l.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  z-index: 5;
  transition: all 0.5s;
}

.wp-pagenavi .previouspostslink:hover::before {
  width: 22px;
  height: 7px;
  display: block;
  background: url(img/common/blog_arrow_l-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  z-index: 5;
  transition: all 0.5s;
}

@media screen and (min-width: 960px) {
  .wp-pagenavi .previouspostslink {
    padding-left: 60px;
    margin-right: auto;
  }
}

.wp-pagenavi .previouspostslink::after {
  content: "";
  width: 66px;
  height: 40px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #F1F4F6;
}

@media screen and (min-width: 960px) {
  .wp-pagenavi .previouspostslink::after {
    width: 66px;
    height: 40px;
  }
}

.wp-pagenavi .nextpostslink {
  margin-left: auto;
}

@media screen and (min-width: 960px) {
  .wp-pagenavi .nextpostslink {
    padding-right: 60px;
    margin-left: auto;
  }
}

.wp-pagenavi .nextpostslink::before {
  content: "";
  width: 22px;
  height: 7px;
  display: block;
  background: url(img/common/blog_arrow_r.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  z-index: 5;
}

.wp-pagenavi .nextpostslink:hover::before {
  content: "";
  width: 22px;
  height: 7px;
  display: block;
  background: url(img/common/blog_arrow_r-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  z-index: 5;
}

.wp-pagenavi .nextpostslink::after {
  content: "";
  width: 66px;
  height: 40px;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #F1F4F6;
  transition: all 0.5s;
}

@media screen and (min-width: 960px) {
  .wp-pagenavi .nextpostslink::after {
    width: 66px;
    height: 40px;
  }
}

.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
  background: var(--black);
}

.page--horikoshi .wp-pagenavi .previouspostslink:hover::after,
.page--horikoshi .wp-pagenavi .nextpostslink:hover::after {
  background: var(--red);
}

.page--kaita .wp-pagenavi .previouspostslink:hover::after,
.page--kaita .wp-pagenavi .nextpostslink:hover::after {
  background: var(--blue);
}

.page--kaita2 .wp-pagenavi .previouspostslink:hover::after,
.page--kaita2 .wp-pagenavi .nextpostslink:hover::after {
  background: var(--dblue);
}

.wp-pagenavi span.current {
  color: #222222;
  cursor: default;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }

  .wp-pagenavi .extend+.larger {
    display: none;
  }
}

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

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 40px;
  }
}

.pager {
  margin: 20px 0 100px 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}

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

layout/_breadcrumbs.scss

***************************/
.l-breadcrumbs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 15px;
  font-size: 12px;
}

.l-breadcrumbs a {
  color: #fff;
  display: block;
}

.l-breadcrumbs__item {
  position: relative;
}

.l-breadcrumbs__item:not(:first-of-type) {
  padding-left: 20px;
}

.l-breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 8px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}

.l-breadcrumbs__item:last-of-type {
  pointer-events: none;
  text-decoration: none;
}

.l-pageTitle .l-breadcrumbs {
  position: absolute;
  bottom: 0;
  left: 0;
}

.breadcrumbs_content {
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 5;
  background-color: #fff;
  padding: 10px 30px;
  padding-bottom: 0;
  padding-right: 40px;
  border-radius: 12px 0 0 0;
}

@media screen and (max-width: 768px) {
  .breadcrumbs_content {
    width: 85%;
  }
}

@media screen and (max-width: 450px) {
  .breadcrumbs_content {
    width: 85%;
    padding: 10px 15px;
    padding-bottom: 0;
    padding-right: 10px;
  }
}

.breadcrumbs {
  font-size: 15px;
  font-weight: bold;
  color: #999999;
}

@media screen and (max-width: 450px) {
  .breadcrumbs {
    font-size: 14px;
  }
}

.breadcrumbs li:before {
  content: "／";
  margin: 0 10px;
  color: #999999;
}

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

.breadcrumbs a {
  color: #444444;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  color: #999999;
}

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

layout/_page-title.scss

***************************/
.title01 {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 1024px) {
  .title01 {
    flex-direction: column;
    gap: 20px;
  }
}

.title01 span {
  font-size: 34px;
  font-weight: 100;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .title01 span {
    font-size: 44px;
  }
}

@media screen and (min-width: 1024px) {
  .title01 span {
    writing-mode: vertical-rl;
  }
}

.title01::before {
  content: "";
  width: 60px;
  height: 1px;
  display: block;
  background: #DDE3E9;
}

@media screen and (min-width: 1024px) {
  .title01::before {
    width: 1px;
    height: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .title01.type02 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
  }
}

.title01.type02::before {
  content: "";
  width: 60px;
  height: 1px;
  display: block;
  background: #DDE3E9;
}

@media screen and (min-width: 1024px) {
  .title01.type02::before {
    width: 60px;
    height: 1px;
  }
}

.title01.type02 span {
  font-size: 34px;
  font-weight: 100;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .title01.type02 span {
    font-size: 44px;
  }
}

@media screen and (min-width: 1024px) {
  .title01.type02 span {
    writing-mode: horizontal-tb;
  }
}

.top_sec-wrap {
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .top_sec-wrap {
    padding-top: 60px;
  }
}

.sec_title_wrap {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .sec_title_wrap .title01 {
    position: absolute;
    left: 40px;
    top: 0;
  }
}

@media screen and (min-width: 1500px) {
  .sec_title_wrap .title01 {
    left: 70px;
  }
}

@media screen and (min-width: 1024px) {
  .sec_title_wrap .title01.type02 {
    position: static;
    left: 40px;
    top: 0;
  }
}

.page_title {
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 100;
}

@media screen and (min-width: 490px) {
  .page_title {
    font-size: 42px;
  }
}

@media screen and (min-width: 1200px) {
  .page_title {
    font-size: 56px;
  }
}

.title02 {
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 100;
  margin-bottom: 30px;
}

@media screen and (min-width: 1024px) {
  .title02 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.title03 {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 100;
}

@media screen and (min-width: 490px) {
  .title03 {
    font-size: 24px;
    gap: 20px;
  }
}

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

.title03.is_arrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 490px) {
  .title03.is_arrow {
    gap: 20px;
  }
}

.title03.is_arrow::after {
  content: "";
  background: url(img/common/arrow-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 7px;
  display: block;
  position: relative;
  z-index: 5;
  transition: all 0.3s;
}

.title04 {
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 300;
  font-size: 20px;
}

@media screen and (min-width: 490px) {
  .title04 {
    font-size: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .title04 {
    font-size: 26px;
  }
}

.title05 {
  background: #F6F8F9;
  border-radius: 2px;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 300;
  padding: 34px 36px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .title05 {
    font-size: 32px;
    margin-bottom: 50px;
  }
}

.title06 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .title06 {
    font-size: 20px;
  }
}

.title07 {
  background: #F1F4F6;
  font-size: 15px;
  padding: 9px 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

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

object/component/_box.scss

***************************/
.container_l {
  max-width: 1810px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.container_m {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.container_m.type2 {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (min-width: 1024px) {
  .container_m.type2 {
    padding-left: 10%;
  }
}

@media screen and (min-width: 1500px) {
  .container_m.type2 {
    padding-left: 7%;
  }
}

@media screen and (min-width: 1690px) {
  .container_m.type2 {
    padding-left: 20px;
  }
}

.container_s {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.container_s.type2 {
  max-width: 1160px;
  padding-left: 0;
  padding-right: 0;
}

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

object/component/_button.scss

***************************/
.btn01 {
  width: 100%;
  max-width: 240px;
  font-size: 15px;
  font-weight: 300;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  padding: 10px 0 20px;
  padding-right: 22px;
  border-bottom: 1px solid #DDE3E9;
}

.btn01::after {
  content: "";
  background: url(img/common/arrow-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 7px;
  display: block;
  position: relative;
  z-index: 5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.btn01::before {
  content: "";
  display: block;
  background: var(--white);
  width: 66px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: all 0.5s;
}

.btn01:hover {
  opacity: 1;
}

.btn01:hover::after {
  background: url(img/common/arrow-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 7px;
  display: block;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.btn01:hover::before {
  background: var(--black);
}

.sec_news_btn .btn01 {
  margin-left: auto;
}

.btn01.bg_gray::before {
  background: #F1F4F6;
}

.btn01.bg_gray:hover::before {
  background: var(--black);
}

.page--horikoshi .btn01.bg_gray::before {
  background: #F1F4F6;
}

.page--horikoshi .btn01.bg_gray:hover::before {
  background: var(--red);
}

.page--kaita .btn01.bg_gray::before {
  background: #F1F4F6;
}

.page--kaita .btn01.bg_gray:hover::before {
  background: var(--blue);
}

.page--kaita2 .btn01.bg_gray::before {
  background: #F1F4F6;
}

.page--kaita2 .btn01.bg_gray:hover::before {
  background: var(--dblue);
}

.btn01.bg_white::before {
  background: #fff;
}

.btn01.bg_white:hover::before {
  background: var(--black);
}

.page--horikoshi .btn01.bg_white::before {
  background: #fff;
}

.page--horikoshi .btn01.bg_white:hover::before {
  background: var(--red);
}

.page--kaita .btn01.bg_white::before {
  background: #fff;
}

.page--kaita .btn01.bg_white:hover::before {
  background: var(--blue);
}

.page--kaita2 .btn01.bg_white::before {
  background: #fff;
}

.page--kaita2 .btn01.bg_white:hover::before {
  background: var(--dblue);
}

.btn02_wrap {
  display: flex;
  justify-content: center;
}

.btn02 {
  font-size: 15px;
  font-weight: 300;
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 10px;
  position: relative;
}

.btn02::after {
  content: "";
  background: url(img/common/blog_arrow_l.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 7px;
  display: block;
  position: relative;
  z-index: 5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

.btn02::before {
  content: "";
  display: block;
  background: #F1F4F6;
  width: 66px;
  height: 40px;
  transition: all 0.5s;
}

.btn02:hover {
  opacity: 1;
}

.btn02:hover::after {
  background: url(img/common/blog_arrow_l-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 7px;
  display: block;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.btn02:hover::before {
  background: var(--black);
}

.page--horikoshi .btn02:hover::before {
  background: var(--red);
}

.page--kaita .btn02:hover::before {
  background: var(--blue);
}

.page--kaita2 .btn02:hover::before {
  background: var(--dblue);
}

.btn03 {
  color: #fff;
  background: var(--black);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px 25px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 361px) {
  .btn03 {
    max-width: 360px;
  }
}

.btn03::after {
  content: "";
  background: url(img/common/arrow-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 7px;
  display: block;
  pointer-events: none;
}

.btn03:hover {
  color: #fff;
}

.page--horikoshi .btn03:hover {
  color: #fff;
  background: var(--red);
}

.page--kaita .btn03:hover {
  color: #fff;
  background: var(--blue);
}

.page--kaita2 .btn03:hover {
  color: #fff;
  background: var(--dblue);
}

.btn04 {
  width: 100%;
  max-width: 300px;
  font-size: 15px;
  font-weight: 300;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  padding: 10px 0 20px;
  padding-right: 22px;
  border-bottom: 1px solid #DDE3E9;
}

.btn04::after {
  content: "";
  background: url(img/common/arrow_upper-right_b.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  display: inline-block;
  position: relative;
  z-index: 5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}

.btn04::before {
  content: "";
  display: block;
  background: #F1F4F6;
  width: 66px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: all 0.5s;
}

.btn04:hover {
  opacity: 1;
}

.btn04:hover::after {
  background: url(img/common/arrow_upper-right_w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}

.btn04:hover::before {
  background: var(--black);
}

.page--horikoshi .btn04:hover::before {
  background: var(--red);
}

.page--kaita .btn04:hover::before {
  background: var(--blue);
}

.page--kaita2 .btn04:hover::before {
  background: var(--dblue);
}

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

object/component/_form.scss

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

object/object/project/_home.scss

***************************/
.top_mv {
  position: relative;

  &.--top {
    padding-top: 100px;
  }
}

.mv_title {
  z-index: 10;
  /* position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0; */
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  font-weight: 100;
  /* color: var(--white); */
  line-height: 1.4;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 960px) {
  .mv_title {
    /* top: 50%;
    transform: translateY(-50%); */
    width: auto;
  }
}

@media screen and (min-width: 540px) {
  .mv_title {
    font-size: 50px;
  }
}

@media screen and (min-width: 960px) {
  .mv_title {
    font-size: 60px;
  }
}

.mv_title span {
  letter-spacing: -0.5em;
}

.page_mv_title {
  position: absolute;
  bottom: 36px;
  left: 45px;
  /* font-size: 30px; */
  font-size: 28px;
  line-height: 1.4;
  font-weight: 100;
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
  z-index: 40;
  letter-spacing: 0.05em;
  padding-right: 30px;
}

@media screen and (max-width: 540px) {
  .page--horikoshi .page_mv_title {
    line-height: 1.2;
  }
}




@media screen and (min-width: 768px) {
  .page_mv_title {
    font-size: 40px;

  }
}

@media screen and (min-width: 960px) {
  .page_mv_title {
    font-size: 50px;
    bottom: 46px;
    left: 70px;
  }
}

.page_mv_title span {
  letter-spacing: -0.5em;
}

/* .top_mv_img {
  width: 100%;
  height: 80vh;
  border: 20px solid #fff;
  border-bottom: none;
  padding-bottom: 0;
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .top_mv_img {
    height: 100vh;
  }
} */

/* .top_mv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
} */

.top_mv_img.portrait::after {
  content: "@ToLoLo studio";
  position: absolute;
  bottom: 5px;
  right: 25px;
}

.top_mv_movie {
  position: relative;
  overflow: hidden;
  /* width: 100%; */

  /* height: 70vh; */
  border: 10px solid #fff;
  border-bottom: none;
}



@media screen and (min-width: 768px) {
  .top_mv_movie {
    border: 20px solid #fff;
  }
}

/* @media screen and (min-width: 960px) {
  .top_mv_movie {
    height: 930px;
  }
} */
.top_mv_movie video {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .top_mv_movie {
    width: 100%;
    height: 70vh;
  }

  .top_mv_movie video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: calc(100% - 30px);
    min-height: 100%;
    transform: translate(-50%, -50%);
    width: auto;
  }
}

/* .top_mv_movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: calc(100% - 30px);
  min-height: 100%;
  transform: translate(-50%, -50%);
} */

.portrait::after {
  content: "@ToLoLo studio";
  position: absolute;
  font-family: var(--public);
  color: var(--white);
  font-weight: 500;
  font-size: 11px;
}

.top_introduction {
  /* padding-top: 100px;
  padding-bottom: 100px; */
  padding-top: 40px;
  padding-bottom: 100px;
}

/* @media screen and (min-width: 960px) {
  .top_introduction {
    padding-top: 160px;
    padding-bottom: 150px;
  }
} */

@media screen and (min-width: 768px) {
  .top_introduction .main_contents .introduction_list {
    margin-right: calc(50% - 50vw);
  }
}

.introduction_list {
  display: grid;
  gap: 1px;
}

@media screen and (min-width: 768px) {
  .introduction_list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1100px) {
  .introduction_list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.introduction_item {
  margin-bottom: 40px;
}

@media screen and (min-width: 1100px) {
  .introduction_item {
    margin-bottom: 0;
  }
}

.introduction_link {
  display: block;
}

.introduction_link:hover {
  opacity: 1;
}

.introduction_link:hover .introduction_img img {
  transform: scale(1.03);
}

.introduction_img {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.introduction_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s;
}

.introduction_title {
  font-size: 16px;
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-right: 25px;
  margin-top: 20px;
  padding-left: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.introduction_title::after {
  content: "";
  background: url(img/common/arrow-b.png);
  width: 22px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}

@media screen and (min-width: 768px) {
  .introduction_title {
    font-size: 18px;
    background-size: 22px;
  }
}

.introduction_title.--horikoshi span {
  color: var(--red);
}

.introduction_title.--kaita span {
  color: var(--blue);
}

.introduction_title.--kaita2 span {
  color: var(--dblue);
}

.top_news {
  padding-bottom: 100px;
}

@media screen and (min-width: 960px) {
  .top_news {
    padding-bottom: 150px;
  }
}

.cat {
  display: grid;
  grid-template-columns: 7px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
}

.cat::before {
  content: "";
  background: var(--gray);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
  transition: all 0.5s;
}

.cat.current.--black::before {
  background: #464343;
}

.cat.current.--news::before {
  background: #464343;
}

.cat.current.--blog::before {
  background: #464343;
}

.cat.current.--horikoshi::before {
  background: var(--red);
}

.cat.current.--kaita::before {
  background: var(--blue);
}

.cat.current.--kaita2::before {
  background: var(--dblue);
}

.cat:hover.--black::before {
  background: #464343;
}

.cat:hover.--news::before {
  background: #464343;
}

.cat:hover.--blog::before {
  background: #464343;
}

.cat:hover.--horikoshi::before {
  background: var(--red);
}

.cat:hover.--kaita::before {
  background: var(--blue);
}

.cat:hover.--kaita2::before {
  background: var(--dblue);
}

.cat__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}

.cat__list .cat.--black::before {
  background: #464343;
}

.cat__list .cat.--horikoshi::before {
  background: var(--red);
}

.cat__list .cat.--kaita::before {
  background: var(--blue);
}

.cat__list .cat.--kaita2::before {
  background: var(--dblue);
}

.date {
  font-family: var(--public);
  color: #ABB2B8;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 400;
}

.top_news-cat__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.top_news-cat__list li {
  width: 45%;
}

@media screen and (min-width: 450px) {
  .top_news-cat__list li {
    width: 30%;
  }
}

@media screen and (min-width: 768px) {
  .top_news-cat__list li {
    width: 100%;
  }
}

.top_news-cat__list a {
  font-size: 15px;
  padding: 5px 0;
}

@media screen and (min-width: 768px) {
  .top_news-cat__list {
    width: 15%;
    display: block;
  }
}

.news__list {
  width: 100%;
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .news__list {
    width: 85%;
    padding-top: 0;
  }
}

.news__list .cat {
  width: 100%;
  max-width: 90px;
}

.news__contents {
  padding: 20px 0;
  display: block;
  border-bottom: 1px solid var(--gray);
}

.news_title {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.bg-b {
  background: #F1F4F6;
}

.top_group {
  padding-top: 60px;
  padding-bottom: 90px;
}

@media screen and (min-width: 1024px) {
  .top_group {
    padding-top: 0;
  }
}

.group__list {
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .group__list {
    /* gap: 40px; */
    gap: 25px;
  }
}

@media screen and (min-width: 1024px) {
  .group__list.top_sec-wrap {
    padding-top: 90px;
  }
}

.group__item {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .group__item {
    max-width: calc(50% - 20px);
  }
}

@media screen and (min-width: 1100px) {
  .group__item {
    /* max-width: calc(33.3333333333% - 30px); */
    max-width: calc(25% - 20px);
    margin-bottom: 0;
  }
}

.group__link:hover .group_img img {
  transform: scale(1.02);
}

.group_img {
  overflow: hidden;
  width: 100%;
}

.group_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s;
}

.group__title {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 15px;
}

.group__title i {
  color: #ABB2B8;
  margin-left: 10px;
}

.top_other {
  padding: 80px 0 0;
}

@media screen and (min-width: 768px) {
  .top_other {
    padding: 100px 0 0;
  }
}

.other__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .other__list {
    gap: 40px;
  }
}

.other__item {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .other__item {
    max-width: calc(50% - 20px);
  }
}

@media screen and (min-width: 1100px) {
  .other__item {
    max-width: calc(33.3333333333% - 30px);
    margin-bottom: 0;
  }
}

.other__link {
  border: 1px solid #C1C1C1;
  display: block;
}

.other__link:hover .other__img img {
  transform: scale(1.02);
}

.other__img {
  overflow: hidden;
}

.other__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s;
}

.other__title {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  text-align: center;
  padding: 10px 5px;
}

.top_history {
  padding: 80px 0;
}

@media screen and (min-width: 768px) {
  .top_history {
    padding: 100px 0 200px;
  }
}

@media screen and (min-width: 1024px) {
  .top_history {
    padding: 0 0 200px;
    margin-top: 100px;
  }
}

.history__item {
  border-top: 1px solid var(--gray);
  display: flex;
}

.history__date {
  padding: 10px 0;
  font-size: 17px;
  width: 100%;
  max-width: 70px;
  font-family: var(--public);
  font-weight: 600;
  font-style: italic;
}

@media screen and (min-width: 600px) {
  .history__date {
    max-width: 80px;
    font-size: 18px;
  }
}

.history__content {
  padding: 20px 0;
  padding-left: 30px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 600px) {
  .history__content {
    width: calc(100% - 100px);
  }
}

.history__date {
  padding: 20px 0;
}

.history__content {
  position: relative;
}

.history__content::after {
  content: "";
  width: 2px;
  height: 100%;
  background: var(--white);
  background-image: linear-gradient(var(--black) 30%, transparent 30%);
  background-size: 3px 6px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 4px;
  z-index: 0;
}

.history__content.--first::after {
  height: 50%;
}

.history__content.--last::after {
  bottom: auto;
  top: 0;
  height: 20%;
}

@media screen and (min-width: 454px) {
  .history__content.--last::after {
    height: 30%;
  }
}

@media screen and (min-width: 764px) {
  .history__content.--last::after {
    height: 35%;
  }
}

.history__content.--last {
  .num:not(:last-of-type) {
    position: relative;

    &:after {
      content: "";
      width: 2px;
      height: 100%;
      background: var(--white);
      background-image: linear-gradient(var(--black) 30%, transparent 30%);
      background-size: 3px 6px;
      display: block;
      position: absolute;
      top: 18px;
      left: -26px;
      z-index: 0;
    }
  }
}

.num {
  position: relative;
  z-index: 4;
  font-weight: 400;
}

.num::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: -30px;
}

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

object/object/project/_page.scss

***************************/
.page_news {
  padding: 60px 0;
}

@media screen and (min-width: 768px) {
  .page_news {
    padding-left: 30px;
  }
}

.page_news_item {
  margin-bottom: 20px;
}

.page_news_item:last-child {
  margin-bottom: 0;
}

.page_news_item a {
  gap: 0 10px;
}

.page_news_item a::before {
  content: "";
  width: 10px;
  height: 1px;
  background: #ABB2B8;
  display: block;
}

.page_news_item a .date {
  padding-right: 25px;
}

.sec_features {
  background: #F1F4F6;
  position: relative;
}

.sec_features .title01 {
  z-index: 5;
  padding-top: 75px;
}

@media screen and (min-width: 1024px) {
  .sec_features .title01 {
    padding-top: 0;
  }
}

.sec_features .sec_title_wrap {
  position: relative;
  z-index: 2;
}

.sec_features .features_img_wrap {
  width: 100%;
  max-width: 1130px;
}

@media screen and (min-width: 1024px) {
  .sec_features .features_img_wrap .features_img {
    margin-left: -60px;
  }
}

@media screen and (min-width: 1300px) {
  .sec_features .features_img_wrap .features_img {
    margin-left: -100px;
  }
}

.sec_features .features_wrap {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 50px;
  gap: 50px;
}

@media screen and (min-width: 1024px) {
  .sec_features .features_wrap {
    flex-direction: row;
    gap: 80px;
    padding-top: 115px;
  }
}

@media screen and (min-width: 1300px) {
  .sec_features .features_wrap {
    gap: 130px;
  }
}

.sec_features .features_text_box {
  width: 100%;
}

.sec_features .features_text_box .btn01 {
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .sec_features .features_text_box .btn01 {
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .sec_features .features_text_box {
    /* max-width: 300px; */
    max-width: 350px;
    padding-bottom: 190px;
  }
}

.sec_features .features_text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.1;
  font-weight: 300;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .sec_features .features_text {
    padding-bottom: 70px;
  }
}

.sec_other-features {
  padding: 100px 0;
}

@media screen and (min-width: 768px) {
  .sec_other-features {
    padding: 150px 0;
  }
}

.other-features_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 0;
}

@media screen and (min-width: 640px) {
  .other-features_list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .other-features_list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .other-features_list.column-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .other-features_list.column-3 .other-features_box {
    max-width: 380px;
  }
}

.other-features_item {
  width: 100%;
  display: block;
  border-left: 1px solid #DDE3E9;
}

.other-features_item:last-child {
  border-right: 1px solid #DDE3E9;
}

.other-features_item:nth-child(2) {
  border-right: 1px solid #DDE3E9;
}

@media screen and (min-width: 640px) {
  .other-features_item:nth-child(2) {
    border-right: none;
  }
}

@media screen and (min-width: 640px) {
  .other-features_item:nth-child(3) {
    border-right: 1px solid #DDE3E9;
  }
}

@media screen and (min-width: 1024px) {
  .other-features_item:nth-child(3) {
    border-right: none;
  }
}

.other-features_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  padding: 0 10px;
  height: 100%;
}

.other-features_text {
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-top: 15px;
}

.other-features_img {
  overflow: hidden;
  margin-top: 100px;
}

.other-features_img img {
  width: 100%;
  transition: all 0.5s;
}

.other-features_link:hover .other-features_img img {
  transform: scale(1.08);
}

.other-features_link:hover .title03::after {
  transform: translateX(5px);
}

.page--horikoshi .sec_about {
  background: url(img/horikoshi/about_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page--kaita2 .sec_about {
  background: url(img/kaita2/about_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.page--nozomi .sec_about {
  background: url(img/nozomi-koi/about_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.sec_about {
  background: url(img/horikoshi/about_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.sec_about .btn01 {
  padding: 100px 0;
  font-size: 24px;
  color: #fff;
  border: none;
  max-width: 100%;
}

@media screen and (min-width: 640px) {
  .sec_about .btn01 {
    font-size: 36px;
    padding: 200px 0;
  }
}

.sec_news {
  padding: 70px 0 130px;
}

.sec_news_wrap {
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .sec_news_wrap {
    padding-top: 80px;
  }
}

.sec_news_list {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 1100px) {
  .sec_news_list {
    gap: 0 50px;
  }
}

@media screen and (min-width: 1100px) {
  .sec_ib_news_wrap .sec_news_list {
    gap: 0 45px;
  }
}

.sec_news_item {
  padding: 20px 0;
  border-bottom: 1px solid #DDE3E9;
}

@media screen and (min-width: 1100px) {
  .sec_news_item {
    width: 45%;
  }
}

@media screen and (min-width: 1440px) {
  .sec_news_item {
    width: 48%;
  }
}

.sec_news_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (min-width: 690px) {
  .sec_news_box {
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 768px) {
  .sec_news_box {
    gap: 30px;
  }
}

.sec_news_img {
  overflow: hidden;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 360/239;
}

.sec_news_img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s;
}

.sec_news_title {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 200;
  margin-bottom: 10px;
}

.page--horikoshi .sec_news_link:hover {
  opacity: 1;
  color: var(--red);
}

.page--kaita .sec_news_link:hover {
  opacity: 1;
  color: var(--blue);
}

.page--kaita2 .sec_news_link:hover {
  opacity: 1;
  color: var(--dblue);
}

.sec_news_text {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.sec_news_list_sub {
  gap: 20px;
  margin-top: 10px;
}

.sec_news_list_sub .date {
  font-size: 12px;
}

.sec_news_list_sub .sec_news_cat a {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-decoration: underline;
  display: block;
}

.sec_news_btn {
  padding-top: 50px;
}

.page_mv_title.type02 {
  text-decoration: none;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  left: 35px;
}

@media screen and (min-width: 764px) {
  .page_mv_title.type02 {
    left: 45px;
  }
}

.page_mv_title.type02 span {
  letter-spacing: normal;
  font-size: 16px;
}

@media screen and (min-width: 764px) {
  .page_mv_title.type02 span {
    font-size: 22px;
  }
}

.page--nozomi .features_text_box .btn01 {
  max-width: 280px;
}

.page--nozomi .sec_img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  -o-object-position: center;
  object-position: center;
}

@media screen and (min-width: 1024px) {
  .page--nozomi .sec_news {
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .page--nozomi .sitemap__list {
    max-width: 530px;
  }
}

.page_mv {
  background: #F1F4F6;
  border: 20px solid #fff;
  border-bottom: none;
}

.page_mv .page_title {
  padding: 230px 30px 50px 0;
  text-align: right;
}

@media screen and (min-width: 490px) {
  .page_mv .page_title {
    font-size: 42px;
    padding: 270px 40px 50px 0;
  }
}

@media screen and (min-width: 1200px) {
  .page_mv .page_title {
    font-size: 56px;
    padding: 285px 60px 50px 0;
  }
}

.page_mv .page_mv_img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sec_first {
  padding-top: 100px;
}

@media screen and (min-width: 768px) {
  .sec_first {
    padding-top: 130px;
  }
}

.sec_first.type02 {
  padding-top: 140px;
}

@media screen and (min-width: 768px) {
  .sec_first.type02 {
    padding-top: 170px;
  }
}

.sec_last {
  padding-bottom: 120px;
}

@media screen and (min-width: 768px) {
  .sec_last {
    padding-bottom: 150px;
  }
}

.w-100 {
  width: 100%;
}

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

object/object/project/_news.scss

***************************/
.page-sec_news .sec_news_box {
  flex-direction: column;
}

.sec_news_list-type02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 20px;
}

@media screen and (min-width: 768px) {
  .sec_news_list-type02 {
    gap: 60px 40px;
  }
}

@media screen and (min-width: 960px) {
  .sec_news_list-type02 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px 40px;
  }
}

@media screen and (min-width: 768px) {
  .sec_news_list-type02 .sec_news_box {
    gap: 20px;
  }
}

.sec_news_list-type02 .sec_news_item {
  width: 100%;
  border: none;
  padding: 0;
}

.sec_news_list-type02 .sec_news_item .sec_news_img {
  max-width: 100%;
}

.sec_news_list-type02 .sec_news_item .sec_news_img img {
  width: 100%;
}

.sticky_main_wrap .sticky_wrap {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .sticky_main_wrap {
    display: flex;
    gap: 20px;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .sticky_main_wrap .sticky_wrap {
    height: 100vh;
    width: 100%;
    max-width: 245px;
    border-left: 1px solid #DDE3E9;
    padding-left: 50px;
    margin-bottom: 0;
  }

  .sticky_main_wrap .sticky_wrap {
    position: -webkit-sticky;
    /* safari用 */
    position: sticky;
    top: 150px;
  }
}

.sticky_main_wrap .top_news-cat__list {
  width: 100%;
  gap: 5px 10px;
}

.sticky_main_wrap.container_m {
  max-width: 1500px;
}

.cat_title {
  font-size: 14px;
  color: #ABB2B8;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .cat_title {
    margin-bottom: 20px;
  }
}

.sticky_contents .top_news-cat__list {
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .sticky_contents .top_news-cat__list {
    gap: 0;
  }
}

.news_detail_title {
  font-size: 28px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .news_detail_title {
    font-size: 32px;
  }
}

@media screen and (min-width: 960px) {
  .news_detail_title {
    font-size: 44px;
  }
}

.news_detail_contents {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .news_detail_contents {
    margin-top: 80px;
  }
}

.news_detail_contents p {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 2.1;
}

.news_detail_link_wrap {
  padding: 90px 0 30px;
  border-bottom: 1px solid #DDE3E9;
}

@media screen and (min-width: 768px) {
  .news_detail_link_wrap {
    padding: 120px 0 60px;
  }
}

.news_other_wrap {
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .news_other_wrap {
    padding-top: 60px;
  }
}

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

object/object/project/_contact.scss

***************************/
.contact_telbox {
  border: 3px solid #F1F4F6;
  padding: 20px 30px;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .contact_telbox {
    padding: 50px 60px;
    margin-top: 50px;
  }
}

.contact_telbox_list {
  gap: 10px;
}

.contact_telbox_item {
  font-weight: 500;
}

.contact_telbox_item::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  background: #C0C7CE;
  border-radius: 50%;
  margin-right: 6px;
}

.contact_telbox_item.is-tel {
  line-height: 1.2;
  font-size: 28px;
  font-weight: 400;
  font-family: var(--public);
}

.contact_telbox_item.is-tel::before {
  display: none;
}

@media screen and (min-width: 400px) {
  .contact_telbox_item.is-tel {
    font-size: 32px;
  }
}

.contact_telbox_item.is-tel span {
  margin-right: 20px;
}

@media screen and (min-width: 768px) {
  .contact_telbox_item.is-tel span {
    margin-right: 40px;
  }
}

.contact_form_wrap {
  margin-top: 80px;
}

@media screen and (min-width: 768px) {
  .contact_form_wrap {
    margin-top: 100px;
  }
}

.form_container {
  background: #F1F4F6;
  margin-top: 30px;
  padding: 30px;
}

@media screen and (min-width: 768px) {
  .form_container {
    margin-top: 50px;
    padding: 60px;
  }
}

.required {
  font-size: 9px;
  color: #E7242E;
  letter-spacing: 0.05em;
}

.contact-unit {
  border-bottom: 1px solid #DDE3E9;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .contact-unit {
    padding: 30px 0;
  }
}

.contact-dt {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  line-height: 1.2;
}

select {
  background-color: transparent;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input,
select,
textarea {
  border: 1px solid #E4EBEF;
  border-radius: 2px;
  padding: 20px 20px;
  width: 100%;
  background: var(--white);
  font-size: 15px;
  letter-spacing: 0.05em;
}

select {
  border: 1px solid #ABB2B8;
}

.top-main__search-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(img/common/arrow_down.svg);
  background-repeat: no-repeat;
  background-size: 10px 6px;
  background-position: right 17px center;
  font-family: var(--noto);
  max-width: 260px;
}

.placeholder {
  font-family: var(--noto);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ABB2B8;
}

.link_bd {
  text-decoration: underline;
}

input[type=checkbox] {
  display: none;
}

.wpcf7-checkbox .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  position: relative;
  width: auto;
  font-size: 15px;
  font-family: var(--noto);
  font-weight: 300;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .wpcf7-checkbox .wpcf7-list-item-label {
    display: flex;
    align-items: center;
  }
}

.wpcf7-checkbox .wpcf7-list-item-label a {
  margin-left: 15px;
}

.wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #E4EBEF;
  content: "";
  display: inline-block;
  border-radius: 3px;
  left: 5px;
  width: 24px;
  height: 24px;
  margin-bottom: -9px;
}

@media screen and (min-width: 768px) {
  .wpcf7-checkbox .wpcf7-list-item-label::before {
    width: 36px;
    height: 36px;
    margin-bottom: 0;
  }
}

.wpcf7-checkbox .wpcf7-list-item-label::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  display: block;
  height: 10px;
  left: 8px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 16px;
  transform: rotate(50deg);
  width: 6px;
}

@media screen and (min-width: 768px) {
  .wpcf7-checkbox .wpcf7-list-item-label::after {
    top: 50%;
    left: 15px;
  }
}

input[type=checkbox]:checked+.wpcf7-list-item-label::before {
  background: var(--black);
}

input[type=checkbox]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.contact-form_last {
  margin-top: 40px;
  gap: 10px;
}

.contact-form_wrap {
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 361px) {
  .contact-form_wrap {
    max-width: 360px;
  }
}

.contact-form_wrap input[type=submit] {
  color: #fff;
  font-weight: 400;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
  transition: all 0.5s;
}

.contact-form_wrap {
  position: relative;
}

.contact-form_wrap::after {
  content: "";
  background: url(img/common/arrow-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 7px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  pointer-events: none;
}

.contact-form_wrap input[type=submit] {
  background: var(--black);
  text-align: left;
  border: none;
  transition: all 0.5s;
  font-weight: 400;
}

.contact-form_wrap input[type=submit]:hover {
  opacity: 0.6;
}

.page--horikoshi .contact-form_wrap input[type=submit] {
  background: var(--black);
  text-align: left;
  border: none;
  transition: all 0.5s;
  font-weight: 400;
}

.page--horikoshi .contact-form_wrap input[type=submit]:hover {
  background: var(--red);
  opacity: 1;
}

.page--kaita .contact-form_wrap input[type=submit] {
  background: var(--black);
  text-align: left;
  border: none;
  transition: all 0.5s;
  font-weight: 400;
}

.page--kaita .contact-form_wrap input[type=submit]:hover {
  background: var(--blue);
  opacity: 1;
}

.page--kaita2 .contact-form_wrap input[type=submit] {
  background: var(--black);
  text-align: left;
  border: none;
  transition: all 0.5s;
  font-weight: 400;
}

.page--kaita2 .contact-form_wrap input[type=submit]:hover {
  background: var(--dblue);
  opacity: 1;
}

.page-sec_contact .btn02_wrap {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .page-sec_contact .btn02_wrap {
    margin-top: 80px;
  }
}

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

object/object/project/_recruit.scss

***************************/
.page-sec_recruit .btn03_wrap {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .page-sec_recruit .btn03_wrap {
    margin-top: 80px;
  }
}

.table {
  border: 1px solid #C0C7CE;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}

.table.type02 td {
  width: 40%;
}

.table.type03 td {
  width: 310px;
}

th {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 20px;
  background: #F1F4F6;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  border-right: 1px solid #DDE3E9;
  border-bottom: 1px solid #DDE3E9;
  text-align: left;
}

th+th {
  border-right: 1px solid #DDE3E9;
}

th+th:last-of-type {
  border-right: none;
}

td+td {
  border-left: 1px solid #DDE3E9;
}

td {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 20px;
  line-height: 1.3;
  border-bottom: 1px solid #DDE3E9;
}

.table {
  min-width: 1050px;
}

@media screen and (min-width: 768px) {
  .table {
    min-width: auto;
  }
}

.scroll-wrap01,
.scroll-wrap02 {
  overflow-x: scroll;
  position: relative;
  width: 100%;
}

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

  .scroll-wrap01,
  .scroll-wrap02 {
    overflow-x: visible;
  }
}

.scroll-wrap01::-webkit-scrollbar,
.scroll-wrap02::-webkit-scrollbar {
  background: transparent;
  width: 5px;
  height: 5px;
}

.scroll-wrap01::-webkit-scrollbar-thumb,
.scroll-wrap02::-webkit-scrollbar-thumb {
  background-color: #DDE3E9;
  border-radius: 5px;
}

.scroll-map {
  position: absolute;
  top: 130px;
  left: 50%;
  translate: -50% 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  background: rgba(40, 40, 40, 0.6);
  border-radius: 15px;
  color: #fff;
  display: none;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .scroll-map {
    display: flex;
  }
}

.scroll-map.small {
  width: 85px;
  height: 85px;
  top: 5px;
}

.scroll-map.small .arrow {
  font-size: 1.3rem;
}

.scroll-map.small .hand {
  font-size: 2rem;
}

.scroll-map.small_2 {
  width: 150px;
  height: 55px;
  top: 5px;
}

.scroll-map.small_2 .arrow {
  width: 80px;
}

.scroll-map.small_2 .hand {
  font-size: 2rem;
}

.scroll-map.small_2 .hand {
  display: flex;
  justify-content: space-between;
}

.scroll-map .arrow {
  width: 40px;
  display: flex;
  justify-content: space-between;
}

.scroll-map .hand {
  font-size: 3rem;
}

.scroll-map.small_2 .hand {
  display: flex;
  justify-content: space-between;
}

.scroll-map .hand.move i {
  -webkit-animation: handMove ease-out 1.5s;
  animation: handMove ease-out 1.5s;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

@-webkit-keyframes handMove {
  0% {
    translate: -20px 0;
  }

  100% {
    translate: 20px 0;
  }
}

@keyframes handMove {
  0% {
    translate: -20px 0;
  }

  100% {
    translate: 20px 0;
  }
}

.scroll-map p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.scroll-map.small p {
  font-size: 1rem;
  margin-top: 0;
  line-height: 1;
}

.bd_bottom-none {
  border-bottom: none;
}

.bd_top-none {
  border-top: none;
}

.list_type01_list {
  border: 1px solid #C0C7CE;
  border-radius: 5px;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .list_type01_list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #F1F4F6;
    width: 200px;
    height: 100%;
    display: block;
    border-radius: 5px 0 0 5px;
    z-index: -1;
  }
}

@media screen and (min-width: 960px) {
  .list_type01_list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #F1F4F6;
    width: 300px;
    height: 100%;
    display: block;
    border-radius: 5px 0 0 5px;
    z-index: -1;
  }
}

.list_type01_item {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .list_type01_item {
    border-bottom: 1px solid #DDE3E9;
  }
}

.list_type01_item:last-child {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .list_type01_item {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
  }
}

@media screen and (min-width: 960px) {
  .list_type01_item {
    grid-template-columns: 300px 1fr;
  }
}

.list_type01_item:first-child .list_type01_title {
  border-radius: 5px 5px 0 0;
}

.list_type01_item:last-child .list_type01_contents {
  border-radius: 0 0 5px 5px;
}

@media screen and (min-width: 768px) {
  .list_type01_item:last-child .list_type01_title {
    border-radius: 0 0 0 5px;
  }
}

.list_type01_title {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 20px;
  background: #F1F4F6;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .list_type01_title {
    border-bottom: 1px solid #DDE3E9;
  }
}

.list_type01_contents {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 20px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .list_type01_contents {
    border-bottom: 1px solid #DDE3E9;
  }
}

@media screen and (max-width: 767px) {
  .list_type01_item:last-child .list_type01_contents {
    border-bottom: none;
  }
}

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

object/object/project/_childcare.scss

***************************/
.sec_margin-bottom {
  margin-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .sec_margin-bottom {
    margin-bottom: 200px;
  }
}

.page-sec_childcare p.mb-100 {
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .page-sec_childcare p.mb-100 {
    margin-bottom: 100px;
  }
}

.page-sec_childcare .btn01_wrap {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .page-sec_childcare .btn01_wrap {
    margin-top: 50px;
  }
}

.flex_item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.flex_item .flex_contents {
  width: 100%;
  max-width: 675px;
}

@media screen and (min-width: 960px) {
  .flex_item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.sec_teacher {
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .sec_teacher {
    margin-top: 100px;
  }
}

.teacher_list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 540px) {
  .teacher_list {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
}

@media screen and (min-width: 1024px) {
  .teacher_list {
    gap: 0 50px;
  }
}

.teacher_item {
  border-top: 1px dotted #ABB2B8;
  padding: 30px 0 60px;
}

.teacher_wrap {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
}

@media screen and (min-width: 1024px) {
  .teacher_wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.teacher_textbox {
  width: 100%;
}

.teacher_wrap:has(.teacher_img) .teacher_textbox {
  max-width: 350px;
}

@media screen and (min-width: 768px) {
  .teacher_wrap:has(.teacher_img) .teacher_textbox {
    max-width: 240px;
  }
}

@media screen and (min-width: 1200px) {
  .teacher_wrap:has(.teacher_img) .teacher_textbox {
    max-width: 350px;
  }
}

.teacher_name {
  font-size: 20px;
  font-weight: 300;
}

.teacher_name span {
  font-size: 15px;
  margin-left: 2px;
}

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

object/object/project/_admission.scss

***************************/
.flow_list {
  counter-reset: number 0;
}

.flow_item {
  padding: 20px 0;
  border-top: 1px dotted #ABB2B8;
}

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

.flow_item:last-child {
  border-bottom: 1px dotted #ABB2B8;
}

.flow_title {
  font-size: 20px;
  font-weight: 300;
}

.flow_title {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: baseline;
  gap: 15px;
}

.flow_title:before {
  counter-increment: number 1;
  content: "0"counter(number);
  font-size: 15px;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_title.is-pink:before {
  counter-increment: number 1;
  content: counter(number, upper-alpha);
  font-size: 15px;
  color: var(--white);
  background: #E74C94;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_contents_box {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .flow_contents_box {
    padding-left: 45px;
    margin-top: 20px;
  }
}

.deco_list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.flow_list.type2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 50px;
}

@media screen and (min-width: 960px) {
  .flow_list.type2 {
    grid-template-columns: 1fr 1fr;
  }
}

.flow_list.type2 .flow_item {
  border: 1px solid #C0C7CE;
  border-radius: 5px;
  padding: 35px 20px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .flow_list.type2 .flow_item {
    padding: 35px;
  }
}

.flow_list.type2 .flow_item .flow_title {
  padding-right: 75px;
}

.flow_list.type2 .flow_item .ib_img {
  position: absolute;
  top: -13px;
  right: 4px;
}

@media screen and (min-width: 768px) {
  .flow_list.type2 .flow_item .ib_img {
    top: -13px;
    right: 24px;
  }
}

.deco {
  font-size: 15px;
  letter-spacing: 0.05em;
  text-indent: -1rem;
  padding-left: 1rem;
  font-weight: 300;
}

.deco::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  background: #C0C7CE;
  border-radius: 50%;
  margin-right: 6px;
}

.sec_admission01 .flow_list {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .sec_admission01 .flow_list {
    margin-top: 50px;
  }
}

.sec_admission03 .title04 {
  margin-top: 60px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .sec_admission03 .title04 {
    margin-top: 80px;
    margin-bottom: 40px;
  }
}

.sec_admission03 .flow_list {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .sec_admission03 .flow_list {
    margin-top: 40px;
  }
}

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

object/object/project/_about.scss

***************************/
.about02_img {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .about02_img {
    margin-bottom: 60px;
  }
}

.gallery_contents {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .gallery_contents {
    margin-top: 80px;
  }
}

.gallery_contents .title04 {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .gallery_contents .title04 {
    margin-bottom: 40px;
  }
}

.gallery_list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media screen and (min-width: 540px) {
  .gallery_list {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .gallery_list {
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 60px;
  }
}

.gallery_item {
  width: 100%;
}

.gallery_img img {
  width: 100%;
}

.gallery_textbox {
  margin-top: 10px;
}

.gallery_title {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
}

.bd_gray {
  border: 1px solid #C0C7CE;
  border-radius: 5px;
  padding: 20px 30px;
}

@media screen and (min-width: 768px) {
  .bd_gray {
    padding: 30px 40px;
  }
}

.point_title {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  font-weight: 200;
}

@media screen and (min-width: 768px) {
  .point_title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: var(--black);
}

.modaal-inline .modaal-container {
  width: auto !important;
}

.greeting_item {
  padding: 60px 0;
  border-bottom: 1px solid #ABB2B8;
}

.greeting_item:first-child {
  padding-top: 0;
}

.greeting_item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.greeting_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .greeting_contents {
    gap: 80px;
    margin-top: 40px;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .greeting_textbox {
    width: 100%;
    max-width: 780px;
  }
}

.greeting_name {
  font-size: 18px;
  margin-left: 20px;
}

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

@media screen and (min-width: 768px) {
  .mt-60-80 {
    margin-top: 80px;
  }
}

.modaal-content-container {
  padding: 10px;
}

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

object/object/project/_living.scss

***************************/
.routine_contents {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  gap: 40px 0;
}

@media screen and (min-width: 1200px) {
  .routine_contents {
    flex-direction: row;
  }
}

.routine_wrap {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .routine_wrap.type02 .routine_title {
    margin-right: 0;
    margin-left: 9px;
  }

  .routine_wrap.type02 .timeline {
    margin-left: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .routine_wrap+.routine_wrap {
    border-left: 1px dotted #49525B;
  }
}

.routine_title {
  background: #49525B;
  border-radius: 5px;
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 5px;
}

@media screen and (min-width: 768px) {
  .routine_title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .routine_title {
    margin-right: 9px;
  }
}

.timeline {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-family: var(--public);
  font-weight: 300;
  background: #F1F4F6;
  border-radius: 19px;
  padding: 2px 5px;
  text-align: center;
  display: inline-block;
  margin-right: 15px;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 120px;
}

.routine_item {
  padding: 20px 15px;
  padding-left: 0;
  border-bottom: 1px solid #DDE3E9;
  /* height: 100%; */
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.routine_item.type02 {
  min-height: 128px;
}

.routine_item.type03 {
  min-height: 198px;
}

.living_gallery_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .living_gallery_list {
    gap: 30px;
    margin-top: 60px;
    flex-wrap: nowrap;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 960px) {
  .living_gallery_list {
    gap: 40px;
  }
}

.living_gallery_list li {
  width: 100%;
  max-width: 360px;
}

.living_gallery_list li img {
  width: 100%;
}

.sec_living02 .title04 {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .sec_living02 .title04 {
    margin-top: 80px;
  }
}

.sec_living02 .btn01_wrap {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .sec_living02 .btn01_wrap {
    margin-top: 50px;
  }
}

.table.th_w-310 th {
  width: 310px;
}

.event_list {
  margin-bottom: 40px;
}

.event_list.type02 .event_month {
  width: 100%;
  max-width: 80px;
}

.event_item {
  border-top: 1px dotted #ABB2B8;
  padding: 15px;
}

.event_item:last-child {
  border-bottom: 1px dotted #ABB2B8;
}

.event_item dd {
  margin-left: 40px;
}

.event_month {
  font-size: 22px;
  font-family: var(--public);
  font-weight: 200;
  text-align: center;
  width: 100%;
  max-width: 70px;
}

.event_month span {
  font-size: 15px;
  font-family: var(--noto);
  font-weight: 200;
  margin-left: 2px;
}

.event_cat_list {
  gap: 5px 25px;
}

.event_cat_list .cat::before {
  content: "";
  background: #C0C7CE;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
  transition: all 0.5s;
}

.event_cat_list .cat.--red::before {
  background: var(--red);
}

@media screen and (min-width: 768px) {
  .sec_living03 .living_gallery_list {
    margin-top: 40px;
  }
}

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

object/object/project/_feature.scss

***************************/
.page-sec_feature .feature_textbox .btn01_wrap {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .page-sec_feature .feature_textbox .btn01_wrap {
    margin-top: 50px;
  }
}

.page-sec_feature .feature_textbox .btn01 {
  max-width: 340px;
}

.feature_list {
  counter-reset: number 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

@media screen and (min-width: 768px) {
  .feature_list {
    gap: 150px;
  }
}

.feature_item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 1024px) {
  .feature_item .feature_img {
    margin-right: calc(50% - 50vw);
    width: 100%;
    max-width: 900px;
  }
}

@media screen and (min-width: 1024px) {
  .feature_item {
    flex-direction: row;
    gap: 80px;
  }

  .feature_item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1024px) and (min-width: 1024px) {
  .feature_item:nth-child(even) .feature_img {
    margin-right: 0;
    margin-left: calc(50% - 50vw);
  }
}

@media screen and (min-width: 1300px) {
  .feature_item {
    gap: 120px;
  }
}

@media screen and (min-width: 1024px) {
  .feature_textbox {
    width: 100%;
    max-width: 555px;
  }
}

.feature_title {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 15px;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 30px;
}

.feature_title br {
  display: none;
}

@media screen and (min-width: 768px) {
  .feature_title {
    font-size: 44px;
    grid-template-columns: 70px 1fr;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
  }

  .feature_title br {
    display: block;
  }
}

.feature_title:before {
  counter-increment: number 1;
  content: counter(number);
  font-size: 70px;
  line-height: 1.3;
  color: var(--white);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(73, 82, 91, 0.5);
  width: 35px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--inter);
  font-style: italic;
  font-weight: 200;
}

@media screen and (min-width: 768px) {
  .feature_title:before {
    font-size: 116px;
    width: 80px;
    height: 100px;
  }
}

.feature_img {
  width: 100%;
}

.feature_img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.movie {
  width: 100%;
  text-align: center;
  margin-top: 200px;
}

@media screen and (min-width: 1024px) {
  .movie {
    margin-top: 250px;
  }
}

.movie video {
  width: 100%;
  max-width: 1200px;
}

.feature_list_item {
  gap: 10px 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (min-width: 970px) {
  .feature_list_item {
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 970px) {
  .feature_list_item .feature_contents {
    width: 100%;
    max-width: 500px;
  }
}

@media screen and (min-width: 1200px) {
  .feature_list_item .feature_contents {
    width: 100%;
    max-width: 600px;
  }
}

@media screen and (min-width: 1300px) {
  .feature_list_item .feature_contents {
    width: 100%;
    max-width: 800px;
  }
}

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

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

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

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

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

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-item {
  flex: 0 1 auto;
}

.flex-item0 {
  flex: 0 0 auto;
}

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

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

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

object/utility/_background.scss

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

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

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

object/utility/_text.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }

  .t-left_pc {
    text-align: left;
  }

  .t-right_pc {
    text-align: right;
  }
}

.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fz-10 {
  font-size: 10px;
}

.fz-11 {
  font-size: 11px;
}

.fz-12 {
  font-size: 12px;
}

.fz-13 {
  font-size: 13px;
}

.fz-14 {
  font-size: 14px;
}

.fz-15 {
  font-size: 15px;
}

.fz-16 {
  font-size: 16px;
}

.fz-17 {
  font-size: 17px;
}

.fz-18 {
  font-size: 18px;
}

.fz-19 {
  font-size: 19px;
}

.fz-20 {
  font-size: 20px;
}

.fz-21 {
  font-size: 21px;
}

.fz-22 {
  font-size: 22px;
}

.fz-23 {
  font-size: 23px;
}

.fz-24 {
  font-size: 24px;
}

.fz-25 {
  font-size: 25px;
}

.fz-26 {
  font-size: 26px;
}

.fz-27 {
  font-size: 27px;
}

.fz-28 {
  font-size: 28px;
}

.fz-29 {
  font-size: 29px;
}

.fz-30 {
  font-size: 30px;
}

.fz-31 {
  font-size: 31px;
}

.fz-32 {
  font-size: 32px;
}

.fz-33 {
  font-size: 33px;
}

.fz-34 {
  font-size: 34px;
}

.fz-35 {
  font-size: 35px;
}

.fz-36 {
  font-size: 36px;
}

.f-bold {
  font-weight: 500;
}

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--gray {
  color: var(--black);
}

.fc--black {
  color: var(--black);
}

.fc--red {
  color: var(--red);
}

.txtdeco-none {
  text-decoration: none;
}

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

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

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

.mb10 {
  margin-bottom: 10px;
}

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

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

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

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

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

object/utility/_font.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.vertical {
  writing-mode: vertical-rl;
}

.youtube {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  margin-left: auto;
  margin-right: auto;

  iframe {
    width: 100%;
    height: 100%;
  }
}

/* 251111 */
.top_introduction_img img {
  width: 100%;
}

/* 251113 */
.list_type02 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list_type02_item {
  display: grid;
  grid-template-columns: 90px 1fr;
}

@media screen and (min-width: 540px) {
  .list_type02_item {
    display: grid;
    grid-template-columns: 120px 1fr;
  }
}

.list_type02_item dt {
  padding: 10px;
  padding-left: 0;
  border-right: 1px solid #DDE3E9;

  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: left;
}

.list_type02_item dd {
  padding: 10px;
  padding-left: 20px;
  font-weight: 400;
  font-size: 15px;
}

.wpcf7-spinner {
  display: none;
}