@charset "UTF-8";
/*---------------------------
*  レスポンシブ　メディアクエリ用
----------------------------*/
.pc-mode {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-mode {
    display: none;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 1279px) {
  .pc-only {
    display: none;
  }
}

.tab-mode {
  display: none;
}
@media screen and (max-width: 1279px) {
  .tab-mode {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media screen and (max-width: 1279px) {
  .tab-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

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

.u-mb-m {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .u-mb-m {
    margin-bottom: 20px;
  }
}

html {
  box-sizing: border-box;
  height: 100%;
  font-size: 15px;
  font-family: "Noto Sans JP", "M PLUS 1p", sans-serif;
  font-weight: 300;
  letter-spacing: 2;
  word-break: break-all;
  overflow-x: hidden;
  margin-top: 0 !important;
}
@media screen and (max-width: 1279px) {
  html {
    font-size: 14px;
  }
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  line-height: 1.7;
  height: 100%;
  font-feature-settings: "palt";
  color: #0d0d0d;
  background-color: #fff;
  counter-reset: tNote;
  overflow-x: hidden;
}
@media screen and (max-width: 1279px) {
  body {
    line-height: 1.6;
  }
}

main {
  flex: 1;
  padding-top: 137px;
}
@media screen and (max-width: 1240px) {
  main {
    padding-top: 60px;
  }
}

img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  transition: 0.2s;
  opacity: 0.6;
}

.contents_inner {
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 1279px) {
  .contents_inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/*-----------------------------------------------
reCAPTCHA
------------------------------------------------*/
/* reCAPTCHA 非表示 */
.footer-recaptcha {
  font-size: 10px;
  color: #fff;
  margin-top: 30px;
}

.grecaptcha-badge {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
  text-transform: uppercase;
}

input,
textarea {
  font-family: inherit;
  font-size: 100%;
}

.txt--serif {
  font-family: "Noto Serif JP", serif;
}

.txt--lead {
  font-family: "Noto Serif JP", serif;
  color: #156e95;
  font-size: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1279px) {
  .txt--lead {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .txt--lead {
    font-size: 18px;
  }
}

.pc-menu {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 1279px) {
  .pc-menu {
    display: none;
  }
}

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

header {
  height: 137px;
  position: fixed;
  z-index: 1000;
  background-color: #fff;
  width: 100vw;
  font-weight: 500;
  padding: 20px 0;
}
@media screen and (max-width: 1279px) {
  header {
    height: 80px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: auto;
    padding: 14px 0;
  }
}
header h1 {
  position: relative;
  border: none;
  margin-top: 0;
  z-index: 1000;
  display: inline-block;
}
header .logo img {
  position: relative;
  top: 26px;
  left: 60px;
  width: 380px;
  height: auto;
}
@media screen and (max-width: 1279px) {
  header .logo img {
    width: 270px;
    top: 0;
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  header .logo img {
    width: 160px;
  }
}
header ul {
  display: block;
  position: absolute;
  top: 64px;
  right: 4vw;
  height: 44px;
  font-size: 12px;
}
header ul > li {
  letter-spacing: 2px;
  position: relative;
  text-align: center;
  width: 110px;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  header ul > li {
    margin-top: 4px;
    margin-right: 0;
  }
}
header ul > li > a {
  display: block;
  width: 100%;
  padding: 10px 10px 10px;
  min-height: 44px;
  transition: 0.3s;
  border-bottom: 2px solid #156e95;
}
header ul > li ul.sub_menu {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  letter-spacing: 2px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
header ul > li ul.sub_menu li {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
}
header ul > li ul.sub_menu li:hover a {
  color: #156e95;
  transition: 0.3s;
}
header ul > li ul.sub_menu li a {
  padding: 10px 0;
  width: 100%;
  display: inline-block;
  transition: 0.3s;
}
header ul > li ul.sub_menu li:last-of-type > a {
  border-bottom: none;
}
header ul > li:hover ul {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
header ul > li:hover > a {
  color: #156e95;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  header .header-sns {
    display: none;
  }
}
header .header-sns ul {
  position: absolute;
  right: 4vw;
  top: 20px;
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 1279px) {
  header .header-sns ul {
    right: 7vw;
  }
}
@media screen and (max-width: 767px) {
  header .header-sns ul {
    gap: 14px;
    top: 15vw;
    right: 20px;
    position: fixed;
  }
}
header .header-sns ul li {
  width: auto;
}
header .header-sns ul a {
  border: none !important;
  width: 100%;
  height: auto;
  padding: 0;
}
header .header-sns ul .icon-tel,
header .header-sns ul .icon-sns {
  height: 20px;
}
@media screen and (max-width: 1279px) {
  header .header-sns ul .icon-tel,
  header .header-sns ul .icon-sns {
    height: 24px;
  }
}

/*-------　　ハンバーガーメニュー　　-------*/
@media screen and (max-width: 1279px) {
  /* チェックボックスは非表示に */
  .drawer-hidden {
    display: none;
  }
  /* ハンバーガーメニューのアイコン */
  .drawer-open {
    /* ハンバーガーアイコンの設置スペース */
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    cursor: pointer;
  }
  /* メニューを開いた時の表示 */
}
@media screen and (max-width: 1279px) and (max-width: 767px) {
  .drawer-open {
    height: 50px;
  }
}
@media screen and (max-width: 1279px) {
  .drawer-open span {
    content: "";
    display: block;
    height: 2px;
    width: 30px;
    background: #156e95;
    transition: 0.3s;
    position: absolute;
    z-index: 999;
    margin-top: 4px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 1279px) and (max-width: 767px) {
  .drawer-open span {
    margin-top: 10px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 1279px) {
  .drawer-open span::before {
    content: "";
    display: block;
    height: 2px;
    width: 30px;
    background: #156e95;
    transition: 0.3s;
    position: absolute;
    z-index: 999;
    /* 三本線のうち一番上の棒の位置調整 */
    bottom: 8px;
    background-color: #156e95;
  }
  .drawer-open span::after {
    content: "";
    display: block;
    height: 2px;
    width: 30px;
    background: #156e95;
    transition: 0.3s;
    position: absolute;
    z-index: 999;
    /* 三本線のうち一番下の棒の位置調整 */
    top: 8px;
    background-color: #156e95;
  }
  #drawer-check {
    /* アイコンがクリックされたらメニューを表示 */
  }
  #drawer-check:checked ~ .drawer-open {
    /* アイコンがクリックされたら真ん中の線を透明にする */
  }
  #drawer-check:checked ~ .drawer-open span {
    background: rgba(255, 255, 255, 0);
    /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  }
  #drawer-check:checked ~ .drawer-open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #drawer-check:checked ~ .drawer-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  #drawer-check:checked ~ #gnav-content {
    top: 0;
    /* メニューを画面に入れる */
    background-color: rgba(255, 255, 255, 0.96);
    padding-top: 120px;
    padding-bottom: 40px;
    min-height: 100vh;
    width: 100vw;
    display: block;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #drawer-check:checked ~ #gnav-content .header-sns {
    display: block;
  }
  #drawer-check:checked ~ .nav_last_bar {
    display: none;
  }
  #gnav-content {
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 100;
    transition: 0.3s;
    display: none;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  #gnav-content label {
    padding: 0px;
    right: auto;
    left: 10px;
    display: contents;
  }
  #gnav-content label p {
    font-size: 15px;
    padding: 16px 20px;
    margin: 0 auto;
    width: 89vw;
  }
  #gnav-content label p span {
    float: right;
  }
  #gnav-content label:nth-of-type(1) > p {
    border-top: 1px solid #156e95;
  }
  #gnav-content label:nth-of-type(2) > p {
    border-top: 1px solid #156e95;
  }
  #gnav-content label:nth-of-type(3) > p {
    border-top: 1px solid #156e95;
  }
  #gnav-content label:nth-of-type(4) > p {
    border-top: 1px solid #156e95;
  }
  #gnav-content label:nth-of-type(5) > p {
    border-top: 1px solid #156e95;
  }
  #gnav-content label:nth-of-type(6) > p {
    border-top: 1px solid #156e95;
  }
  #gnav-content label:nth-of-type(7) > p {
    border-top: 1px solid #156e95;
  }
  .sp-menu__title {
    font-size: 18px;
    padding: 0 10px 40px;
    margin-top: -30px;
  }
  .sp-menu label {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    margin: 0;
    position: absolute;
    right: 0;
    z-index: 999;
    top: 0;
  }
  .sp-menu input {
    display: none;
  }
  .sp-menu .accshow {
    height: 0;
    overflow: hidden;
    width: 79vw;
    margin: 0 auto;
  }
  .sp-menu .accshow p {
    padding: 20px 40px 0;
    width: 89vw;
    margin: 0 auto;
  }
  .sp-menu .accshow p:last-of-type {
    padding-bottom: 20px;
  }
  .sp-menu .cssacc:checked + .accshow {
    height: auto;
    border-top: 1px dotted #156e95;
  }
}
footer {
  background-color: rgba(21, 110, 149, 0.8);
  background-blend-mode: multiply;
  color: #fff;
}
footer .contents_inner {
  padding: 50px 20px;
}
@media screen and (max-width: 767px) {
  footer .contents_inner {
    padding: 30px 20px;
  }
}
footer .footer_col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer_col--left {
  width: 24%;
}
@media screen and (max-width: 1279px) {
  footer .footer_col--left {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_col--left {
    width: 42%;
  }
}
footer .footer_col--right {
  display: flex;
  justify-content: flex-end;
  gap: 60px;
  width: 76%;
}
@media screen and (max-width: 1279px) {
  footer .footer_col--right {
    gap: 30px;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_col--right {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    gap: 0;
  }
}
footer .footer__nav {
  display: flex;
  flex-wrap: wrap;
  width: 44%;
  font-size: 12px;
}
@media screen and (max-width: 1279px) {
  footer .footer__nav {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  footer .footer__nav {
    width: 100%;
  }
}
footer .footer__nav ul {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  footer .footer__nav ul {
    margin-bottom: 20px;
  }
}
footer .footer__nav ul:nth-of-type(1), footer .footer__nav ul:nth-of-type(2) {
  width: 50%;
}
footer .footer__nav ul:nth-of-type(3) {
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .footer__nav ul:nth-of-type(3) {
    margin-bottom: 0;
  }
}
footer .footer__nav li:not(.footer__nav--ttl) {
  position: relative;
  padding-left: 24px;
  margin-bottom: 4px;
}
@media screen and (max-width: 1279px) {
  footer .footer__nav li:not(.footer__nav--ttl) {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer__nav li:not(.footer__nav--ttl) {
    padding-left: 16px;
  }
}
footer .footer__nav li:not(.footer__nav--ttl)::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 1px;
  background-color: #fff;
  left: 0;
  top: 10px;
}
@media screen and (max-width: 767px) {
  footer .footer__nav li:not(.footer__nav--ttl)::before {
    width: 12px;
  }
}
footer .footer__nav .footer__nav--ttl {
  font-size: 14px;
  margin-bottom: 6px;
}
@media screen and (max-width: 1279px) {
  footer .footer__nav .footer__nav--ttl {
    margin-bottom: 12px;
  }
}
footer .footer__contact {
  width: 33%;
}
@media screen and (max-width: 1279px) {
  footer .footer__contact {
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  footer .footer__contact {
    width: 100%;
    margin-right: 0;
    margin-left: auto;
  }
}
footer .footer__contact--tel {
  position: relative;
  font-size: 20px;
  letter-spacing: 0.18em;
  background-color: rgb(20, 100, 135);
  padding: 2px 20px 4px 50px;
  margin-bottom: 20px;
  width: 100%;
  display: block;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  footer .footer__contact--tel {
    font-size: 16px;
    padding: 2px 18px 4px 40px;
  }
}
@media screen and (max-width: 1279px) {
  footer .footer__contact--tel {
    max-width: 200px;
    margin-right: 0;
    margin-bottom: 10px;
    margin-left: auto;
  }
}
footer .footer__contact--tel::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 26px;
  background-image: url(../img/icon-footer-tel.svg);
  background-size: cover;
  left: 24px;
  top: calc(50% - 13px);
}
@media screen and (max-width: 1279px) {
  footer .footer__contact--tel::before {
    width: 15px;
    height: 20px;
    left: 20px;
    top: calc(50% - 10px);
  }
}
footer .footer__contact--txt {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  text-align: right;
  margin-bottom: 30px;
  white-space: nowrap;
}
@media screen and (max-width: 1279px) {
  footer .footer__contact--txt {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer__contact--txt {
    margin-bottom: 14px;
  }
}
footer .footer__contact--sns {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
footer .footer__contact--sns li > a {
  width: 40px;
  height: 40px;
  background-color: rgb(20, 100, 135);
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer__contact--sns li > a img {
  width: auto;
  height: 100%;
}
footer .footer__small {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  footer .footer__small {
    flex-wrap: wrap;
  }
}
footer .footer__small a {
  font-size: 12px;
}
footer .footer__small small {
  font-size: 10px;
  letter-spacing: 0.04em;
}

.page-top-btn {
  display: block;
  position: absolute;
  content: "";
  width: 30px;
  height: auto;
  right: 5%;
  bottom: 90px;
  text-align: center;
}
.page-top-btn:hover {
  bottom: 84px;
}
.page-top-btn img {
  width: 7px;
  height: auto;
}

h1,
h2 {
  font-size: 24px;
  color: #156e95;
  padding-left: 10px;
  border-left: 4px solid #156e95;
  line-height: 1;
  letter-spacing: 6px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1279px) {
  h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 18px;
  }
}

h1 span,
h2 span {
  margin-left: 20px;
  font-size: 12px;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 767px) {
  h1 span,
  h2 span {
    display: block;
    margin-left: 0;
    margin-top: 6px;
  }
}

.h02--bg {
  position: relative;
  background-color: #156e95;
  color: #fff;
  padding: 10px 0;
  width: 40%;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .h02--bg {
    width: 90%;
    letter-spacing: 0.2em;
  }
  .h02--bg span {
    display: inline-block;
    margin-left: 8px;
  }
}
.h02--bg::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #156e95;
  transform: translateX(-100vw);
}

h4 {
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.22em;
  color: #156e95;
  margin-bottom: 24px;
}
@media screen and (max-width: 1279px) {
  h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 16px;
  }
}

.txt--center {
  text-align: center;
}

.tNotes {
  display: inline-block;
  font-size: 10px;
  margin-top: 8px;
  letter-spacing: -0.01em !important;
  color: #bbb;
}

/*-----------------------------------------------
button
------------------------------------------------*/
.view_button {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  color: #156e95;
  text-transform: uppercase;
  position: absolute;
  border: solid 1px #156e95;
  border-radius: 2px;
  padding: 6px 34px 7px 33px;
  position: absolute;
  letter-spacing: 3.52px;
  left: auto;
  margin-top: 0px;
  transition: 0.5s;
}
.view_button:hover {
  margin-top: 4px;
  transition: 0.5s;
}
.view_button::before {
  content: "";
  display: block;
  width: 31px;
  height: 1px;
  position: absolute;
  right: -20px;
  top: 50%;
  background-color: #156e95;
}
.view_button::after {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: rotate(35deg);
  -webkit-transform-origin: right bottom;
  transform: rotate(35deg);
  transform-origin: right bottom;
  background-color: #156e95;
}

.link-btn {
  appearance: none;
  -webkit-appearance: none;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 54px;
  letter-spacing: 3px;
  background-color: #156e95;
  border-radius: 3px;
  width: 172px;
}

/*-----------------------------------------------
common
------------------------------------------------*/
.paragraph {
  margin-top: 20px;
}

.title_content {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .title_content {
    flex-wrap: wrap;
  }
}
.title_content img {
  position: absolute;
  width: 44%;
  right: -20%;
}
@media screen and (max-width: 1279px) {
  .title_content img {
    width: 40%;
    right: -8%;
  }
}
@media screen and (max-width: 767px) {
  .title_content img {
    position: initial;
    width: 100%;
    margin-top: 30px;
  }
}

.title_content--txtbox {
  width: 72%;
}
@media screen and (max-width: 1279px) {
  .title_content--txtbox {
    width: 64%;
  }
}
@media screen and (max-width: 767px) {
  .title_content--txtbox {
    width: 100%;
  }
}

/*-----------------------------------------------
tab
------------------------------------------------*/
.tab_wrap {
  width: 100%;
  margin: 60px auto 0;
}

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

.tab_area label {
  display: inline-block;
  width: 180px;
  height: 40px;
  border-radius: 10px 10px 0 0;
  padding: 12px 0;
  text-align: center;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
  letter-spacing: 4.32px;
  cursor: pointer;
  transition: ease 0.2s opacity;
  position: relative;
  margin-left: 10px;
}
@media screen and (max-width: 1279px) {
  .tab_area label {
    width: 130px;
    height: 34px;
    font-size: 12px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .tab_area label {
    width: calc(33.3333% - 20px);
    letter-spacing: 0.18em;
    padding: 10px 0;
  }
}
.tab_area label span {
  font-size: 12px;
}
@media screen and (max-width: 1279px) {
  .tab_area label span {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.15em;
  }
}
.tab_area label:hover {
  opacity: 0.5;
}

.tab1_label::before, .tab1_label::after,
.tab2_label::before,
.tab2_label::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 28px;
  border-style: solid;
  bottom: 0;
}
@media screen and (max-width: 1279px) {
  .tab1_label::before, .tab1_label::after,
  .tab2_label::before,
  .tab2_label::after {
    width: 6px;
    height: 17px;
  }
}
.tab1_label::before,
.tab2_label::before {
  border-width: 0 0 36px 10px;
  left: -9px;
}
@media screen and (max-width: 1279px) {
  .tab1_label::before,
  .tab2_label::before {
    border-width: 0 0 28px 10px;
  }
}
.tab1_label::after,
.tab2_label::after {
  border-width: 36px 0 0 10px;
  right: -9px;
}
@media screen and (max-width: 1279px) {
  .tab1_label::after,
  .tab2_label::after {
    border-width: 28px 0 0 10px;
  }
}

.tab1_label {
  background-color: rgb(176, 222, 217);
}
.tab1_label::before {
  border-color: transparent transparent rgb(176, 222, 217) transparent;
}
.tab1_label::after {
  border-color: transparent transparent transparent rgb(176, 222, 217);
}

.tab2_label {
  background-color: rgb(143, 209, 223);
}
.tab2_label::before {
  border-color: transparent transparent rgb(143, 209, 223) transparent;
}
.tab2_label::after {
  border-color: transparent transparent transparent rgb(143, 209, 223);
}

.tab_area label.tab2_label {
  margin-left: 16px;
}

.panel_area {
  background: #fff;
  border-top: 2px solid #156e95;
  padding: 60px 0;
}
@media screen and (max-width: 1279px) {
  .panel_area {
    padding: 30px 0;
  }
}
.panel_area .tab_panel {
  display: none;
}

#tab1 ~ .tab_area .tab1_label,
#tab2 ~ .tab_area .tab2_label {
  top: -4px;
}

#tab1:checked ~ .tab_area .tab1_label,
#tab2:checked ~ .tab_area .tab2_label {
  top: 0;
}

#tab1:checked ~ .panel_area #contact_tab1,
#tab2:checked ~ .panel_area #contact_tab2 {
  display: block;
}

