@charset "UTF-8";
/*--------------------------------------------------------------
Foundation
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, b, em, i, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, figure, figcaption,
button, input, textarea, select, i {
  border: 0;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  letter-spacing: .08em;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  html {
    font-size: calc(100vw * 10 / 1300);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw * 10 / 500);
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  background: #FAF8F4;
  color: #3A3A3A;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
}

ul, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

a {
  backface-visibility: hidden;
  transition: .2s ease-in;
  transition-property: opacity, color, border, background, transform, box-shadow;
  opacity: 1;
  line-height: inherit;
}

img {
  vertical-align: middle;
}

img,
input[type="image"] {
  border: 0;
  height: auto;
  max-width: 100%;
}

input[type="submit"], input[type="button"], button {
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: inherit;
  letter-spacing: inherit;
  background: none;
}

strong {
  font-weight: bold;
}

a {
  text-decoration: none;
}

a:hover,
input[type="image"]:hover {
  opacity: 0.7;
}

main {
  overflow: hidden;
}

.m_ft {
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.ft_e {
  font-family: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
Component
--------------------------------------------------------------*/
.evt {
  visibility: hidden;
}

.evt.done {
  visibility: visible;
}

.c_anchor {
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: -12.4rem;
}

@media screen and (max-width: 767px) {
  .c_anchor {
    margin-top: -6.5rem;
  }
}

.c_btn {
  text-align: center;
}

.c_btn a {
  display: inline-block;
  text-align: center;
  background: #41A995 url(../img/arrow-right01.svg) no-repeat calc(100% - 1em) center/1.777em;
  color: #fff;
  border-radius: 3em;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 5.6rem;
  width: 30rem;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}

.c_ttl {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 6rem;
}

@media screen and (max-width: 767px) {
  .c_ttl {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

.c_ttl i {
  display: block;
  position: relative;
  left: -.3em;
  color: #41A995;
  font-size: .625em;
  margin-bottom: .6em;
}

.c_ttl i:before {
  content: '';
  display: inline-block;
  background: url(../img/ico-star.svg) no-repeat 50%/contain;
  width: 1.55em;
  height: 1.55em;
  margin-right: .5em;
  vertical-align: -.4em;
}

.c_sec {
  padding: 8rem 0;
}

.c_sec.bg {
  background: #E9ECF1;
}

@media screen and (max-width: 767px) {
  .c_sec {
    padding: 6rem 0;
  }
}

/*--------------------------------------------------------------
Utility
--------------------------------------------------------------*/
.u_wrap {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .u_inner {
    width: 112.8rem;
    max-width: calc(100% - 4rem);
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .u_inner {
    margin: 0 3rem;
  }
}

.u_switch_img {
  opacity: 1;
}

.u_relative {
  position: relative;
}

@media screen and (min-width: 768px) {
  .is_sp {
    display: none;
  }
  .is_tel {
    pointer-events: none;
    cursor: default;
  }
  .is_tel:hover {
    opacity: 1;
  }
}

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

/*--------------------------------------------------------------
Layout/PageBase
--------------------------------------------------------------*/
:where(#header, #footer) a {
  display: block;
}

#header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 66;
  height: 12.4rem;
}

@media screen and (min-width: 768px) {
  #header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem 0 1rem;
    transition: bacground .2s;
  }
}

@media screen and (min-width: 768px) and (min-width: 1400px) {
  #header {
    padding: 0 4.6rem 0 5.2rem;
  }
}

@media screen and (min-width: 768px) {
  body.fixed #header {
    background: #FAF8F4;
  }
}

@media screen and (max-width: 767px) {
  #header {
    height: 6.5rem;
    background: #FAF8F4;
  }
}

@media screen and (min-width: 768px) {
  #toggle_menu {
    display: flex;
    height: 100%;
    align-items: flex-end;
    gap: 2rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 1400px) {
  #toggle_menu {
    gap: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .h_logo {
    position: absolute;
    left: 1rem;
    top: 1rem;
  }
}

.h_logo img {
  width: 22.5rem;
}

@media screen and (max-width: 767px) {
  .h_logo img {
    width: 15rem;
  }
}

