@charset "UTF-8";
/*メディアクエリ*/
/*WordPress対策・全ページ余白なし*/
* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
}

img {
  vertical-align: bottom; /*画像の下に余白を作らない*/
  max-width: 100%;
}

a {
  text-decoration: none; /*aタグに下線がつかない*/
}
.header__nav {
    margin-left: auto;
margin-right: 20px;
    margin-top: 30px;
    display: block;
    width: fit-content;
}
main {
  /*各ページの固有の内容を囲むクラス*/
  z-index: 1;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.anchor {
  position: relative;
  display: block;
  padding-top: 200px; /* 固定ヘッダーの高さ分 */
  margin-top: -200px; /* 同上 */
}

.navbar {
  width: 100%;
padding-top: 0px;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none; /* ← この1行で黒点が消える */
  padding: 0;
  margin: 0;
}

.nav-menu li {
  flex: 1 1 25%; /* 幅25%、可変対応 */
  display: flex;              /* ← 高さを揃えるためにflex */
}

.nav-link {
display: flex;              /* ← 中身もflex */
  justify-content: center;    /* ← 横中央 */
  align-items: center;        /* ← 縦中央 */
  width: 100%;
  height: 100%;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  transition: opacity 0.3s;
  word-break: break-word;
}

/* 色設定 */
.red    { background-color: #f5b2b2; }
.blue   { background-color: #86b3e0; }
.green  { background-color: #8fc31f; }
.yellow { background-color: #f8b62d; }

/* ホバー時 */
.nav-link:hover {
  opacity: 0.8;
}
.triangle-right {
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #f39800;
}
.btn-box:hover .triangle-right {
  border-left-color: white;
}
.triangle-right02 {
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #86b3e0;
}
.btn-box:hover .triangle-right02 {
  border-left-color: white;
}
.triangle-right03 {
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #f5b2b2;
}
.btn-box:hover .triangle-right03 {
  border-left-color: white;
}
.toi-box p{font-size: 20px;
    font-weight: bold;}

/* スマホ向け：縦並びにしたい場合は以下を追加 */
/*
@media (max-width: 600px) {
  .nav-menu li {
    flex: 1 1 100%;
  }
}
*/

.header__nav img{height:80px;}
.bg-green {
    --tw-bg-opacity: 1;
    background-color: rgb(247 251 237 / var(--tw-bg-opacity));
border-radius: 2rem 0 0 2rem;
margin-bottom:50px;
padding-bottom:50px;
}
.bg-pink {
    --tw-bg-opacity: 1;
    background-color: rgb(255 240 245 / var(--tw-bg-opacity));
border-radius: 2rem 0 0 2rem;
margin-bottom:50px;
padding-bottom:50px;
}
.bg-blue {
    --tw-bg-opacity: 1;
    background-color: rgb(240 250 255 / var(--tw-bg-opacity));
border-radius: 2rem 0 0 2rem;
margin-bottom:50px;
padding-bottom:50px;
}
.bg-orange {
    --tw-bg-opacity: 1;
    background-color: rgb(255 245 224 / var(--tw-bg-opacity));
border-radius: 2rem 0 0 2rem;
margin-bottom:50px;
padding-bottom:50px;
}


.c-container {
    margin-left: auto;
    width: 97rem;
}
.c-container-right {
    margin-right: auto;
    float: right;
    width: 97rem;
}

.sub-content {
width: 1100px;
padding-top: 100px;
padding-left: 50px;
}
.sub-content02 {
width: 1100px;
margin:0 auto;
padding-bottom:100px;
padding-top: 100px;
}
p{
line-height: 2.5;
}
.grid-two-columns {
  display: grid;
  grid-template-columns: 2fr 1fr; /* 2列に等分割 */
  gap: 20px;
}
.grid-one-columns {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2列に等分割 */
  gap: 20px;
}

.sub-content02 .btn-box{
margin-top:50px;
}

.btn-box{
margin-top:100px;
}

a.btn-border {
  border: 1px solid #f39800;
  border-radius: 0;
  background: #fff;
color:#f39800;
padding: 20px;
}

a.btn-border:hover {
  color: #fff;
  background: #f39800;
}
a.btn-border2 {
  border: 1px solid #86b3e0;
  border-radius: 0;
  background: #fff;
color:#86b3e0;
padding: 20px;
}

a.btn-border2:hover {
  color: #fff;
  background: #86b3e0;
}
a.btn-border3 {
  border: 1px solid #f5b2b2;
  border-radius: 0;
  background: #fff;
color:#f5b2b2;
padding: 20px;
}

a.btn-border3:hover {
  color: #fff;
  background: #f5b2b2;
}
.square-heading-orange {
  padding-left: 1.2em;
  text-indent: -1.2em;
  position: relative;
}
.square-heading-orange::before {
  content: "■";
  color: #f8b62d;        /* 色はお好みで */
  margin-right: 8px;     /* テキストとの間隔 */
}
.square-heading-green::before {
  content: "■";
  color: #8fc31f;        /* 色はお好みで */
  margin-right: 8px;     /* テキストとの間隔 */
}
.square-heading-pink {
  padding-left: 1.2em;
  text-indent: -1.2em;
  position: relative;
}
.square-heading-pink::before {
  content: "■";
  color: #f5b2b2;        /* 色はお好みで */
  margin-right: 8px;     /* テキストとの間隔 */
}
.square-heading-blue {
  padding-left: 1.2em;
  text-indent: -1.2em;
  position: relative;
}
.square-heading-blue::before {
  content: "■";
  color: #86b3e0;        /* 色はお好みで */
  margin-right: 8px;     /* テキストとの間隔 */
}
.custom-line-green {
  border: none;
  border-top: 2px solid #8fc31f; /* 上線だけを表示 */
  margin: 20px 0;
}
.custom-line-pink {
  border: none;
  border-top: 2px solid #f5b2b2; /* 上線だけを表示 */
  margin: 20px 0;
}
.custom-line-blue {
  border: none;
  border-top: 2px solid #86b3e0; /* 上線だけを表示 */
  margin: 20px 0;
}
.custom-line-orange {
  border: none;
  border-top: 2px solid #f8b62d; /* 上線だけを表示 */
  margin: 20px 0;
}

.kensyu-box{padding-bottom:50px;}
.kensyu-box h3 {
    padding-bottom: 20px;
    padding-top: 20px;
    font-size: 24px;
}

.news_box{    padding-top: 20px;}
.news_box .topi_1,.post_info .topi_1,#news_list li .topi_1,.recently-post li .topi_1{background:#C16F79;margin-right: 12px;
    padding: 2px 10px;
    color: #fff;
    min-width: 100px;}
.news_box .topi_2,.post_info .topi_2,#news_list li .topi_2,.recently-post li .topi_2{background:#D5993A;margin-right: 12px;
    padding: 2px 10px;
    color: #fff;
    min-width: 100px;}
.news_box .topi_3,.post_info .topi_3,#news_list li .topi_3,.recently-post li .topi_3{background:#74A239;margin-right: 12px;
    padding: 2px 10px;
    color: #fff;
    min-width: 100px;}
.news_box .topi_4,.post_info .topi_4,#news_list li .topi_4,.recently-post li .topi_4{background:#BA6A43;margin-right: 12px;
    padding: 2px 10px;
    color: #fff;
    min-width: 100px;}
.news_box ul{
  list-style: none;
  padding-left: 0; /* インデントも消したい場合 */
}
.news_box ul li{line-height:3.5;}
.news_box ul li a {
  position: relative;
  z-index: 9999;
color:#000;
}
.news_box ul li a:hover {
  text-decoration: underline;
}
.news_box ul li a:visited {
    color: #000; /* 好きな色に変更可能 */
  }


span.news_date {
    padding-right: 20px;
}
.topi {
    font-size: 12px;
    color: #fff;
    text-align: center;
    width: 118px;
    display: inline-block;
    border-radius: 3px;
    box-sizing: border-box;
    background: #f8b62d;
    margin-right: 10px;
    line-height: 24px;
}

.back-box{
background-image: url('./image/top/back.png');
  background-repeat: repeat-y; /* ← 縦方向に繰り返す */
background-size: cover;       /* 画像を要素のサイズに合わせて拡大・縮小 */
}
.bg-pink h4{color:#f5b2b2;font-size: 24px;padding-bottom: 14px;}
.bg-pink table {
      width: 100%;
      margin: 50px auto;
      border-collapse: collapse;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
    }

.bg-pink table th {
      background-color: #f5b2b2;
      color: #fff;
      padding: 14px 16px;
      text-align: left;
      width: 80px;
      font-weight: bold;
    }

.bg-pink table td {
      padding: 14px 16px;
      border-bottom: 1px solid #e0e0e0;
border-left: 1px solid #e0e0e0;
      color: #333;
    }

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

.bg-pink table tr:hover td {
      background-color: #f9fafb;
    }
.training-box{padding:40px 0;}
.bg-blue h4{color:#86b3e0;font-size: 24px;padding-bottom: 14px;}
.bg-blue table {
      width: 100%;
      margin: 50px auto;
      border-collapse: collapse;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
    }

.bg-blue table th {
      background-color: #86b3e0;
      color: #fff;
      padding: 14px 16px;
      text-align: left;
      width: 80px;
      font-weight: bold;
    }

.bg-blue table td {
      padding: 14px 16px;
      border-bottom: 1px solid #e0e0e0;
border-left: 1px solid #e0e0e0;
      color: #333;
    }

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

.bg-blue table tr:hover td {
      background-color: #f9fafb;
    }
table.tbl-nichiji {
    margin-bottom: 80px;
    margin-top: 50px;
}
tr.tr-nichiji{
    text-align: center;
}



@media screen and (min-width: 769px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  main {
    padding: 180px 0 0 0; /*PCヘッダーの高さ*/
  }
  /*電話番号をクリックしても自動発信しない*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  main {
    padding: 60px 0 0 0; /*SPヘッダーの高さ*/
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

p.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/*ヘッダー*/
/*PC*/
@media screen and (min-width: 769px) {
  header {
    z-index: 100;
    position: fixed;
    top: 0;
    width: 100%;
    height: 180px;
    background-color: #fff;
  }
  header::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 9px;
    top: 0;
    left: 0;
    background-color: #fff;
  }

  header .header__container .header__logo-link {
    display: block;
    position: absolute;
    width: 45%;
    height: auto;
    /*top: 14px;*/
    left: 30px;
    transition: 0.3s ease-in-out;
  }
  header .header__container .header__logo-link:hover {
    opacity: 0.5;
  }
  header .header__container .header__contact {
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    justify-content: end;
    align-items: center;
    margin: 0 20px 1px auto;
  }
  header .header__container .header__contact .header__tel .header__contact-link {
    display: flex;
    gap: 9px;
    justify-content: end;
    align-items: center;
  }
  header .header__container .header__contact .header__tel .header__contact-link img {
    width: 25px;
    height: auto;
  }
  header .header__container .header__contact .header__tel .header__contact-link .header__contact-number {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 3.75px;
    text-align: right;
    color: #d3d3d3;
  }
  header .header__container .header__contact .header__tel .header__contact-hours {
    margin-top: -5px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 1.3px;
    text-align: right;
    color: #333;
  }
  header .header__container .header__contact .header__services {
    display: grid;
    grid-template-columns: 110px 130px 35px;
    gap: 0 8.5px;
    justify-content: end;
    align-items: center;
    margin-top: 10px;
  }
  header .header__container .header__contact .header__services .header__service-link-1 {
    grid-column: 1/4;
    grid-row: 1/2;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 2.5px;
    text-align: left;
    color: #333;
  }
  header .header__container .header__contact .header__services .header__service-link-2 {
    grid-column: 1/2;
    grid-row: 2/3;
    width: 110px;
    height: auto;
    transition: 0.3s ease-in-out;
  }
  header .header__container .header__contact .header__services .header__service-link-2:hover {
    opacity: 0.5;
  }
  header .header__container .header__contact .header__services .header__service-link-3 {
    grid-column: 2/3;
    grid-row: 2/3;
    display: block;
    width: 130px;
    height: auto;
    transition: 0.3s ease-in-out;
  }
  header .header__container .header__contact .header__services .header__service-link-3:hover {
    opacity: 0.5;
  }
  header .header__container .header__statement {
    position: relative;
    width: 100%;
    height: auto;
  }
  header .header__container .header__statement .header__statement-text {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 54px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 3.7px;
    text-align: left;
    color: #4f474a;
  }
  header .header__container .header__statement .header__statement-text .header__statement-strong {
    display: block;
    margin-top: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 9px;
    text-align: left;
    color: #000;
  }
  header .header__container .header__statement .header__nav {
    display: flex;
    gap: 40px;
    justify-content: end;
    align-items: center;
    margin-right: 55.5px;
        padding-top: 25px;
  }
  header .header__container .header__statement .header__nav .header__nav-link {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 4.2px;
    text-align: right;
    color: #333;
  }
  header .header__container .header__statement .header__nav .header__nav-link.header__nav-link--recruit {
    position: relative;
    width: 140px;
    height: auto;
    aspect-ratio: 185/86;
    transition: 0.3s ease-in-out;
  }
  header .header__container .header__statement .header__nav .header__nav-link.header__nav-link--recruit:hover {
    opacity: 0.5;
  }
  header .header__container .header__statement .header__nav .header__nav-link.header__nav-link--recruit img {
    width: 100%;
    height: auto;
  }
  header .header__container .header__statement .header__nav .header__nav-link.header__nav-link--recruit .header__nav-text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0 25px 0 35px;
    background-color: #a2c92a;
    border-radius: 40px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 2.4px;
    text-align: center;
    color: #fff;
    white-space: nowrap;
  }
}
/*SP*/
@media screen and (max-width: 768px) {

.btn-box{
margin-top: 100px;
    margin-bottom: 100px;
}

    .topKv .topKv__content h2 {
        position: absolute;
        top: 100px;
        left: 2%;
        font-family: Noto Serif JP, serif;
        font-size: 1rem;
        font-weight: bold;
        line-height: 1.6;
        letter-spacing: 8px;
        text-align: left;
        color: #000;
    }
.c-container {
    margin-left: auto;
    width: 95%;
}
.sub-content{
    width: 95%;
    padding-top: 50px;
    padding-left: 2%;
}
.sub-content02 {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 50px;
    padding-top: 60px;
}
.sub-content h2{
font-size:18px;
}
.sub-content02 h2{
font-size:18px;
}
.grid-two-columns{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

  header {
    z-index: 101;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
  }
  header .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 5px);
    height: 100%;
    margin: 0 auto 0 0;
  }
  header .header__container .header__logo-link {
    display: block;
    position: relative;
    width: 320px;
    height: auto;

  }
  header .header__container .header__logo-link img {
    width: 100%;
    height: auto;
  }
  header .header__container .header__menu-toggle {
    width: auto;
    height: auto;
  }
  header .header__container .header__menu-toggle .header__menu-bars {
    cursor: pointer;
    z-index: 999;
    display: block;
    position: relative;
    width: 55px;
    height: 55px;
    text-align: center;
  }
  header .header__container .header__menu-toggle .header__menu-bars .header__menu-bar {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 22.5px;
    height: 2px;
    border-radius: 2px;
    background-color: #d3d3d3;
    transition: 0.35s ease-in-out;
  }
  header .header__container .header__menu-toggle .header__menu-bars .header__menu-bar:nth-of-type(1) {
    top: 20px;
  }
  header .header__container .header__menu-toggle .header__menu-bars .header__menu-bar:nth-of-type(2) {
    top: 26.5px;
  }
  header .header__container .header__menu-toggle .header__menu-bars .header__menu-bar:nth-of-type(3) {
    top: 32.5px;
  }
  header .header__container .header__menu-toggle .header__menu-bars.active .header__menu-bar {
    top: 26.5px;
    left: 50%;
    background-color: #d3d3d3;
  }
  header .header__container .header__menu-toggle .header__menu-bars.active .header__menu-bar:nth-of-type(1) {
    background-color: #d3d3d3;
    transform: translateX(-50%) rotate(-45deg);
  }
  header .header__container .header__menu-toggle .header__menu-bars.active .header__menu-bar:nth-of-type(2) {
    background-color: #d3d3d3;
    transform: translateX(-50%) rotate(45deg);
  }
  header .header__container .header__menu-toggle .header__menu-bars.active .header__menu-bar:nth-of-type(3) {
    background-color: #d3d3d3;
    transform: translateX(-50%) rotate(45deg);
  }
  header .header__container .header__menu-toggle .header__menu-bars.active {
    background-color: transparent;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp {
    position: fixed;
    z-index: 103;
    top: 0;
    left: 0;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background-color: #fff;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp.active {
    transform: translateX(0%);
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__nav-list {
    position: relative;
    width: 300px;
    height: auto;
    margin: 0 auto;
    padding-top: 75px;
    padding-bottom: 25px;
    list-style: none;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__nav-list .header__nav-item {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 12px;
    padding-bottom: 15px;
    border-bottom: dotted 1px #d3d3d3;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__nav-list .header__nav-item:nth-of-type(1) {
    border-top: dotted 1px #d3d3d3;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__nav-list .header__nav-item .header__nav-link {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 1.5px;
    text-align: left;
    color: #333333;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__link {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__link p {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 1.5px;
    text-align: center;
    color: #333333;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__link .header__link-btn {
    display: grid;
    grid-template-columns: 144px 175px;
    gap: 5px;
    justify-content: center;
    align-items: center;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__contact {
    position: relative;
    width: 100%;
    height: auto;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__contact .header__contact-link {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__contact .header__contact-link img {
    width: 22px;
    height: auto;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__contact .header__contact-link .header__contact-number {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 3px;
    text-align: center;
    color: #d3d3d3;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__contact .header__contact-hours {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 1px;
    text-align: center;
    color: #333;
  }
}
/*トップページ*/
/*PC*/
@media screen and (min-width: 769px) {
  .topKv {
    position: relative;
    width: 100%;
    height: auto;
  }
  .topKv .topKv__content {
    position: relative;
    width: 100%;
    height: 740px;
  }
  .topKv .topKv__content img {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .topKv .topKv__content h2 {
    position: absolute;
    top: 100px;
    left: 50px;
    font-family: Noto Serif JP, serif;
    font-size: 4rem;
    font-weight: bold;
    line-height: 2.1;
    letter-spacing: 8px;
    text-align: left;
    color: #000;
  }
  .topNews {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  .topNews .topNews__container {
    position: relative;
    width: 1100px;
    height: auto;
    margin: 0 auto;
    padding: 30px 35px;
    box-sizing: border-box;
    border: solid 1.3px #000;
  }
  .topNews .topNews__container h2 {
    margin-bottom: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 6px;
    text-align: center;
    color: #333;
  }
  .topNews .topNews__container .topNews__list {
    position: relative;
    width: 100%;
    height: auto;
  }
  .topNews .topNews__container .topNews__list .topNews__item {
    display: grid;
    grid-template-columns: 155px 1fr;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: dotted 1.3px #000;
  }
  .topNews .topNews__container .topNews__list .topNews__item:nth-last-of-type(1) {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .topNews .topNews__container .topNews__list .topNews__item .topNews__date,
  .topNews .topNews__container .topNews__list .topNews__item .topNews__title {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 3px;
    text-align: left;
    color: #333;
  }
  .topNews .topNews__container .topNews__list .topNews__item:hover .topNews__title {
    text-decoration: underline;
  }
  .topPoint {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 300px;
  }
  .topPoint h2 {
    display: block;
    margin-bottom: 30px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 4px;
    text-align: center;
    color: #333;
  }
  .topPoint h2 span {
    display: block;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 7px;
    text-align: center;
    color: #c878b9;
  }
  .topPoint .topPoint__wrapper {
    position: relative;
    width: 880px;
    height: auto;
    margin: 0 auto;
  }
  .topPoint .topPoint__wrapper .topPoint__content-c-1 {
    cursor: pointer;
    position: absolute;
    top: 11px;
    left: 287px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }
  .topPoint .topPoint__wrapper .topPoint__content-c-2 {
    cursor: pointer;
    position: absolute;
    top: 216px;
    left: 564px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }
  .topPoint .topPoint__wrapper .topPoint__content-c-3 {
    cursor: pointer;
    position: absolute;
    top: 543px;
    left: 454px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }
  .topPoint .topPoint__wrapper .topPoint__content-c-4 {
    cursor: pointer;
    position: absolute;
    top: 540px;
    left: 110px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }
  .topPoint .topPoint__wrapper .topPoint__content-c-5 {
    cursor: pointer;
    position: absolute;
    top: 211px;
    left: 6px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }
  .topPoint .topPoint__wrapper .topPoint__content {
    position: absolute;
  }
  .topPoint .topPoint__wrapper .topPoint__content h3 {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 95px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0;
  }
  .topPoint .topPoint__wrapper .topPoint__content p {
    display: block;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 4px;
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-1 {
    top: -25px;
    right: -100px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-1 h3 {
    padding-left: 15px;
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-1 p {
    width: 370px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-2 {
    top: 410px;
    right: -110px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-2 h3 {
    padding-right: 15px;
    text-align: right;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-2 p {
    width: 185px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-3 {
    bottom: -240px;
    right: -100px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-3 h3 {
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-3 p {
    width: 520px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-4 {
    bottom: -195px;
    left: -100px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-4 h3 {
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-4 p {
    width: 520px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-5 {
    top: 410px;
    left: -110px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-5 h3 {
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-5 p {
    width: 185px;
  }
  .topFeature {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 60px;
  }
  .topFeature h2 {
    margin-bottom: 30px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 34px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 2.4px;
    text-align: center;
    color: #c878b9;
  }
  .topFeature .topFeature__icons {
    display: grid;
    grid-template-columns: 175px 215px;
    -moz-column-gap: 10px;
         column-gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  .topFeature .topFeature__icons img:nth-of-type(1) {
    position: relative;
    top: 2px;
  }
  .topFeature .topFeature__details {
    display: grid;
    grid-template-columns: repeat(3, 340px);
    -moz-column-gap: 40px;
         column-gap: 40px;
    justify-content: center;
  }
  .topFeature .topFeature__details img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-1 img {
    width: 210px;
    margin-top: 15px;
    margin-bottom: 33px;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-2 img {
    z-index: -1;
    position: relative;
    width: 195px;
    margin-top: 0;
    margin-bottom: -8px;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-3 img {
    width: 125px;
    margin-top: 0;
    margin-bottom: 33px;
  }
  .topFeature .topFeature__details h3 {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    line-height: 35px;
    letter-spacing: 1.5px;
    text-align: center;
    color: #fff;
    background-color: #c878b9;
  }
  .topFeature .topFeature__details .topFeature__detail-content {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .topFeature .topFeature__details .topFeature__detail-content p {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 1px;
    text-align: left;
    color: #000;
  }
  .topFeature .topFeature__details .topFeature__detail-content p span {
    font-size: 10px;
  }
}
/*SP*/
@media screen and (max-width: 768px) {
  .topNews {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .topNews .topNews__container {
    position: relative;
    width: 300px;
    height: auto;
    margin: 0 auto;
    padding: 15px 20px;
    box-sizing: border-box;
    border: solid 1px #000;
  }
  .topNews .topNews__container h2 {
    margin-bottom: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 4.5px;
    text-align: center;
    color: #333;
  }
  .topNews .topNews__container .topNews__list {
    position: relative;
    width: 100%;
    height: auto;
  }
  .topNews .topNews__container .topNews__list .topNews__item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    row-gap: 5px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: dotted 1px #000;
  }
  .topNews .topNews__container .topNews__list .topNews__item:nth-last-of-type(1) {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .topNews .topNews__container .topNews__list .topNews__item .topNews__date,
  .topNews .topNews__container .topNews__list .topNews__item .topNews__title {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 2px;
    text-align: left;
    color: #333;
  }
  .topNews .topNews__container .topNews__list .topNews__item:hover .topNews__title {
    text-decoration: underline;
  }
  .topPoint {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 3px;
  }
  .topPoint h2 {
    display: block;
    margin-bottom: 20px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 3px;
    text-align: center;
    color: #333;
  }
  .topPoint h2 span {
    display: block;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 5px;
    text-align: center;
    color: #c878b9;
  }
  .topPoint .topPoint__wrapper {
    position: relative;
    width: 96%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 30px;
  }
  .topPoint .topPoint__wrapper img {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }
  .topPoint .topPoint__wrapper .topPoint__content {
    display: grid;
    position: relative;
    grid-template-columns: 25px 1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
    margin-bottom: 20px;
  }
  .topPoint .topPoint__wrapper .topPoint__content h3 {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0;
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content p {
    display: block;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: left;
  }
  .topFeature {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  .topFeature h2 {
    margin-bottom: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 2px;
    text-align: center;
    color: #c878b9;
  }
  .topFeature .topFeature__icons {
    display: grid;
    grid-template-columns: 130px 160px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  .topFeature .topFeature__icons img:nth-of-type(1) {
    position: relative;
    top: 2px;
  }
  .topFeature .topFeature__details {
    display: grid;
    grid-template-columns: 300px;
    row-gap: 30px;
    justify-content: center;
  }
  .topFeature .topFeature__details img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-1 img {
    width: 160px;
    margin-top: 10px;
    margin-bottom: 25px;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-2 img {
    z-index: -1;
    position: relative;
    width: 145px;
    margin-top: 0;
    margin-bottom: -6px;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-3 img {
    width: 95px;
    margin-top: 0;
    margin-bottom: 25px;
  }
  .topFeature .topFeature__details h3 {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: 1.1px;
    text-align: center;
    color: #fff;
    background-color: #c878b9;
  }
  .topFeature .topFeature__details .topFeature__detail-content {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .topFeature .topFeature__details .topFeature__detail-content p {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 0.8px;
    text-align: left;
    color: #000;
  }
  .topFeature .topFeature__details .topFeature__detail-content p span {
    font-size: 8px;
  }
}
/*フッター*/
/*PC*/
@media screen and (min-width: 769px) {
  footer {
    position: relative;
    width: 100%;
    height: auto;
  }
  footer .footer__consultation {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 0;
    background-color: #c878b9;
  }
  footer .footer__consultation h2 {
    margin-bottom: 20px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 8px;
    text-align: center;
    color: #fff;
  }
  footer .footer__consultation .footer__contact-options {
    display: grid;
    grid-template-columns: repeat(3, 355px);
    grid-template-rows: 130px;
    -moz-column-gap: 20px;
         column-gap: 20px;
    justify-content: center;
    justify-items: center;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 8.5px;
    box-sizing: border-box;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option .footer__contact-text {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.9;
    letter-spacing: 3.3px;
    text-align: center;
    color: #c878b9;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option img {
    display: block;
    margin: 0 auto;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--chat {
    padding-top: 15px;
    padding-bottom: 20px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--chat img {
    width: 215px;
    height: auto;
    margin-bottom: 8.5px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--mail {
    padding-top: 25px;
    padding-bottom: 20px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--mail img {
    width: 70px;
    height: auto;
    margin-bottom: 19px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--phone {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--phone img {
    width: 60px;
    height: auto;
    margin-bottom: 13px;
  }
  footer .footer__branding {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 35px;
    background-color: #f39800;
  }
  footer .footer__branding .footer__logo-link {
    display: block;
    width: 360px;
    height: auto;
    margin: 0 auto 15px;
  }
  footer .footer__branding .footer__logo-link img {
    width: 100%;
    height: auto;
  }
  footer .footer__branding .footer__address {
    margin-bottom: 12px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 1.5px;
    text-align: center;
    color: #4f474a;
  }
  footer .footer__branding .footer__copyright {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: center;
    color: #fff;
  }
}
/*SP*/
@media screen and (max-width: 768px) {

.nav-link {
  color: #000;
}

  footer {
    position: relative;
    width: 100%;
    height: auto;
  }
  footer .footer__consultation {
    position: relative;
    width: 100%;
    height: auto;
    padding: 25px 0;
    background-color: #c878b9;
  }
  footer .footer__consultation h2 {
    margin-bottom: 15px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 6px;
    text-align: center;
    color: #fff;
  }
  footer .footer__consultation .footer__contact-options {
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: repeat(3, 110px);
    row-gap: 15px;
    justify-content: center;
    justify-items: center;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option .footer__contact-text {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 2.5px;
    text-align: center;
    color: #c878b9;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option img {
    display: block;
    margin: 0 auto;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--chat {
    padding-top: 13px;
    padding-bottom: 17px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--chat img {
    width: 180px;
    height: auto;
    margin-bottom: 7px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--mail {
    padding-top: 21px;
    padding-bottom: 17px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--mail img {
    width: 60px;
    height: auto;
    margin-bottom: 16px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--phone {
    padding-top: 17px;
    padding-bottom: 17px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--phone img {
    width: 50px;
    height: auto;
    margin-bottom: 11px;
  }
  footer .footer__branding {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 15px;
    padding-bottom: 25px;
    background-color: #f7b52d;
  }
  footer .footer__branding .footer__logo-link {
    display: block;
    width: 270px;
    height: auto;
    margin: 0 auto 10px;
  }
  footer .footer__branding .footer__logo-link img {
    width: 100%;
    height: auto;
  }
  footer .footer__branding .footer__address {
    margin-bottom: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: center;
    color: #4f474a;
  }
  footer .footer__branding .footer__copyright {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-align: center;
    color: #fff;
  }
}


@media screen and (min-width: 768px) and (max-width: 1360px) {
  /* タブレット用のスタイルをここに書く */
    .topKv .topKv__content h2 {
        position: absolute;
        top: 100px;
        left: 50px;
        font-family: Noto Serif JP, serif;
        font-size: 2rem;
        font-weight: bold;
        line-height: 2.1;
        letter-spacing: 8px;
        text-align: left;
        color: #000;
    }
.header__nav img {
    height: 40px;
}
.nav-link {
    font-size: 15px;
}
.sub-content {
        width: 95%;
        padding-top: 50px;
        padding-left: 2%;
}
.c-container {
    margin-left: auto;
    width: 95%;
}
.sub-content02 {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 50px;
    padding-top: 60px;
}
.header__logo-image{
padding-top: 20px;
}
header {
height: 130px;
    }
    main{
        padding: 130px 0 0 0;
    }
    .topKv .topKv__content img {
        height: 50%;
    }
    .topKv .topKv__content {
        height: auto;
    }
}