#index-page {
  background-image: url(../img/bg-main.svg);
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  /*-----------------------------------------------
    MV Section
  ------------------------------------------------*/
  /*-----------------------------------------------
    News Section
  ------------------------------------------------*/
  /*-----------------------------------------------
    Content_box
  ------------------------------------------------*/
  /*-----------------------------------------------
    Philosophy Section
  ------------------------------------------------*/
  /*-----------------------------------------------
    Access Section
  ------------------------------------------------*/
  /*-----------------------------------------------
    Services Section
  ------------------------------------------------*/
  /*-----------------------------------------------
    animation
  ------------------------------------------------*/
}
#index-page .content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
#index-page h2 {
  border: none;
  mix-blend-mode: multiply;
}
#index-page h2 span {
  display: inline-block;
  margin-top: 10px;
  margin-left: 0;
}
#index-page .view_button {
  color: #fff;
  border: 1px solid #fff;
}
#index-page .view_button::before, #index-page .view_button::after {
  background-color: #fff;
}
#index-page .index_mv {
  max-width: 100vw;
}
#index-page .index_mv .video-wrap {
  position: relative;
  width: 100vw;
  overflow: hidden;
}
#index-page .index_mv .video-wrap > video {
  position: relative;
  width: 100vw;
  overflow: hidden;
}
#index-page .index_content_box {
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content_box {
    margin: 80px auto 0;
  }
}
#index-page .index_content_box::before {
  position: absolute;
  content: "";
  width: 40vw;
  max-width: 560px;
  top: 54px;
  left: -150px;
  z-index: 1;
  aspect-ratio: 105/68;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content_box::before {
    width: 100%;
    max-width: 100%;
    height: 90%;
    max-height: 245px;
    top: -240px;
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content_box::before {
    background-position: right top;
    max-height: 200px;
    top: -200px;
  }
}
#index-page .index_content_box .index_content--txt {
  position: relative;
  color: #fff;
  background-color: rgba(21, 110, 149, 0.8);
  padding: 80px 40px 100px 280px;
  width: 100vw;
  margin-left: 200px;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content_box .index_content--txt {
    padding: 40px 20px 80px;
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content_box .index_content--txt {
    padding: 40px 16px 120px 20px;
  }
}
#index-page .index_content_box .index_content--txt .index_content--txt_inner {
  position: relative;
  padding-left: 48px;
  border-left: 1px solid #fff;
  max-width: 480px;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content_box .index_content--txt .index_content--txt_inner {
    padding-left: 30px;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content_box .index_content--txt .index_content--txt_inner {
    padding-left: 20px;
  }
}
#index-page .index_content_box .index_content--txt .index_content--txt_inner::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 72px;
  background-color: #fff;
  left: -2px;
}
#index-page .index_content_box .index_content--txt h3 {
  letter-spacing: 4;
  font-size: 24px;
  margin-left: -1px;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content_box .index_content--txt h3 {
    padding-left: 0;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content_box .index_content--txt h3 {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
#index-page .index_content_box .index_content--txt p {
  padding: 30px 0 70px;
  font-size: 14px;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content_box .index_content--txt p {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content_box .index_content--txt p {
    font-size: 13px;
  }
}
#index-page .index_content_box .index_content--txt .index_section-top_btn {
  margin-top: -40px;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content_box .index_content--txt .index_section-top_btn {
    padding-left: 0;
  }
}
#index-page .index_content_box--left .index_content--txt {
  margin-left: -16vw;
  padding: 80px 24% 120px 12vw;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--philosophy.index_content_box {
    margin-top: 280px;
  }
}
@media screen and (max-width: 1279px) and (max-width: 767px) {
  #index-page .index_content--philosophy.index_content_box {
    margin-top: 240px;
  }
}
#index-page .index_content--philosophy::before {
  background-image: url(../img/img-top-about.jpg);
  background-position: right top;
  background-size: cover;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--philosophy::before {
    background-position: right top -70px;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content--philosophy::before {
    background-position: right top;
  }
}
#index-page .index_content--philosophy h2 {
  position: absolute;
  right: -40px;
  bottom: 50px;
  color: #156e95;
  text-align: right;
  z-index: 1;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--philosophy h2 {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content--philosophy h2 {
    right: 16px;
    bottom: 20px;
  }
}
#index-page .index_content--philosophy h2 span {
  display: inline-block;
  margin-top: 10px;
}
#index-page .index_content--access {
  margin-bottom: 100px;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--access {
    margin-bottom: 360px;
  }
}
#index-page .index_content--access::before {
  display: none;
}
#index-page .index_content--access .index_accessList li {
  width: 360px;
  max-width: 100%;
  margin-bottom: 24px;
}
#index-page .index_content--access .index_content--txt {
  position: relative;
  width: 80vw;
  max-width: 1100px;
  background-color: rgba(137, 137, 137, 0.8);
  padding: 60px 24% 50px 16vw;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--access .index_content--txt {
    width: 100%;
    margin-left: 0;
    padding: 60px 20px 50px;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content--access .index_content--txt {
    padding: 30px 20px 50px;
  }
}
#index-page .index_content--access .index_content--txt::before {
  position: absolute;
  content: "";
  width: 50vw;
  height: 100%;
  background-color: rgba(137, 137, 137, 0.8);
  top: 0;
  left: -50vw;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--access .index_content--txt::before {
    display: none;
  }
}
#index-page .index_content--access .index_content--txt p {
  padding: 0;
  font-size: 12px;
}
#index-page .index_content--access .index_content--txt p.index_accessList--ttl {
  padding: 0 20px 6px 0;
}
#index-page .index_content--access .index_content--txt p.index_accessList--ttl span {
  font-weight: bold;
}
#index-page .index_content--access .index_access--map {
  position: absolute;
  top: calc(50% - 170px);
  right: -12vw;
  width: 100%;
  max-width: 580px;
  height: 340px;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--access .index_access--map {
    right: 0;
    top: unset;
    bottom: -300px;
    max-width: unset;
  }
}
#index-page .index_content--access .index_access--map h2 {
  position: absolute;
  left: -160px;
  bottom: 0;
  text-align: right;
  color: rgba(137, 137, 137, 0.8);
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--access .index_access--map h2 {
    left: -130px;
  }
}
#index-page .index_content--access iframe {
  width: 100%;
  height: 100%;
}
#index-page .index_content--service {
  padding: 80px 0;
  text-align: center;
  color: #156e95;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--service {
    padding: 60px 0 0;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content--service {
    padding: 40px 0 0;
  }
}
#index-page .index_content--service .contents_inner {
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
}
#index-page .index_content--service h2 {
  position: relative;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--service h2 {
    margin-left: 80px;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content--service h2 {
    margin-left: 30px;
    font-size: 20px;
  }
}
#index-page .index_content--service h2::before {
  position: absolute;
  content: "";
  width: 20vw;
  height: 4px;
  background-color: rgba(21, 110, 149, 0.8);
  top: 8px;
  left: -21vw;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--service h2::before {
    height: 2px;
    top: 11px;
  }
}
#index-page .index_content--service h2 span {
  font-size: 11px;
  text-transform: uppercase;
}
#index-page .index_content--service .index_serviceList {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 40px;
  margin: 20px auto;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--service .index_serviceList {
    flex-wrap: wrap;
    max-width: 60%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1279px) and (max-width: 767px) {
  #index-page .index_content--service .index_serviceList {
    max-width: 100%;
  }
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--service .index_serviceList > div {
    margin: 0 auto 30px;
  }
  #index-page .index_content--service .index_serviceList > div:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1279px) and (max-width: 767px) {
  #index-page .index_content--service .index_serviceList > div {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content--service .index_serviceList {
    gap: 20px;
  }
}
#index-page .index_content--service .index_serviceList--1_wrapper,
#index-page .index_content--service .index_serviceList--2_wrapper,
#index-page .index_content--service .index_serviceList--3_wrapper {
  width: 33.3333%;
  height: auto;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--service .index_serviceList--1_wrapper,
  #index-page .index_content--service .index_serviceList--2_wrapper,
  #index-page .index_content--service .index_serviceList--3_wrapper {
    width: 100%;
  }
}
#index-page .index_content--service .index_serviceList--textbox {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--service .index_serviceList--textbox {
    margin-top: 30px;
    margin-bottom: 0;
    border-right: none;
  }
}
@media screen and (max-width: 767px) {
  #index-page .index_content--service .index_serviceList--textbox {
    margin-bottom: 30px;
  }
}
#index-page .index_content--service .index_serviceList--textbox h3 {
  padding-top: 50px;
  font-size: 18px;
  color: #0d0d0d;
}
#index-page .index_content--service .index_serviceList--textbox h3::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  #index-page .index_content--service .index_serviceList--textbox h3::before {
    width: 50px;
    height: 40px;
  }
}
#index-page .index_content--service .index_serviceList--1_wrapper .index_serviceList--textbox h3::before {
  background-image: url(../img/icon-top-service-01.svg);
  width: 70px;
  height: 52px;
  top: 0;
  left: calc(50% - 35px);
}
#index-page .index_content--service .index_serviceList--2_wrapper .index_serviceList--textbox h3::before {
  background-image: url(../img/icon-top-service-02.svg);
  width: 84px;
  height: 64px;
  top: -6px;
  left: calc(50% - 42px);
}
#index-page .index_content--service .index_serviceList--3_wrapper .index_serviceList--textbox h3::before {
  background-image: url(../img/icon-top-service-03.svg);
  width: 92px;
  height: 70px;
  top: -12px;
  left: calc(50% - 46px);
}
#index-page .index_content--service .index_serviceList--text {
  padding-top: 10px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 1.8px;
  color: #0d0d0d;
  text-align: left;
}
@media screen and (max-width: 1279px) {
  #index-page .index_content--service .index_serviceList--text {
    padding-bottom: 16px;
    font-size: 12px;
  }
}
#index-page .index_content--service .index_serviceList--btn {
  display: inline-block;
  background-color: #595757;
  border-radius: 16px;
  font-size: 12px;
  color: #fff;
  padding: 5px 40px;
  margin-top: 20px;
}
#index-page .index_content--service .leadText {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  color: #0d0d0d;
  margin-top: 50px;
}
#index-page .fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
#index-page .fade-in.show {
  opacity: 1;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