@media screen and (min-width: 768px) {
  .h_nav {
    display: flex;
    font-size: 1.8rem;
    gap: 1.5em;
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .h_nav a {
    padding: 1em 0;
  }
}

.h_nav a {
  letter-spacing: .05em;
}

.h_sns {
  display: flex;
  justify-content: flex-end;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .h_sns {
    justify-content: center;
    margin-top: 4rem;
  }
  .h_sns img {
    display: block;
    margin: 0 auto;
  }
}

.h_sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  letter-spacing: 0;
  height: 2.2rem;
}

@media screen and (max-width: 767px) {
  .h_sns a {
    height: auto;
    flex-direction: column;
  }
}

.h_sns img {
  font-size: 1rem;
  width: 2.6em;
}

.h_sns .insta {
  width: 2.2em;
}

.h_sns .fb {
  width: 2.4em;
}

.h_sns li + li {
  border-left: solid 1px #3A3A3A;
  margin-left: 3rem;
  padding-left: 3rem;
}

.c_link {
  display: flex;
  gap: 1.4rem;
}

@media screen and (max-width: 767px) {
  .c_link {
    flex-direction: column;
  }
}

.c_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3em;
  background: #FFA17A;
  color: #fff;
  text-align: center;
  height: 5rem;
  line-height: 1.2;
  font-size: 1.8rem;
  letter-spacing: .05em;
  gap: .6em;
}

@media screen and (min-width: 768px) {
  .c_link a {
    width: 22rem;
  }
}

.c_link .mail {
  background: #41A995;
}

.c_link img {
  width: 2.6rem;
}

.h_link {
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .h_link {
    margin: 3rem 0 5rem;
  }
}

@media screen and (max-width: 767px) {
  .h_menu {
    position: absolute;
    right: 3rem;
    top: 2.1rem;
    width: 3rem;
    height: 2rem;
    cursor: pointer;
    z-index: 10;
  }
  .h_menu .icon {
    position: relative;
    display: block;
    left: calc(50% - 1.5rem);
    top: calc(50% - 0.1rem);
  }
  .h_menu .icon, .h_menu .icon:before, .h_menu .icon:after {
    width: 3rem;
    height: 0.2rem;
    background: #29241d;
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition-property: background-color, top;
  }
  .h_menu .icon:before, .h_menu .icon:after {
    content: '';
    position: absolute;
    top: calc(((2rem / 2) - 0.1rem) * -1);
    left: 0;
  }
  .h_menu .icon:after {
    top: calc((2rem / 2 - 0.1rem));
  }
  body.open .h_menu .icon {
    background: transparent;
  }
  body.open .h_menu .icon:before, body.open .h_menu .icon:after {
    top: 0;
  }
  body.open .h_menu .icon:before {
    transform: rotate(45deg);
  }
  body.open .h_menu .icon:after {
    transform: rotate(-45deg);
  }
  #toggle_menu {
    display: none;
    position: fixed;
    overflow-y: auto;
    top: 6.5rem;
    height: calc(100% - 6.5rem);
    left: 0;
    width: 100%;
    background: #FAF8F4;
    text-align: center;
    padding: 5rem 3rem;
  }
  body.open {
    overflow-y: hidden;
  }
  body.open #toggle_menu {
    display: block;
    animation: itemFadeIn 1s;
  }
  body.close #toggle_menu {
    display: none;
    animation: itemFadeOut .8s;
  }
}

@keyframes itemFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes itemFadeOut {
  from {
    opacity: 1;
    display: block;
  }
  to {
    opacity: 0;
  }
}

.f_contact {
  padding: 8rem 0;
  background: #41A995;
  text-align: center;
  border-radius: 4rem;
  position: relative;
}

.f_contact.w:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4rem;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
}

.f_contact:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4rem;
  bottom: 0;
  background: #15564A;
  left: 0;
  z-index: -1;
}

.f_contact .u_inner {
  background: #fff;
  border-radius: 1.6rem;
  padding: 8.5rem 2rem 8rem;
}

@media screen and (max-width: 767px) {
  .f_contact .u_inner {
    padding: 6rem 3rem;
  }
}

.f_contact p {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 6rem;
}

@media screen and (max-width: 767px) {
  .f_contact p {
    margin-bottom: 4rem;
  }
}

