@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600&display=swap');

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, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing:border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,picture,q,ruby,s,samp,section,small,span,strike,strong,summary,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video,*::before,*::after{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}img{vertical-align:bottom}

/* ===============================================
# 共通
=============================================== */
*{
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body{
  font-family: "IBM Plex Sans", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #444;
  -webkit-text-size-adjust: 100%;
}
a { text-decoration: none; }
em { font-weight: bold; }
img {
  width: auto;
  max-width: 100%;
}
a:hover {
  opacity: 80%;
}

main{
  width: 100%;
  padding-top: 0;
  margin: 0;
}
.wrapper {
  position: relative;
}
.wrapper h2 {
  margin-bottom: 40px;
}
.wrapper h2 span {
  display: block;
  line-height: 1;
}
.wrapper h2 .en {
  color: #00aa94;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.wrapper h2 .ja {
  margin-top: 10px;
}

.inner{
  position: relative;
  max-width: 1240px;
  width: 95%;
  margin: 0 auto;
}
.inner p {
  line-height: 1.5;
}

.pc {
  display: block;
}
.sp {
  display: none;
}
.en{
  font-family: "Outfit", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.txt_center{
  text-align: center;
}
/* font */
.txt_green {
  color: #00aa94;
}
@media screen and (max-width :834px){
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* ===============================================
# header
=============================================== */
header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}
header .logo{
  line-height: 1.2;
}
header .logo a {
  color: #444;
}
header .logo .lead {
  display: block;
}
header .logo .ttl {
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: bold;
}
header .hd_contact_box {
  display: flex;
  justify-content: space-between;
}
header .hd_contact_box .hd_tel p {
  font-size: 15px;
}
header .hd_contact_box .hd_tel .tel {
  font-family: "Outfit", sans-serif;
}
header .hd_contact_box .hd_tel .tel a {
  display: block;
  font-size: 32px;
  font-size: 3.2rem;
  color: #00aa94;
  letter-spacing: 0.06em;
}
header .hd_contact_box .hd_tel .time {
  font-size: 13px;
  font-size: 1.3rem;
  background: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
header .hd_contact_box .hd_contact_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fec800;
  max-width: 260px;
  padding: 15px 2em;
  border-radius: 30px;
  color: #444;
  text-align: center;
  letter-spacing: 0.08em;
}
header .hd_contact_box .hd_contact_btn a img {
  width: 32px;
  margin-right: 5px;
}
@media screen and (min-width :825px){
  header{
    height: 140px;
    padding: 0 40px;
  }
  header .hd_contact_box {
    justify-content: flex-end;
    align-items: center;
  }
  header .hd_contact_box .hd_tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
  }
  header .hd_contact_box .hd_tel .tel {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  header .hd_contact_box .hd_tel a {
    pointer-events: none;
  }
  header .hd_contact_box .hd_contact_btn a {
    font-weight: bold;
    white-space: nowrap;
  }
}
@media screen and (min-width :1025px){
  header .hd_contact_box .hd_tel .tel {
    margin: 5px auto;
    letter-spacing: 0.1em;
  }
  header .hd_contact_box .hd_contact_btn a {
    width: 260px;
    padding: 15px 0;
  }  
}
@media screen and (max-width :834px){
  header {
    padding: 10px;
  }
  header .logo .lead {
    font-size: 10px;
    font-size: 1.0rem;
    margin-bottom: 5px;
  }
  header .logo .ttl {
    font-size: 20px;
    font-size: 2.0rem;
  }
  header .hd_contact_box {
    align-items: flex-start;
  }
  header .hd_contact_box a .icon {
    display: flex;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-bottom: 5px;
  }
  header .hd_contact_box .hd_tel .tel {
    position: relative;
    margin-right: 10px;
  }
  header .hd_contact_box .hd_tel .tel a {
    display: flex;
    flex-direction: column-reverse;
    font-size: 10px;
    font-size: 1.0rem;
    padding: 0;
    text-align: center;
    color: #444;
  }
  header .hd_contact_box .hd_tel .tel a .icon {
    background: #00aa94;
  }
  header .hd_contact_box .hd_tel .tel a img {
    width: 60%;
  }
  header .hd_contact_box .hd_contact_btn a {
    background: none;
  }
  header .hd_contact_box .hd_contact_btn a span {
    display: none;
  }
  header .hd_contact_box .hd_contact_btn a {
    display: flex;
    flex-direction: column;
    font-size: 10px;
    font-size: 1.0rem;
    padding: 0;
    text-align: center;
    color: #444;
  }
  header .hd_contact_box .hd_contact_btn a img {
    width: 48px;
    margin-bottom: 5px;
    margin-right: 0;
  }
}
/* ===============================================
# main
=============================================== */
.main {
  position: relative;
}
.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90.0vw;
  height: 63.0vh;
  background: #e5f6f4;
  z-index: -10;
}
/* ===============================================
# area_main
=============================================== */
.area_main {
  position: relative;
  display: flex;
  margin: 0 10px;
  padding-top: 90px;
}
.area_main .area_ttl em {
  position: relative;
  line-height: 1;
}
.area_main .area_ttl em::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33.8%;
  background: #fec800;
  border-radius: 8px;
  z-index: -1;
}
.area_main .area_ttl em .en {
  font-size: 120px;
  font-size: 12.0rem;
}
.area_main .main_img {
/*  width: 71.0%;*/
  z-index: -1;
}
.area_main .main_img img {
  border-radius: 40px;
}
@media screen and (min-width :825px){
  .area_main {
    margin: 0 20px;
    padding-top: 140px;
  }
  .area_main .area_ttl {
    position: absolute;
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 1.6;
  }
  .area_main .main_img {
    margin-left: 29%;
  }
}
@media screen and (min-width :1025px){
  .area_main {
    margin: 0 40px;
  }
  .area_main .area_ttl {
    position: absolute;
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 1.6;
  }
}
@media screen and (max-width :834px){
  .area_main {
    flex-direction: column;
  }
  .area_main .area_ttl {
    margin-bottom: 10px;
    text-align: center;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .area_main .area_ttl em .en {
    font-size: 80px;
    font-size: 8.0rem;
  }
}
/* ===============================================
# area_service
=============================================== */
.area_service {
  margin: 70px auto 130px;
}
.area_service h2 {
  text-align: center;
}
.area_service .txt_intro {
  text-align: center;
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.area_service .box_service ul {
  display: flex;
  justify-content: space-between;
  align-self: start;
}
.area_service .box_service li {
  width: 30%;
  text-align: center;
}
.area_service .box_service li h4 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 30px auto;
}
.area_service .box_service li img {
  border-radius: 20px;
}
.area_service .box_service li p {
  text-align: left;
}
.area_service .box_option {
  position: relative;
  background: #e5f6f4;
  border-radius: 40px;
  margin: 130px auto 0;
  padding: 80px 0;
  max-width: 1440px;
  width: 95%;
}
.area_service .box_option::before {
  content: "";
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 131px;
  height: 112px;
  background: url("../img/icon_option.svg") no-repeat;
}
.area_service .box_option h3 {
  text-align: center;
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width :834px){
  .area_service {
    margin: 70px auto;
  }
  .area_service .box_option {
    margin: 60px auto 0;
    border-radius: 20px;
    padding: 80px 0 20px;
  }
  .area_service .box_service ul {
    flex-direction: column;
    justify-content: center;
  }
  .area_service .box_service li {
    width: 100%;
    margin-bottom: 30px;
  }
  .area_service .box_option::before {
    background-size: 80%;
    background-position: center;
  }
}
/* ===============================================
# area_reason
=============================================== */
.area_reason {
  position: relative;
}
.area_reason::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 96.4%;
  height: 100%;
  border-radius: 0 40px 40px 0;
  background: #fcfaf2;
  z-index: -10;
}
.area_reason .ttl {
  text-align: center;
}
.area_reason .ttl h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  background: #00aa94;
  padding: 15px 40px;
  border-radius: 36px;
  margin: -54px auto 40px;
}
.area_reason .ttl h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #00aa94;
  height: calc(tan(45deg) * 19px / 2);
  width: 19px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.area_reason h3 span {
  font-size: 30px;
  font-size: 3.0rem;
}
.area_reason .txt_intro {
  max-width: 620px;
  margin: 0 auto 60px;
}
.area_reason .box_reason ol {
  display: flex;
  justify-content: space-between;
  align-self: start;
  padding-bottom: 250px;
}
.area_reason .box_reason li {
  width: 30%;
}
.area_reason .box_reason li .img_reason {
  text-align: center;
  margin: 0 auto;
}
.area_reason .box_reason li .img_reason .no {
  font-family: "Outfit", sans-serif;
  color: #00aa94;
  letter-spacing: 0.04em;
}
.area_reason .box_reason li .img_reason .no span {
  display: block;
  font-size: 60px;
  font-size: 6.0rem;
}.area_reason .box_reason li .img_reason .img_box {
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: end;
}
.area_reason .box_reason li h4 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin: 30px auto;
}
@media screen and (max-width :834px){
  .area_reason .box_reason ol {
    flex-direction: column;
    justify-content: center;
    padding-bottom: 150px;
  }
  .area_reason .box_reason li {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* ===============================================
# area_message
=============================================== */
.area_message {
  position: relative;
  margin: -120px auto 130px;
}
.area_message .bg_message {
  width: 95%;
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 40px 0 0 0;
}
.area_message .bg_message h2 {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: auto;
}
.area_message .bg_message .box_message {
  padding-top: 110px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1040px;
  margin: 0 auto;
}
.area_message .bg_message .box_message img {
  border-radius: 20px;
}
.area_message .bg_message .box_message .box_txt {
  margin-bottom: 20px;
}
.area_message .bg_message .box_message .box_txt .name {
  margin-bottom: 55px;
}
.area_message .bg_message .box_message .box_txt .name span {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-left: 20px;
}
.area_message .bg_message .box_message .box_txt .txt {
  line-height: 1.5;
}
.area_message .bg_message .box_message .box_txt .txt p + p {
  margin-top: 30px;
}
@media screen and (min-width :1025px){
  .area_message .bg_message .box_message .box_txt {
    max-width: 69.2%;
    padding-right: 7.7%;
  }
}
@media screen and (max-width :834px){
  .area_message {
    margin: -120px auto 60px;
  }
  .area_message .bg_message .box_message {
    padding-top: 90px;
    flex-direction: column;
    align-items: flex-start;
  }
  .area_message .bg_message .box_message .box_txt .name {
    margin-bottom: 20px;
  }
}

/* ===============================================
# area_about
=============================================== */
.area_about .box_about {
  display: flex;
}
.area_about .box_about .table_about table {
  margin: 0 auto;
  border-bottom: 1px solid #00aa94;
  margin-bottom: 100px;
}
.area_about .box_about .table_about table a {
  color: #00aa94;
}
.area_about .box_about .table_about tr {
  border-top: 1px solid #00aa94;
}
.area_about .box_about .table_about th,
.area_about .box_about td {
  padding: 20px 0;
  text-align: left;
  line-height: 1.875;
}
.area_about .box_about .table_about th {
  width: 30%;
  vertical-align: middle;
}
@media print,screen and (min-width : 1025px){
  .area_about .box_about {
    justify-content: space-between;
    align-items: flex-start;
  }
    .area_about .box_about .table_about table {
    width: 780px;
    }
}
@media screen and (max-width :834px){
  .area_about .box_about {
    flex-direction: column;
  }
}
/* ===============================================
# area_contact
=============================================== */
.area_contact {
  background: #00aa94;
  padding: 70px 0;
}
.area_contact h2 .en,
.area_contact h2 .ja,
.area_contact p {
  color: #fff;
  text-align: center;
}
.area_contact p {
  font-weight: bold;
  margin-bottom: 40px;
}
.area_contact .box_contact {
  background: #fff;
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin: 0 auto;
  border-radius: 20px;
  padding: 36px 40px;
  text-align: center;
}
.area_contact .box_contact dt {
  margin-bottom: 10px;
}
.area_contact .box_contact .mail dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  margin: 0 auto;
  background: #fec800;
  border-radius: 30px;
  padding: 10px 2em;
  color: #444;
  font-weight: bold;
}
.area_contact .box_contact .mail dd a img {
  width: 32px;
  margin-right: 5px;
}
.area_contact .box_contact .tel dd a {
  color: #00aa94;
  font-size: 42px;
  font-size: 4.2rem;
  pointer-events: none;
}
@media print,screen and (min-width : 1025px){
  .area_contact .box_contact {
    width: 39.6%;
    min-width: 760px;
  }
  .area_contact .box_contact dl {
    width: 50%;
  }
}
@media screen and (max-width :834px){
  .area_contact p {
    margin-bottom: 20px;
  }
  .area_contact .box_contact {
    flex-direction: column;
    padding: 30px 20px;
  }
  .area_contact .box_contact dl + dl {
    margin-top: 20px;
  }
  .area_contact .box_contact .tel dd a {
    font-size: 36px;
    font-size: 3.6rem;
    pointer-events: all;
  }
}
/* ===============================================
# footer
=============================================== */
footer {
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
}
footer .ft_company {
}
footer .ft_company span {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-right: 10px;
}
@media screen and (max-width :834px){
  footer {
    padding: 20px 10px 10px;
    flex-direction: column;
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
  }
  footer .ft_company {
    margin-bottom: 10px;
    line-height: 1.2;
  }
  footer .ft_company span {
    display: block;
  }
}