#index-page .fade-in.left.show {
  animation-name: left;
}
#index-page .fade-in.right.show {
  transition-delay: 1s;
  animation-name: right;
}
#index-page .fade-in.bottom {
  transform: translate(0, 20px);
  transition: opacity 2.5s ease, transform 2.5s ease;
}
#index-page .fade-in.bottom.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
#index-page .fade-in.bottom:nth-of-type(2) {
  transition-delay: 0.5s;
}
#index-page .fade-in.bottom:nth-of-type(3) {
  transition-delay: 1s;
}
@keyframes left {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes right {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

#about section {
  margin-top: -140px;
  padding-top: 160px;
}
@media screen and (max-width: 1279px) {
  #about section {
    margin-top: -40px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 1279px) {
  #about section:last-of-type {
    margin-bottom: 40px;
  }
}
#about article {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 120px;
  margin-top: 80px;
}
@media screen and (max-width: 1279px) {
  #about article {
    margin: 20px auto 40px;
  }
}
@media screen and (max-width: 767px) {
  #about article {
    margin-bottom: 0;
  }
}
#about .about_flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 40px;
  margin-top: 50px;
}
@media screen and (max-width: 1279px) {
  #about .about_flex {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  #about .about_flex {
    flex-wrap: wrap;
    margin-top: 0;
  }
}
#about .about_profile--info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
#about .about_profile--info .about_profile--col1,
#about .about_profile--info .about_profile--col2 {
  flex: 1 1 0;
  min-width: 300px;
}
@media screen and (max-width: 767px) {
  #about .about_profile--info {
    gap: 0;
  }
}
#about .about_profile--info dl {
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1279px) {
  #about .about_profile--info dl {
    flex-wrap: wrap;
    border-bottom: none;
  }
}
#about .about_profile--info dl:last-of-type {
  border-bottom: none;
}
#about .about_profile--info dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  color: #156e95;
  text-align: center;
  background-color: rgba(21, 110, 149, 0.2);
}
@media screen and (max-width: 1279px) {
  #about .about_profile--info dl dt {
    width: 100%;
    padding: 12px 0;
  }
}
@media screen and (max-width: 767px) {
  #about .about_profile--info dl dt {
    padding: 8px 0;
  }
}
#about .about_profile--info dl dd {
  width: 100%;
  padding: 20px 0 20px 24px;
  letter-spacing: -0.005em;
}
@media screen and (max-width: 1279px) {
  #about .about_profile--info dl dd {
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
  }
}
#about .about_profile--info dl dd li > span {
  display: inline-block;
  line-height: 1.3;
  margin-bottom: 12px;
}
#about .about_profile--info dl dd li:last-of-type > span {
  margin-bottom: 0;
}
#about .about_profile--info dl dd .listTtl {
  margin-bottom: 14px;
}
#about .about_profile--info .about_profile--col2 dl:first-of-type {
  min-height: 91px;
}
#about .about_profile--info .about_profile--col2 dl:first-of-type dd {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  #about .about_profile--info .about_profile--col2 dl:first-of-type dd {
    justify-content: center;
  }
}
#about .about_history--info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #about .about_history--info {
    gap: 0;
  }
}
#about .about_history--info .about_history--col1,
#about .about_history--info .about_history--col2 {
  flex: 1 1 0;
  min-width: 300px;
}
#about .about_history--info dl {
  display: flex;
  flex-wrap: nowrap;
  font-size: 14px;
}
@media screen and (max-width: 1279px) {
  #about .about_history--info dl {
    font-size: 12px;
  }
}
#about .about_history--info dl dt {
  position: relative;
  width: 140px;
}
@media screen and (max-width: 1279px) {
  #about .about_history--info dl dt {
    width: 120px;
  }
}
#about .about_history--info dl dt::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #156e95;
  right: -1px;
}
@media screen and (max-width: 1279px) {
  #about .about_history--info dl dt::before {
    right: 0;
  }
}
#about .about_history--info dl dd {
  position: relative;
  width: 100%;
  padding: 0 0 0 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #about .about_history--info dl dd {
    margin-bottom: 30px;
  }
}
#about .about_history--info dl dd::before {
  position: absolute;
  content: "●";
  color: #156e95;
  font-size: 0.9em;
  left: -6px;
}
#about .about_history--info dl:first-of-type dt::before {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 10%, rgb(21, 110, 149) 10%, rgb(21, 110, 149) 100%);
}
@media screen and (max-width: 1279px) {
  #about .about_history--info dl:first-of-type dt::before {
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 8%, rgb(21, 110, 149) 8%, rgb(21, 110, 149) 100%);
  }
}
#about .about_history--info dl:last-of-type dt::before {
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgb(21, 110, 149) 50%, rgb(21, 110, 149) 100%);
}
@media screen and (max-width: 1279px) {
  #about .about_history--info dl:last-of-type dt::before {
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 70%, rgb(21, 110, 149) 70%, rgb(21, 110, 149) 100%);
  }
}
@media screen and (max-width: 767px) {
  #about .about_history--info dl:last-of-type dt::before {
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 80%, rgb(21, 110, 149) 80%, rgb(21, 110, 149) 100%);
  }
}
#about .about_history--info dl:last-of-type dd {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #about .about_history--info dl:last-of-type dd {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  #about .about_history--info .about_history--col1 dl:last-of-type dt::before {
    background: #156e95;
  }
  #about .about_history--info .about_history--col2 dl:first-of-type dt::before {
    background: #156e95;
  }
}
#about .about_message--txt {
  width: calc(68% - 40px);
}
@media screen and (max-width: 1279px) {
  #about .about_message--txt {
    width: 64%;
  }
}
@media screen and (max-width: 767px) {
  #about .about_message--txt {
    order: 2;
    width: 100%;
  }
}
#about .about_message--txt p {
  margin-bottom: 20px;
}
#about .about_message--txt .message--name span {
  font-size: 20px;
}
@media screen and (max-width: 1279px) {
  #about .about_message--txt .message--name span {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  #about .about_message--txt .message--name {
    text-align: right;
  }
}
#about .about_message--img {
  width: 32%;
  height: 100%;
}
@media screen and (max-width: 1279px) {
  #about .about_message--img {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  #about .about_message--img {
    order: 1;
    width: 100%;
  }
}