.f_contact ul {
  gap: 2rem 2.4rem;
  justify-content: center;
}

.f_contact a {
  font-size: 2rem;
  height: 6.4rem;
  box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 768px) {
  .f_contact a {
    width: 32rem;
  }
}

.f_contact img {
  width: 3.2rem;
}

#footer {
  background: #15564A;
  color: #fff;
  padding: 9rem 0 10rem;
}

@media screen and (max-width: 767px) {
  #footer {
    padding: 6rem 0;
  }
}

@media screen and (min-width: 768px) {
  .f_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5rem;
  }
  .f_row .right {
    width: 44rem;
  }
  .f_row .row {
    display: flex;
    gap: 3rem;
    align-items: center;
  }
}

.f_logo img {
  width: 30.9rem;
}

@media screen and (max-width: 767px) {
  .f_logo img {
    width: 25rem;
  }
}

.f_info {
  margin: 3rem 0 0;
}

@media screen and (max-width: 767px) {
  .f_info {
    margin: 3rem 0 0;
  }
}

.f_info2 {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 0;
  margin: 3.5rem 0 0;
}

@media screen and (max-width: 767px) {
  .f_info2 {
    margin: 2rem 0 5rem;
  }
}

.f_info2 dt {
  width: 4em;
}

.f_info2 dd {
  width: calc(100% - 4em);
}

.f_nav {
  display: flex;
}

@media screen and (min-width: 768px) {
  .f_nav {
    font-size: 1.8rem;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .f_nav {
    gap: 2em;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.f_nav a {
  padding: .2em 0;
  letter-spacing: .05em;
}

.f_sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4.5rem;
}

.f_sns img {
  font-size: 1rem;
  width: 4.9em;
}

.f_sns .insta {
  width: 3.6em;
}

.f_sns .fb {
  width: 3.9em;
}

.f_link {
  margin: 4.5rem 0;
}

.f_link a {
  background: #fff;
  color: #15564A;
}

@media screen and (min-width: 768px) {
  .f_link a {
    height: 4rem;
    font-size: 1.4rem;
  }
}

.f_copy {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 6rem;
}

footer {
  overflow: hidden;
}

/*--------------------------------------------------------------
Project
--------------------------------------------------------------*/
.fixed_recruit {
  position: fixed;
  top: 16.4rem;
  right: 0;
  z-index: 65;
}

@media screen and (max-width: 767px) {
  .fixed_recruit {
    top: 6.5rem;
  }
}

.fixed_recruit a {
  display: block;
  font-size: 1.7rem;
}

@media screen and (max-width: 767px) {
  .fixed_recruit a {
    font-size: 1.4rem;
  }
}

.fixed_recruit p {
  color: #15564A;
  font-weight: bold;
  position: absolute;
  top: 2.05em;
  left: 9.11em;
}

.fixed_recruit img {
  width: 17.882em;
}

.top_main {
  margin: 12.4rem 0 7rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top_main {
    margin: 6.5rem 0 7rem;
  }
}

.top_main figure {
  width: 130.2rem;
  margin-left: calc(50% - 56rem);
  margin-top: -4.5rem;
}

@media screen and (max-width: 767px) {
  .top_main figure {
    width: 115%;
    margin-left: -5%;
    margin-top: 0;
    padding-top: 5rem;
  }
}

.top_main figure img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .top_main dl {
    position: absolute;
    left: calc(50% - 55.4rem);
    bottom: 5.5rem;
  }
}

@media screen and (max-width: 767px) {
  .top_main dl {
    margin: 0 3rem;
  }
}

.top_main dt, .top_main i {
  position: relative;
  z-index: 0;
  padding-right: .5em;
}

.top_main dt:before, .top_main i:before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FAF8F4;
  border-radius: 3em;
  z-index: -1;
  filter: blur(1.4rem);
}

.top_main i:before {
  filter: blur(0.6rem);
}

.top_main dt {
  font-size: 4.8rem;
  font-weight: bold;
  color: #41A995;
  margin-bottom: 1em;
  display: inline-block;
  position: relative;
  padding-right: .5em;
}

@media screen and (max-width: 767px) {
  .top_main dt {
    margin-bottom: .6em;
  }
}

.top_main dd {
  font-size: 1.8rem;
  line-height: 2;
}

