@charset "UTF-8";
@font-face {
  font-family: "Yu Gothic";
  src: url("../font/Yu Gothic/Yu Gothic Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Yu Gothic";
  src: url("../font/Yu Gothic/Yu Gothic Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Yu Mincho";
  src: url("../font/Yu Mincho/Yu Mincho Demibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Yu Mincho";
  src: url("../font/Yu Mincho/Yu Mincho Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Times New Roman";
  src: url("../font/Times New Roman/Times New Roman.ttf") format("trueype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Times New Roman";
  src: url("../font/Times New Roman/Times New Roman Italic.ttf") format("trueype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Times New Roman";
  src: url("../font/Times New Roman/Times New Roman Bold.ttf") format("trueype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Times New Roman";
  src: url("../font/Times New Roman/Times New Roman Bold Italic.ttf") format("trueype");
  font-weight: 700;
  font-style: italic;
}
:root {
  --header_height: 80px;
}
@media (max-width: 767px) {
  :root {
    --header_height: 65px;
  }
}

/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

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

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #1A1311;
  font-family: "Yu Gothic", sans-serif;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
main {
  margin-top: var(--header_height);
}

/* コンテンツ幅
------------------------------*/
.inner {
  width: 970px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    max-width: 100%;
    width: 400px;
    padding: 0 min(8%, 30px);
  }
}

@media (min-width: 768px) {
  .u-inner-1166 {
    width: 1166px;
  }
}

@media (min-width: 768px) {
  .u-inner-748 {
    width: 748px;
  }
}

/* セクションタイトル
------------------------------*/
.c-section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: "Times New Roman", sans-serif;
}

.c-section-title--lg {
  font-size: 2.5rem;
}

/* テキスト色
------------------------------*/
.u-text-red {
  color: #BA1818;
}

/* ボタン
------------------------------*/
.c-button {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5714285714;
  letter-spacing: 0.1em;
  text-align: center;
  background: #fff;
  border-radius: 37px;
  padding: 2em 0;
  position: relative;
  overflow: hidden;
}
.c-button::before {
  content: "";
  position: absolute;
  background: #CDCAC1;
  width: 0%;
  height: 100%;
  right: 0%;
  top: 0%;
  transition: width 0.5s;
}
.c-button span {
  position: relative;
  z-index: 10;
}
@media (hover: hover) {
  .c-button:hover {
    opacity: 1;
    color: #008378;
  }
  .c-button:hover::before {
    width: 100%;
  }
}

/* 下層ページタイトル
------------------------------*/
.c-page-header {
  background: #008378;
  padding: 50px 0; /* sy */
}
@media (max-width: 767px) {
  .c-page-header {
    padding: 30px 0;
  }
}

.c-page-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.2em;
  color: #fff;
  font-family: "Yu Mincho", sans-serif;
}
@media (max-width: 767px) {
  .c-page-title {
    font-size: 1.6rem;
  }
}

/*------------------------------
header
------------------------------*/
header {
  height: var(--header_height);
  position: fixed;
  top: 0;
  z-index: 500;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
}
.header__inner {
  width: 1366px;
  max-width: 100%;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .header__inner {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 12px;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
}

.header__logo {
  width: min(190px, 18.2291666667vw);
  align-self: center;
}
@media (max-width: 767px) {
  .header__logo {
    width: 140px;
  }
}

.header__nav {
  display: flex;
}

.header__menu {
  align-items: center;
  display: flex;
}
.header__menu li:nth-child(n+2) {
  margin-left: 45px;
}
.header__menu li a {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4615384615;
}
@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.header__contact {
  height: var(--header_height);
  margin-left: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background: transparent linear-gradient(180deg, #007982 0%, #098777 59%, #30AF83 86%, #93CBA4 100%) 0% 0% no-repeat padding-box;
  padding: 0 28px;
}
@media (hover: hover) {
  .header__contact:hover {
    background: transparent linear-gradient(180deg, #002022 0%, #06695C 59%, #25956E 86%, #79AC88 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .header__contact {
    font-size: min(1.2rem, 3.2vw);
    padding: 0 0.8em;
    margin-left: 0;
  }
}

.drawer-icon {
  align-self: center;
  margin-left: 30px;
  width: 50px;
  height: 50px;
  z-index: 300;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  transform: rotate(45deg);
  top: 8px;
}
@media (max-width: 767px) {
  .drawer-icon {
    margin-left: 10px;
  }
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 24px;
  height: 1px;
  background: #008378;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 6px;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 14px;
  transition: transform 0.3s;
}

.drawer-content {
  width: 400px;
  height: 100%;
  position: fixed;
  top: var(--header_height);
  right: 0;
  background: #008378;
  padding: 110px 20px;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .drawer-content {
    width: 285px;
    padding: 50px 20px;
  }
}

.drawer-menu li a {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 3.4;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .drawer-menu li a {
    line-height: 3.2;
  }
}

.drawer__buttons {
  margin-top: 65px;
  text-align: center;
}
.drawer__buttons a {
  width: 175px;
  padding: 1.3em 0;
  display: block;
  margin: 0 auto;
}
.drawer__buttons a:nth-child(2) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .drawer__buttons {
    margin-top: 35px;
  }
}

.drawer__close {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0.1em;
  color: #fff;
  font-family: "Yu Mincho", sans-serif;
  width: fit-content;
  margin: 70px auto 0;
}
.drawer__close img {
  display: block;
  width: 23px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .drawer__close {
    margin-top: 30px;
  }
}

.drawer-background {
  position: fixed;
  top: var(--header_height);
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 19, 17, 0.4);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*------------------------------
footer
------------------------------*/
.footer__container {
  background: transparent linear-gradient(180deg, #007982 0%, #098777 59%, #30AF83 86%, #93CBA4 100%) 0% 0% no-repeat padding-box;
}

.footer__wrapper {
  padding: 20px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__wrapper {
    display: block;
    padding: 45px 0;
  }
}

.footer__logo {
  width: min(267px, 26.0416666667vw);
}
@media (min-width: 768px) {
  .footer__logo {
    margin-right: 5%;
  }
}
@media (max-width: 767px) {
  .footer__logo {
    width: 240px;
    max-width: 100%;
  }
}

.footer__content {
  color: #fff;
}
@media (min-width: 768px) {
  .footer__content {
    max-width: 75%;
    width: 525px;
  }
}

.footer__nav {
  padding: 30px 0 20px;
  border-bottom: 1px solid #FFFFFF;
}
@media (max-width: 767px) {
  .footer__nav {
    padding: 35px 0 20px;
  }
}

.footer__menu li a {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 3.0769230769;
}
@media (max-width: 767px) {
  .footer__menu li a {
    font-size: min(1.3rem, 3.4666666667vw);
  }
}

.footer__submenu {
  margin-top: 30px;
  display: flex;
}
.footer__submenu li:nth-child(n+2) {
  margin-left: 24px;
}
.footer__submenu li a {
  display: inline-block;
  font-size: min(1.2rem, 1.3020833333vw);
  font-weight: 700;
  line-height: 2.5;
}
@media (max-width: 767px) {
  .footer__submenu {
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .footer__submenu li {
    width: 55%;
  }
  .footer__submenu li:nth-child(2n) {
    width: 45%;
    padding-left: 5%;
  }
  .footer__submenu li:nth-child(n+2) {
    margin-left: 0;
    margin-top: 0;
  }
  .footer__submenu li a {
    font-size: min(1.3rem, 3.4666666667vw);
  }
}

.footer__copyright {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.5;
  text-align: right;
  margin-top: 2em;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 2.5em;
    font-size: min(1.2rem, 3.2vw);
    text-align: center;
  }
}

.footer__logo-bottom {
  width: 134px;
  margin: 0 auto;
  padding: 28px 0;
}
@media (max-width: 767px) {
  .footer__logo-bottom {
    padding: 15px 0;
  }
}

/*------------------------------
contact-banner
------------------------------*/
.contact-banner {
  padding: 75px 0 100px;
  background: #F0EFED;
}
@media (max-width: 767px) {
  .contact-banner {
    padding: 40px 0;
  }
}

.contact-banner__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #008378;
  text-align: center;
  font-family: "Times New Roman", sans-serif;
}

.contact-banner__wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  width: 800px;
  max-width: 100%;
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .contact-banner__wrapper {
    flex-direction: column;
    margin-top: 10px;
  }
}

.contact-banner__buttons {
  display: flex;
  flex-direction: column;
}
.contact-banner__buttons a::after {
  border: 2px solid #008378;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  z-index: 100;
  border-radius: inherit;
}
.contact-banner__buttons a:nth-child(2) {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .contact-banner__buttons {
    align-items: center;
    margin-top: 30px;
  }
  .contact-banner__buttons a:nth-child(2) {
    margin-top: 25px;
  }
}

.contact-banner__body {
  width: 54%;
}
@media (max-width: 767px) {
  .contact-banner__body {
    width: 100%;
    margin-top: 60px;
  }
}

.contact-banner__image {
  position: relative;
}
.contact-banner__image p {
  font-size: 1.5rem;
  font-weight: 500;
  position: absolute;
  transform: translate(-50%, -50%);
  line-height: 1.4;
  letter-spacing: 0.05em;
  top: 19%;
  left: 16%;
}
@media (min-width: 768px) {
  .contact-banner__image {
    margin-top: -8%;
  }
}
@media (max-width: 767px) {
  .contact-banner__image p {
    top: 4.8%;
    left: 26%;
    line-height: 1.6;
  }
}

.contact-banner__note {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 1em;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5384615385;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .contact-banner__note {
    margin-top: 2.5em;
    padding: 0 1.5em;
  }
}

/*------------------------------
float
------------------------------*/
.c-float { /* 共通 */
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.c-float.act {
  pointer-events: auto;
  opacity: 1;
}

.float1 {
  position: fixed;
  aspect-ratio: 128/390;
  width: 65px;
  right: 0%;
  top: 200px;
  z-index: 500;
  background: #CDCAC1;
  border-radius: 8px 0 0 8px;
  font-size: 1.3rem;
  font-weight: bold;
  writing-mode: tb;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2em;
}
@media (hover: hover) {
  .float1:hover {
    background: #008378;
    color: #fff;
  }
}
@media (max-width: 767px) {
  .float1 {
    top: 100px;
    aspect-ratio: 43/195;
    width: min(8%, 30px);
    font-size: min(1rem, 2.6666666667vw);
  }
}

.float2 {
  position: fixed;
  background: url(../img/float2.webp) no-repeat center center/100%;
  aspect-ratio: 89/91;
  width: 45px;
  right: min(55px, 4.0263543192vw);
  bottom: 10px;
  z-index: 500;
}

/*------------------------------
anchor
------------------------------*/
.c-anc {
  scroll-margin-top: var(--header_height);
}/*# sourceMappingURL=common.css.map */