/*-----------------------------------------------
  service
------------------------------------------------*/
#service .h03 {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  padding-left: 50px;
  border-bottom: 1px solid #156e95;
  position: relative;
}
@media screen and (max-width: 1279px) {
  #service .h03 {
    font-size: 20px;
    padding-left: 70px;
    padding-bottom: 4px;
  }
}
@media screen and (max-width: 767px) {
  #service .h03 {
    font-size: 18px;
  }
}
#service .h03::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  top: -10px;
  left: -50px;
  background-image: url("../img/icon-service-01.svg");
  background-repeat: no-repeat;
}
@media screen and (max-width: 1279px) {
  #service .h03::before {
    width: 60px;
    height: 60px;
    top: -10px;
    left: 0;
  }
}
#service .h04 {
  font-size: 16px;
  color: #156e95;
  font-family: "Noto Sans JP", "M PLUS 1p", sans-serif;
  display: inline-block;
  padding: 4px 32px;
  background-color: rgba(21, 110, 149, 0.2);
}
@media screen and (max-width: 1279px) {
  #service .h04 {
    font-size: 14px;
    padding: 4px 24px;
  }
}
#service .service_content {
  padding-top: 150px;
  margin-top: -70px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1279px) {
  #service .service_content {
    padding-top: 40px;
    margin-top: 0;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  #service .service_content {
    padding-top: 24px;
    margin-top: -16px;
  }
}
#service .service_content:last-of-type {
  margin-bottom: 160px;
}
#service .service_content:nth-of-type(2) .h03::before {
  background-image: url("../img/icon-service-02.svg");
  background-repeat: no-repeat;
}
#service .service_content:nth-of-type(3) .h03::before {
  background-image: url("../img/icon-service-03.svg");
  background-repeat: no-repeat;
}
#service .service_contentFlex {
  position: relative;
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
@media screen and (max-width: 1279px) {
  #service .service_contentFlex {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1279px) {
  #service .service_contentFlex {
    flex-wrap: wrap;
  }
}
#service .service_content--txtbox {
  width: 65%;
}
@media screen and (max-width: 1279px) {
  #service .service_content--txtbox {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  #service .service_content--txtbox {
    width: 100%;
  }
}
#service .service_content--txtbox .h04:not(:first-of-type) {
  margin-top: 50px;
}
@media screen and (max-width: 1279px) {
  #service .service_content--txtbox .h04:not(:first-of-type) {
    margin-top: 30px;
  }
}
#service .service_content--img {
  align-self: center;
  position: absolute;
  width: 50%;
  right: -20%;
}
@media screen and (max-width: 1279px) {
  #service .service_content--img {
    align-self: flex-start;
    position: absolute;
    width: 40%;
    right: -40px;
  }
}
@media screen and (max-width: 767px) {
  #service .service_content--img {
    position: initial;
    width: 100%;
  }
}