.biz_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .biz_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.biz_list a {
  display: block;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0.2rem 1rem rgba(52, 52, 52, 0.25);
}

.biz_list a + div {
  display: none;
}

.biz_list p {
  height: 3em;
  display: flex;
  align-items: center;
  margin: 1em 1.2em;
}

.news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

@media screen and (max-width: 767px) {
  .news_list {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 5rem;
  }
}

.news_list a {
  display: block;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #fff;
  height: 100%;
  box-shadow: 0 0.2rem 1rem rgba(52, 52, 52, 0.25);
}

.news_list p {
  margin: 1.2em 1.2em;
}

.news_list img {
  width: 100%;
}

.news_list time {
  display: block;
  text-align: right;
  color: #41A995;
  font-weight: 600;
  margin-top: 1em;
}

.top_biz {
  margin-bottom: 6.8rem;
}

.top_biz .c_btn {
  margin-top: 5rem;
}

.top_nav {
  background: #fff;
  padding: 9rem 0 6rem;
}

@media screen and (min-width: 768px) {
  .top_nav section {
    display: flex;
    justify-content: space-between;
  }
  .top_nav section .desc {
    width: 51rem;
  }
}

.top_nav .c_ttl {
  text-align: left;
  margin-bottom: 4.5rem;
}

.top_nav .c_btn {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .top_nav .c_btn {
    margin-top: 5rem;
    text-align: left;
  }
}

.top_nav p {
  font-size: 1.8rem;
  line-height: 1.77;
}

@media screen and (max-width: 767px) {
  .top_nav figure {
    margin-top: 3rem;
    position: relative;
  }
  .top_nav figure img {
    width: 100%;
  }
}

.top_history {
  margin-bottom: 6rem;
}

@media screen and (min-width: 768px) {
  .top_history {
    margin-bottom: 9rem;
  }
  .top_history .c_btn {
    margin-top: 8rem;
  }
  .top_history figure {
    width: 55.8rem;
    margin-right: -6.5rem;
  }
}

@media screen and (max-width: 767px) {
  .top_history figure {
    left: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .top_about {
    flex-direction: row-reverse;
  }
  .top_about figure {
    width: 56.1rem;
    margin-left: -6rem;
  }
}

@media screen and (max-width: 767px) {
  .top_about figure {
    left: -3rem;
  }
}

.top_news {
  padding: 7rem 0;
}

.top_news .c_btn {
  margin-top: 6rem;
}

.low_header {
  margin: 12.4rem 0 9.5rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .low_header {
    margin: 6.5rem 0 7rem;
  }
}

.low_header img {
  position: relative;
  left: 50%;
  translate: -50% 0;
  width: 200%;
  max-width: 200%;
}

@media screen and (min-width: 768px) {
  .low_header img {
    width: 144rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 1440px) {
  .low_header img {
    width: 100%;
  }
}

.low_header .ttl {
  font-size: 4.8rem;
  font-weight: 600;
  color: #fff;
  left: calc(50% - 46rem);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}

@media screen and (max-width: 767px) {
  .low_header .ttl {
    left: 3rem;
    font-size: 4rem;
  }
}

.low_header .ttl i {
  display: block;
  position: relative;
  left: -.3em;
  font-size: .5em;
  margin-bottom: .6em;
}

.low_header .ttl i:before {
  content: '';
  display: inline-block;
  background: url(../img/ico-star02.svg) no-repeat 50%/contain;
  width: 1.291em;
  height: 1.291em;
  margin-right: .5em;
  vertical-align: -.4em;
}

.biz_body {
  margin-bottom: 10rem;
}

.biz_body .lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.22;
  margin-bottom: 4rem;
}

.biz_modal .ttl {
  font-weight: 600;
  color: #41A995;
  font-size: 3rem;
  border-bottom: solid 1px #8C8C8C;
  line-height: 1.33;
  padding: .5em 0;
}

@media screen and (min-width: 768px) {
  .biz_modal .ttl {
    font-size: 3.2rem;
    width: calc(100% - 39.4rem);
    display: flex;
    align-items: center;
  }
}

.biz_modal p {
  font-size: 1.4rem;
  line-height: 2.2;
}

.biz_modal .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .biz_modal .row {
    flex-direction: column;
    gap: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .biz_modal figure {
    width: 34.7rem;
  }
}

.biz_modal figure img {
  width: 100%;
}

.popup-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(40, 40, 40, 0.6);
  z-index: 9999;
  display: none;
}

.popup-modal .close {
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8em;
  margin-top: 3rem;
}

.popup-modal .close img {
  width: 2em;
}

.popup-modal .wrap {
  display: flex;
  height: calc(100vh - 4rem);
  margin-top: 2rem;
}

.popup-modal .box {
  width: 92rem;
  max-width: calc(100% - 4rem);
  margin: auto;
  position: relative;
  background: #fff;
  border-radius: 2rem;
}

.popup-modal .scroll {
  padding: 5.5rem 4.8rem 3rem;
  overflow-y: auto;
  height: 100%;
  max-height: calc(100vh - 4rem);
}

@media screen and (max-width: 767px) {
  .popup-modal .scroll {
    padding: 4rem 3rem 3rem;
  }
}

body.show-modal {
  overflow-y: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  display: block;
  animation: fadeIn 1s;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    display: block;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  display: none;
  animation: fadeOut .8s;
}

.biz_detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rem;
}

@media screen and (max-width: 767px) {
  .biz_detail {
    flex-direction: column;
    gap: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .biz_detail figure {
    width: 44rem;
  }
  .biz_detail .desc {
    width: 59rem;
  }
}

.biz_detail img {
  width: 100%;
}

.biz_detail .ttl {
  font-size: 3.2rem;
  font-weight: 600;
  color: #41A995;
  margin-bottom: 1em;
}

.biz_detail p {
  font-size: 1.4rem;
  line-height: 2.21;
}

.news_body {
  margin-bottom: 11rem;
}

.news_body .lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.22;
  margin-bottom: 4rem;
}

.nav-links {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  gap: 2em;
  font-size: 2rem;
}

.nav-links span, .nav-links a {
  display: block;
  width: 1.5625em;
  line-height: 1.5625;
  text-align: center;
  font-weight: 500;
}

.nav-links a {
  color: #41A995;
  background: #fff;
}