/*-----------------------------------------------
  contact
------------------------------------------------*/
#contact .service_contentFlex {
  display: flex;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  margin: 80px 0 100px;
}
@media screen and (max-width: 1279px) {
  #contact .service_contentFlex {
    justify-content: center;
    margin: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  #contact .service_contentFlex {
    flex-wrap: wrap;
  }
}
#contact .service_content--col01 {
  font-size: 14px;
  padding-right: 40px;
  border-right: 1px solid #0d0d0d;
}
@media screen and (max-width: 767px) {
  #contact .service_content--col01 {
    width: 100%;
    padding-right: 0;
    border-right: none;
    margin-bottom: 20px;
  }
}
#contact .service_content--tel {
  font-size: 22px;
  position: relative;
  padding-left: 24px;
}
#contact .service_content--tel::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 24px;
  top: calc(50% - 10px);
  left: 0;
  background-image: url(../img/icon-contact-tel.svg);
  background-repeat: no-repeat;
}
#contact .service_content--col02 {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  #contact .service_content--col02 {
    width: 100%;
    padding-left: 0;
    letter-spacing: 0.05em;
  }
}
#contact .contact_content--lead {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #contact .contact_content--lead {
    font-size: 18px;
  }
}

/*-----------------------------------------------
  form
------------------------------------------------*/
.contact_form_1,
.contact_form_2 {
  width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .contact_form_1,
  .contact_form_2 {
    width: 100%;
    font-size: 14px;
  }
}
.contact_form_1 .smf-item,
.contact_form_2 .smf-item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 30px 0;
}
.contact_form_1 .smf-item:not(:last-of-type),
.contact_form_2 .smf-item:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1279px) {
  .contact_form_1 .smf-item:not(:last-of-type),
  .contact_form_2 .smf-item:not(:last-of-type) {
    border-bottom: none;
  }
}
@media screen and (max-width: 1279px) {
  .contact_form_1 .smf-item,
  .contact_form_2 .smf-item {
    flex-wrap: wrap;
    padding-bottom: 0;
    border-bottom: none;
  }
  .contact_form_1 .smf-item:first-of-type,
  .contact_form_2 .smf-item:first-of-type {
    padding: 0;
  }
}
.contact_form_1 .smf-item .smf-item__col--label,
.contact_form_2 .smf-item .smf-item__col--label {
  padding: 4px;
  width: 40%;
}
@media screen and (max-width: 1279px) {
  .contact_form_1 .smf-item .smf-item__col--label,
  .contact_form_2 .smf-item .smf-item__col--label {
    width: 100%;
  }
}
.contact_form_1 .smf-item .smf-item__col--controls,
.contact_form_2 .smf-item .smf-item__col--controls {
  position: relative;
  padding: 4px;
  width: 60%;
  height: auto;
}
@media screen and (max-width: 1279px) {
  .contact_form_1 .smf-item .smf-item__col--controls,
  .contact_form_2 .smf-item .smf-item__col--controls {
    width: 100%;
  }
}
.contact_form_1 .smf-item .smf-text-control input,
.contact_form_2 .smf-item .smf-text-control input {
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}
.contact_form_1 .smf-item .smf-text-control__control,
.contact_form_2 .smf-item .smf-text-control__control {
  padding: 0.45rem 1rem;
}
.contact_form_1 .smf-item .smf-error-messages,
.contact_form_2 .smf-item .smf-error-messages {
  color: rgb(232, 65, 65);
  font-size: 0.8em;
}
.contact_form_1 .smf-item .smf-item__description,
.contact_form_2 .smf-item .smf-item__description {
  font-size: 12px;
  color: rgb(232, 65, 65);
}
.contact_form_1 .smf-item [data-invalid="1"],
.contact_form_2 .smf-item [data-invalid="1"] {
  border-color: rgb(232, 65, 65) !important;
}
.contact_form_1 .smf-radio-buttons-control:not(.smf-radio-buttons-control--horizontal) .smf-label,
.contact_form_2 .smf-radio-buttons-control:not(.smf-radio-buttons-control--horizontal) .smf-label {
  margin-bottom: 6px;
}
.contact_form_1 .smf-radio-button-control__control,
.contact_form_2 .smf-radio-button-control__control {
  height: 20px;
  width: 20px;
}
.contact_form_1 .smf-radio-button-control__control:checked,
.contact_form_2 .smf-radio-button-control__control:checked {
  background-color: #409bc0;
  border-color: #409bc0;
}
.contact_form_1 .smf-radio-button-control__control:before,
.contact_form_2 .smf-radio-button-control__control:before {
  background-color: #409bc0;
  box-shadow: inset 0 0 0 2px #fff;
  height: 18px;
  left: calc(50% - 9px);
  top: calc(50% - 9px);
  width: 18px;
}

#snow-monkey-form-1786[data-screen=confirm] .contact_form_1 .smf-item,
#snow-monkey-form-1786[data-screen=confirm] .contact_form_2 .smf-item {
  padding: 20px 0;
}

.smf-action .smf-button-control__control {
  appearance: none;
  -webkit-appearance: none;
  margin: 0 auto;
  font-size: 14px;
  font-family: "Noto Sans JP", "M PLUS 1p", sans-serif;
  color: #fff;
  padding: 10px 54px;
  letter-spacing: 3px;
  background-color: #156e95;
  background-image: none;
  border-radius: 3px;
  border: none;
  display: block;
  width: 190px;
  padding: 10px 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1279px) {
  .smf-action .smf-button-control__control {
    width: 160px;
    padding: 6px 10px;
    margin-top: 30px;
  }
}
.smf-action .smf-button-control__control:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.smf-action .smf-button-control__control[data-action=back] {
  background-color: #fff;
  border: #156e95 1px solid;
  color: #156e95;
}

.sub_info--box {
  margin-top: 30px;
}
.sub_info--box .sub_info {
  font-size: 12px;
  text-align: center;
}
.sub_info--box .contact-recaptcha {
  font-size: 10px;
  color: #8b8b8b;
  margin-top: 60px;
}

.smf-system-error-content-ready {
  background-color: rgb(176, 222, 217);
  text-align: center;
  padding: 14px 20px;
}

.contact_form_2 .saiyou-free .smf-item__description {
  color: #0d0d0d;
}

.smf-complete-content h2.wp-block-heading {
  font-size: 24px;
  border: none;
  text-align: center;
  margin-top: 120px;
}
.smf-complete-content p {
  text-align: center;
}