.nav-links span {
  color: #fff;
  background: #41A995;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

.news_detail {
  margin: 22rem 0 10rem;
}

@media screen and (max-width: 767px) {
  .news_detail {
    margin: 10rem 0 10rem;
  }
}

.news_detail .ttl {
  color: #41A995;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: .7em;
}

.news_detail .pdf {
  color: #E93030;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .5em;
  margin-left: 1em;
}

.news_detail time {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1em;
}

.news_detail p {
  line-height: 1.75;
  margin-bottom: 1.75em;
}

.news_detail figure {
  margin-bottom: 5.5rem;
}

@media screen and (max-width: 767px) {
  .news_detail figure {
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .news_detail .u_inner {
    width: 70rem;
  }
}

.about_bg {
  background: #fff;
}

.about_sec .c_ttl {
  text-align: left;
}

.about_sec .c_btn {
  margin-top: 4rem;
}

.about_sec p {
  line-height: 1.77;
  font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
  .about_sec .c_btn {
    text-align: left;
  }
  .about_sec .u_inner {
    display: flex;
    justify-content: space-between;
  }
  .about_sec .desc {
    width: 51rem;
  }
  .about_sec figure {
    width: 62.2rem;
    margin-right: -16.5rem;
  }
}

@media screen and (max-width: 767px) {
  .about_sec .desc {
    margin-bottom: 4rem;
  }
}

.about_report {
  background: #FAF8F4;
  border-radius: 4rem;
  padding: 9rem 0 6rem;
  margin-top: 6rem;
}

@media screen and (min-width: 768px) {
  .about_report {
    padding: 9rem 0;
    border-radius: 6rem;
    margin-top: 9rem;
  }
  .about_report figure {
    width: 56.3rem;
    margin-right: -10.5rem;
  }
}

.about_info {
  padding: 9rem 0;
}

.about_info .c_ttl {
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .about_info .u_inner {
    width: 80rem;
  }
  .about_info dl {
    display: flex;
    flex-wrap: wrap;
  }
  .about_info dt, .about_info dd {
    border-bottom: solid 1px #AEAEAE;
  }
  .about_info dt {
    width: 26rem;
  }
  .about_info dd {
    width: calc(100% - 26rem);
  }
}

.about_info dt, .about_info dd {
  line-height: 2.2;
  font-size: 1.8rem;
  padding: 1em 0;
}

.about_info dt {
  font-weight: 600;
  color: #41A995;
}

.about_info .map {
  height: 30.4rem;
  margin: 2rem 0 1.5rem;
}

@media screen and (max-width: 767px) {
  .about_info .map {
    height: 25rem;
  }
}

.about_info iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .about_info dt {
    padding-bottom: 0;
  }
  .about_info dd {
    padding-top: 0;
    border-bottom: solid 1px #AEAEAE;
  }
}

.history_body {
  margin-bottom: 14rem;
}

.history_body .box {
  position: relative;
  margin-top: 12rem;
}

@media screen and (max-width: 767px) {
  .history_body .box {
    margin-top: 8rem;
  }
}

.history_body .box img {
  position: absolute;
}

@media screen and (max-width: 767px) {
  .history_body .box img {
    display: none;
  }
}

.history_body .box img.a {
  right: -22rem;
  width: 38.8rem;
  top: 2rem;
}

.history_body .box img.b {
  left: -27rem;
  width: 48.4rem;
  bottom: -8rem;
}

.history_body .box img.c {
  right: -25.5rem;
  width: 47.2rem;
  bottom: -15rem;
}

.history_body .box img.d {
  left: -26rem;
  width: 47.4rem;
  bottom: -9.1rem;
}

.history_body .box img.e {
  right: -38.5rem;
  width: 60.4rem;
  bottom: -33rem;
}

.history_body .box img.f {
  left: -25rem;
  width: 47.4rem;
  bottom: -15rem;
}

.history_body .box img.g {
  right: -40rem;
  width: 60.4rem;
  bottom: -24rem;
}

.history_body .box.odd {
  padding-left: 27rem;
}

@media screen and (max-width: 767px) {
  .history_body .box.odd {
    padding-left: 9.5rem;
  }
}

.history_body .box.odd i {
  left: -27rem;
}

@media screen and (max-width: 767px) {
  .history_body .box.odd i {
    left: -10.5rem;
  }
}

.history_body .box.odd .row:before {
  left: -9rem;
}

@media screen and (max-width: 767px) {
  .history_body .box.odd .row:before {
    left: -2.5rem;
  }
}

.history_body .box.odd .row:after {
  left: -9.6rem;
}

@media screen and (max-width: 767px) {
  .history_body .box.odd .row:after {
    left: -3rem;
  }
}

.history_body .box.even {
  padding-left: 17rem;
}

@media screen and (max-width: 767px) {
  .history_body .box.even {
    padding-left: 0;
    margin-right: 9.5rem;
  }
}

.history_body .box.even i {
  right: 0;
}

@media screen and (max-width: 767px) {
  .history_body .box.even i {
    right: -10.5rem;
  }
}

.history_body .box.even .row:before {
  right: 18rem;
}

@media screen and (max-width: 767px) {
  .history_body .box.even .row:before {
    right: -2.5rem;
  }
}

.history_body .box.even .row:after {
  right: 17.4rem;
}

@media screen and (max-width: 767px) {
  .history_body .box.even .row:after {
    right: -3rem;
  }
}

.history_body .row {
  position: relative;
}

.history_body .row:last-child:before {
  content: none;
}

.history_body .row:before {
  content: '';
  width: 1.6rem;
  background: #41A995;
  height: calc(100% + 7rem);
  position: absolute;
  top: 0;
}

@media screen and (max-width: 767px) {
  .history_body .row:before {
    width: .8rem;
  }
}

.history_body .row:after {
  content: '';
  position: absolute;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: #fff;
  border: solid 0.5rem #41A995;
  z-index: 2;
  top: -.5rem;
}

@media screen and (max-width: 767px) {
  .history_body .row:after {
    width: 1.8rem;
    height: 1.8rem;
    border-width: .4rem;
  }
}

.history_body .row i {
  color: #FFA17A;
  font-size: 5.6rem;
  font-weight: bold;
  font-family: "Anonymous Pro", monospace;
  margin-top: -.6em;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .history_body .row i {
    font-size: 2.6rem;
  }
}

.history_body dl {
  border-bottom: solid 1px #AEAEAE;
  margin-bottom: 7rem;
  padding-bottom: 1.3rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .history_body dl {
    width: 67rem;
  }
}

.history_body dt {
  color: #41A995;
  font-weight: bold;
  font-size: 2.4rem;
  position: absolute;
  margin-left: 1.5rem;
  margin-top: -.2em;
}

@media screen and (max-width: 767px) {
  .history_body dt {
    font-size: 2.2rem;
    margin-left: 0;
  }
}

.history_body dd {
  line-height: 1.625;
  margin-left: 12rem;
  margin-bottom: 3.7rem;
}

@media screen and (max-width: 767px) {
  .history_body dd {
    margin-left: 6rem;
  }
}

.form_body {
  margin-bottom: 19rem;
}

.form_body:has(form[data-screen="complete"]) .form_body {
  padding-top: 23rem;
}

@media screen and (max-width: 767px) {
  .form_body:has(form[data-screen="complete"]) .form_body {
    padding-top: 12rem;
  }
}

.form_body:has(form[data-screen="complete"]) .low_header {
  display: none;
}

.form_body:has(form[data-screen="confirm"]) .ttl2 {
  display: block;
}

.form_body .ttl2 {
  text-align: center;
  color: #41A995;
  font-weight: bold;
  font-size: 3.2rem;
  margin: 0 0 7rem;
  display: none;
}

@media screen and (max-width: 767px) {
  .form_body .ttl2 {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 768px) {
  .form_body .u_inner {
    width: 102.2rem;
  }
}

.form_body .smf-progress-tracker {
  width: 50rem;
  margin: 0 auto 8rem;
}

@media screen and (max-width: 767px) {
  .form_body .smf-progress-tracker {
    width: 44rem;
  }
}

.form_body .smf-progress-tracker__item--input .smf-progress-tracker__item__number:before {
  content: '入力';
}

.form_body .smf-progress-tracker__item--confirm .smf-progress-tracker__item__number:before {
  content: '確認';
}

.form_body .smf-progress-tracker__item--complete .smf-progress-tracker__item__number:before {
  content: '完了';
}

.form_body .smf-progress-tracker__item__number {
  font-size: 2rem;
  width: 3.8em;
  height: 3.8em;
  border: solid 2px #41A995;
  color: transparent;
  background: #41A995;
}

@media screen and (max-width: 767px) {
  .form_body .smf-progress-tracker__item__number {
    font-size: 1.7rem;
  }
}

.form_body .smf-progress-tracker__item__number:before {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 94%;
  text-align: center;
  z-index: 1;
  color: #fff;
  letter-spacing: .04em;
  font-weight: 600;
  border: solid 1px #fff;
  border-radius: 50%;
  height: 94%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: .2em;
  letter-spacing: .2em;
  padding-left: .2em;
}

.form_body .smf-progress-tracker__item__text {
  display: none;
}

.form_body .smf-progress-tracker__item:after, .form_body .smf-progress-tracker__item:before {
  background: #41A995;
  height: .5rem;
  top: calc(50% - .25rem);
}

.form_body .smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
  transform: scale(1.3);
  background: #41A995;
}

.form_body .smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number:before {
  background: #41A995;
}

.form_body .smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number:after {
  content: none;
}

.form_body form[data-screen="confirm"] .doui {
  display: none;
}

.form_body form[data-screen="confirm"] .smf-item__label em {
  display: none;
}

@media screen and (min-width: 768px) {
  .form_body form[data-screen="confirm"] .wp-block-snow-monkey-forms-item {
    display: flex;
    justify-content: space-between;
  }
  .form_body form[data-screen="confirm"] .smf-item__label {
    width: 16em;
  }
  .form_body form[data-screen="confirm"] .smf-item__col--controls {
    width: calc(100% - 18em);
  }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
  .form_body form[data-screen="confirm"] .smf-item__col--controls {
    font-size: 1.6rem;
  }
}

.form_body .smf-item__label {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: .12em;
  margin-bottom: .8em;
  color: #41A995;
  position: relative;
}

@media screen and (max-width: 767px) {
  .form_body .smf-item__label br {
    display: none;
  }
}

.form_body .smf-item__label em {
  background: #E56666;
  font-weight: 500;
  color: #fff;
  font-size: .88em;
  letter-spacing: .12em;
  padding: .15em 1.4em .1em;
  border-radius: .4rem;
  position: absolute;
  right: 0;
  top: 0;
}

.form_body .smf-item__controls {
  font-weight: 400;
}

.form_body .smf-item {
  margin-bottom: 4rem;
  font-size: 1.6rem;
}

.form_body .smf-item .wp-block-group {
  gap: 2rem;
}

.form_body .smf-item .wp-block-group > * {
  flex: 1;
}

@media screen and (min-width: 768px) {
  .form_body .smf-item {
    display: flex;
    justify-content: space-between;
  }
  .form_body .smf-item .smf-item__col--label {
    width: 29rem;
    margin-top: 1rem;
  }
  .form_body .smf-item .smf-item__col--controls {
    width: calc(100% - 32rem);
  }
}

@media screen and (max-width: 767px) {
  .form_body .smf-item {
    margin-bottom: 2.8rem;
  }
}

.form_body .smf-item input[type="text"], .form_body .smf-item input[type="email"], .form_body .smf-item input[type="tel"], .form_body .smf-item textarea, .form_body .smf-item select {
  background: #fff;
  width: 100%;
  border-radius: .8rem;
  padding: .75em 1.5em .7em;
  border: none;
  box-shadow: 0 0 0.6rem rgba(86, 86, 86, 0.25);
  font-size: 16px;
}

.form_body .smf-item .smf-select-control {
  width: 100%;
}

.form_body .smf-item textarea {
  height: 14em;
  display: block;
}

@media screen and (max-width: 767px) {
  .form_body .smf-item textarea {
    height: 18em;
  }
}

.form_body .smf-item input[type="checkbox"] {
  width: 1.4em;
  height: 1.4em;
  margin-right: .6em;
  position: relative;
  top: -.3em;
}

.form_body .doui {
  box-shadow: 0 0 0.6rem rgba(86, 86, 86, 0.25);
  background: #fff;
  border-radius: .8rem;
  padding: 1.5em 2.5em .7em;
  margin-top: 0;
  overflow-y: auto;
  color: #989898;
  height: 21rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.form_body .smf-action {
  display: flex;
  margin-top: 5rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media screen and (max-width: 767px) {
  .form_body .smf-action {
    margin-top: 4rem;
    flex-direction: column-reverse;
    justify-content: center;
  }
}

.form_body .smf-action button {
  background: #41A995 url(../img/arrow-right01.svg) no-repeat calc(100% - 1em) center/1.777em;
  color: #fff;
  border-radius: 3em;
  font-size: 1.8rem;
  font-weight: 600;
  height: 5.6rem;
  width: 30rem;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}

.form_body .smf-action button[data-action="back"] {
  background-color: #333;
  background-image: url(../img/arrow-left01.svg);
  background-position: 1em center;
}

.form_body .smf-action .smf-button-control + .smf-button-control {
  margin: 0;
}

.form_body .smf-system-error-content-ready {
  margin-top: 5rem;
}

.form_body .thanks {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .form_body .thanks {
    position: relative;
    left: 50%;
    translate: -50% 0;
    width: 97rem;
  }
}

.form_body .thanks dt {
  font-weight: bold;
  font-size: 3rem;
  color: #41A995;
  margin-bottom: 7rem;
  border-bottom: solid 1px #000;
  padding-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .form_body .thanks dt {
    font-size: 2.2rem;
    white-space: nowrap;
    margin-bottom: 4.5rem;
  }
}

.form_body .thanks dd {
  color: #000;
  line-height: 1.77;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .form_body .thanks dd {
    font-size: 1.8rem;
    font-weight: 500;
  }
}

.form_body .thanks dd p {
  margin-bottom: 1.77em;
}

.form_body .btn {
  text-align: center;
  margin-top: 8rem;
}

.form_body .btn a {
  font-size: 1.8rem;
  display: inline-block;
  color: #41A995;
  padding-bottom: .5em;
  font-weight: bold;
  border-bottom: solid 1px #41A995;
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */