@charset "UTF-8";
/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
@font-face {
  font-family: "avenirB";
  src: url("../fonts/AvenirNextLTPro-Bold.otf") format("openType");
}
@font-face {
  font-family: "avenirM";
  src: url("../fonts/AvenirNextLTPro-MediumIt.otf") format("openType");
}
@font-face {
  font-family: "avenirR";
  src: url("../fonts/AvenirNextLTPro-Regular.otf") format("openType");
}
@font-face {
  font-family: "avenirD";
  src: url("../fonts/AvenirNextLTPro-Demi.otf") format("openType");
}
@font-face {
  font-family: "krona";
  src: url("../fonts/KronaOne-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoR";
  src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoB";
  src: url("../fonts/RobotoCondensed-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Yu GothicM";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu GothicB";
  src: local("Yu Gothic Medium");
  font-weight: 600;
}
/*********************************

common

*********************************/
.section-bg {
  background: url(../images/common/bg-green.jpg) repeat;
  background-size: contain;
  padding: 0 0 6.25rem;
}
@media (width <= 768px) {
  .section-bg {
    padding-bottom: 3.25rem;
  }
}
.section-bg.lightblue {
  background: url(../images/common/bg-lightblue.jpg) repeat;
}

.bg-wave {
  padding-top: 10rem;
  margin-top: -8rem;
  --mask:radial-gradient(96.15px at 50% 129px,#000 99%,#0000 101%) calc(50% - 86px) 0/172px 100%, radial-gradient(96.15px at 50% -86px,#0000 99%,#000 101%) 50% 43px/172px 100% repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}
@media (width <= 768px) {
  .bg-wave {
    padding-top: 8rem;
    margin-top: -5rem;
  }
}

.sv-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (width <= 768px) {
  .sv-title {
    margin-bottom: 20px;
  }
}
.sv-title .title {
  font-size: max(18px, 2.375rem);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #43c2bd;
  margin: 0 15px;
}
@media (width <= 768px) {
  .sv-title .title {
    font-size: 24px;
  }
}
@media (width <= 450px) {
  .sv-title .title {
    font-size: 20px;
  }
}
.sv-title .ashirai span {
  display: block;
  width: 25px;
  height: 3px;
  background: #b3e9f3;
  border-radius: 1.5px;
}
@media (width <= 450px) {
  .sv-title .ashirai span {
    width: 20px;
    height: 2px;
  }
}
.sv-title .ashirai span + span {
  margin-top: 5px;
}
.sv-title .ashirai.white span {
  background: #fff;
}

.text-info {
  text-align: center;
}
@media (width <= 768px) {
  .text-info {
    text-align: left;
  }
}
.text-info p {
  font-size: max(0.9375rem, 14px);
  line-height: 2.3;
}
@media (width <= 450px) {
  .text-info p {
    font-size: 14px;
  }
}

.btn {
  width: 320px;
  margin: 0 auto;
}
.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  background: #43c2bd;
  border: solid 2px #43c2bd;
  font-size: max(15px, 1.125rem);
  font-family: arial;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  transition: all 0.35s;
}
.btn a::before, .btn a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  background: #fff;
  z-index: -1;
  transition: all 0.35s;
}
.btn a::before {
  opacity: 0.5;
}
.btn a::after {
  transition-delay: 0.2s;
}
.btn a span {
  width: 12px;
  height: 19px;
  background: url(../images/common/arrow-white.png) no-repeat center;
  background-size: contain;
  margin-left: 12px;
}
.btn a:hover {
  color: #43c2bd;
}
.btn a:hover::before, .btn a:hover::after {
  top: 0;
}
.btn a:hover span {
  background: url(../images/common/arrow-green.png) no-repeat center;
  background-size: contain;
}
.btn.white a {
  border: none;
  background: #fff;
  color: #43c2bd;
}
.btn.white a::before, .btn.white a::after {
  background: #43c2bd;
}
.btn.white a span {
  background: url(../images/common/arrow-green.png) no-repeat center;
  background-size: contain;
}
.btn.white a:hover {
  color: #fff;
}
.btn.white a:hover span {
  background: url(../images/common/arrow-white.png) no-repeat center;
  background-size: contain;
}

/*********************************

header

*********************************/
.header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 3.125rem;
  background: #fff;
  box-shadow: 0px 10px 5px -11px rgba(0, 0, 0, 0.4);
}
@media (width <= 768px) {
  .header {
    padding: 15px;
  }
}
@media (width <= 450px) {
  .header {
    padding: 0;
    height: 70px;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
  }
}
.header .logo {
  width: 24.375rem;
}
@media (width <= 768px) {
  .header .logo {
    width: 225px;
  }
}
@media (width <= 450px) {
  .header .logo {
    width: 128px;
    padding-left: 10px;
  }
}
.header .menuArea {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .menuArea .phone {
  font-size: max(18px, 1.8125rem);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  background: #b3e9f3;
  padding: 8px 15px;
  border-radius: 10px;
  margin-right: 2.1875rem;
}
.header .menuArea .phone.sp {
  border-radius: 0;
  margin-right: 0;
}
@media (width <= 450px) {
  .header .menuArea .phone.sp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
  }
}
.header .menuArea .phone.sp img {
  width: 30px;
}
.header .menuArea .toggle_btn {
  display: block;
  position: relative;
  top: 0;
  right: 0;
  width: 50px;
  height: 60px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 10;
}
@media (width <= 450px) {
  .header .menuArea .toggle_btn {
    width: 70px;
    height: 70px;
  }
}
.header .menuArea .toggle_btn p {
  color: #43c2bd;
  font-size: max(12px, 0.8125rem);
  font-weight: bold;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media (width <= 450px) {
  .header .menuArea .toggle_btn p {
    bottom: 5px;
  }
}
.header .menuArea .toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #43c2bd;
  transition: all 0.5s;
}
@media (width <= 450px) {
  .header .menuArea .toggle_btn span {
    left: 50%;
    transform: translateX(-50%);
  }
}
.header .menuArea .toggle_btn span:nth-child(1) {
  top: 5px;
}
@media (width <= 450px) {
  .header .menuArea .toggle_btn span:nth-child(1) {
    top: 15px;
  }
}
.header .menuArea .toggle_btn span:nth-child(2) {
  top: 15px;
  background-color: #80daeb;
}
@media (width <= 450px) {
  .header .menuArea .toggle_btn span:nth-child(2) {
    top: 25px;
  }
}
.header .menuArea .toggle_btn span:nth-child(3) {
  top: 25px;
}
@media (width <= 450px) {
  .header .menuArea .toggle_btn span:nth-child(3) {
    top: 35px;
  }
}
.header.open .toggle_btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
}
@media (width <= 450px) {
  .header.open .toggle_btn span:nth-child(1) {
    transform: translateX(-50%) translateY(10px) rotate(-315deg);
  }
}
.header.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.header.open .toggle_btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg);
}
@media (width <= 450px) {
  .header.open .toggle_btn span:nth-child(3) {
    transform: translateX(-50%) translateY(-10px) rotate(315deg);
  }
}

.gnav {
  display: block;
  position: fixed;
  top: 0;
  right: -700px;
  bottom: 0;
  width: 360px;
  background: #43c2bd;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}
.gnav .gnav-menu {
  padding: 8rem 1.5625rem 5rem;
  background: #ffffff;
}
@media (width <= 450px) {
  .gnav .gnav-menu {
    padding-top: 10rem;
  }
}
.gnav .gnav-menu li a {
  font-size: max(16px, 1.25rem);
  color: #333;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.gnav .gnav-menu li a.current {
  color: #43c2bd;
}
.gnav .gnav-menu li:hover a {
  color: #80daeb;
}
.gnav .gnav-menu li + li {
  margin-top: 1.5rem;
}
.gnav.open {
  right: 0;
  opacity: 1;
}
@media (width <= 450px) {
  .gnav.open {
    width: 100%;
  }
}
.gnav .address {
  padding: 3.5rem 1.5625rem;
}
.gnav .address p {
  color: #fff;
  font-size: 13px;
}
@media (width <= 450px) {
  .gnav .address p {
    font-size: 16px;
  }
}
.gnav .address p.phone {
  margin-top: 15px;
  font-size: max(14px, 1.125rem);
}
.gnav .address p.phone a {
  color: #fff;
  font-size: max(18px, 1.75rem);
}
.gnav .address figure {
  margin-top: 3rem;
}
@media (width <= 450px) {
  .gnav .address figure {
    width: 18rem;
    margin: 3rem auto;
  }
}

#mask {
  display: none;
  transition: all 0.5s;
}
#mask.open {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

/*********************************

footer

*********************************/
.footer {
  background: #43c2bd;
}
.footer .inner .logo {
  display: inline-block;
  width: max(280px, 20rem);
}
@media (width <= 450px) {
  .footer .inner .logo {
    width: 100%;
  }
}
@media (width <= 450px) {
  .footer .inner .logo img {
    width: 280px;
    margin: 0 auto;
  }
}
.footer .inner .contentsWrapper {
  margin-top: 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (width <= 768px) {
  .footer .inner .contentsWrapper {
    display: block;
  }
}
.footer .inner .contentsWrapper .menuList {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (width <= 768px) {
  .footer .inner .contentsWrapper .menuList {
    display: block;
  }
}
.footer .inner .contentsWrapper .menuList li a {
  color: #fff;
  position: relative;
}
.footer .inner .contentsWrapper .menuList li a::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer .inner .contentsWrapper .menuList li .title {
  margin-bottom: 0.3rem;
}
.footer .inner .contentsWrapper .menuList li .title a {
  font-size: max(1.25rem, 16px);
  font-weight: bold;
  padding-left: 1.8rem;
}
@media (width <= 450px) {
  .footer .inner .contentsWrapper .menuList li .title a {
    font-size: 15px;
  }
}
.footer .inner .contentsWrapper .menuList li .title a::before {
  position: absolute;
  content: "ー";
}
.footer .inner .contentsWrapper .menuList li .flex {
  align-items: flex-start;
}
@media (width <= 768px) {
  .footer .inner .contentsWrapper .menuList li .flex {
    display: block;
  }
}
.footer .inner .contentsWrapper .menuList li .listitem {
  margin-left: 2rem;
}
.footer .inner .contentsWrapper .menuList li .listitem .item a {
  font-size: max(0.9375rem, 13px);
  padding-left: 1rem;
}
.footer .inner .contentsWrapper .menuList li .listitem .item a::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.footer .inner .contentsWrapper .menuList li + li {
  margin-left: 4rem;
}
@media (width <= 768px) {
  .footer .inner .contentsWrapper .menuList li + li {
    margin-left: 0;
    margin-top: 25px;
  }
}
@media (width <= 768px) {
  .footer .inner .contentsWrapper .reserveList {
    margin-top: 50px;
  }
}
.footer .inner .contentsWrapper .reserveList span {
  display: block;
  color: #fff;
  font-size: max(16px, 1.25rem);
  margin-bottom: 15px;
}
@media (width <= 450px) {
  .footer .inner .contentsWrapper .reserveList span {
    margin-bottom: 8px;
  }
}
.footer .inner .contentsWrapper .reserveList .phone {
  font-size: 1.75rem;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #43c2bd;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  letter-spacing: 6px;
}
@media (width <= 768px) {
  .footer .inner .contentsWrapper .reserveList .phone {
    max-width: 85%;
  }
}
@media (width <= 450px) {
  .footer .inner .contentsWrapper .reserveList .phone {
    width: 100%;
    max-width: 100%;
    font-size: 17px;
    letter-spacing: 3px;
  }
}
.footer .inner .contentsWrapper .reserveList .phone a {
  color: #43c2bd;
  font-size: 3.5rem;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 6px;
}
@media (width <= 450px) {
  .footer .inner .contentsWrapper .reserveList .phone a {
    font-size: 32px;
    letter-spacing: 3px;
  }
}
.footer .inner .contentsWrapper .reserveList .note {
  margin-top: 15px;
}
.footer .inner .contentsWrapper .reserveList .note li {
  font-size: max(14px, 1.125rem);
  color: #fff;
  position: relative;
  padding-left: 1.4rem;
}
.footer .inner .contentsWrapper .reserveList .note li::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}
.footer .inner .copy {
  padding: 6.25rem 0;
  text-align: center;
  color: #fff;
  font-size: max(12px, 1.125rem);
}
@media (width <= 450px) {
  .footer .inner .copy {
    padding: 4.285rem 0 6rem;
  }
}

#pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 80px;
  z-index: 1;
}

.spReseveBanner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  background: #80daeb;
  z-index: 3;
}
.spReseveBanner a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
.spReseveBanner a img {
  width: 30px;
}

/*********************************

slider

*********************************/
.MV {
  position: relative;
}
@media (width <= 450px) {
  .MV {
    margin-top: 80px;
  }
}
.MV::before {
  position: absolute;
  content: "";
  background: url(../images/common/reserve_ashirai.png) no-repeat center;
  background-size: contain;
  width: 18.125rem;
  height: 17.8125rem;
  right: 0;
  bottom: -40px;
  z-index: 1;
}
@media (width <= 768px) {
  .MV::before {
    width: 9.375rem;
    height: 10rem;
  }
}
@media (width <= 450px) {
  .MV::before {
    display: none;
  }
}
.MV .slider {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 25px;
  overflow: hidden;
}
.MV .slider .item {
  position: relative;
  height: 100%;
}
.MV .slider .slide-animation {
  animation: fadezoom 8s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.MV h2 {
  position: absolute;
  width: 100%;
  font-size: max(20px, 2.875rem);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  text-align: center;
  text-shadow: 3px 3px 24px rgba(0, 0, 0, 0.2), -2px -2px 14px rgba(0, 0, 0, 0.2);
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  line-height: 1.8;
}
@media (width <= 768px) {
  .MV h2 {
    font-size: 1.75rem;
  }
}
@media (width <= 450px) {
  .MV h2 {
    left: 20px;
    transform: translateX(0) translateY(-50%);
    text-align: left;
    font-size: 28px;
  }
}

/*********************************

SV

*********************************/
.SV {
  padding: 0 3.125rem;
  margin-top: 80px;
}
@media (width <= 450px) {
  .SV {
    padding: 0;
  }
}
.SV .SV-image {
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}
.SV .SV-image::before {
  position: absolute;
  content: "";
  width: 18.125rem;
  height: 5rem;
  background: url(../images/common/mouth.png) no-repeat center;
  background-size: contain;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (width <= 768px) {
  .SV .SV-image::before {
    width: 181px;
    height: 47px;
  }
}

.svTitle {
  margin-top: 20px;
  font-size: max(20px, 2.8125rem);
  text-align: center;
  color: #43c2bd;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
}
@media (width <= 768px) {
  .svTitle {
    font-size: 26px;
  }
}
@media (width <= 450px) {
  .svTitle {
    font-size: 20px;
    margin-top: 40px;
  }
}
.svTitle::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 4px;
  background-color: #b3e9f3;
  transform: translateX(-50%);
  left: 50%;
  bottom: -4px;
}
@media (width <= 450px) {
  .svTitle::before {
    height: 2px;
  }
}

.svContent {
  margin-top: 3.5rem;
}
@media (width <= 768px) {
  .svContent {
    margin-top: 20px;
  }
}
.svContent p {
  text-align: center;
  font-size: max(14px, 1.125rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 2;
}
@media (width <= 768px) {
  .svContent p {
    font-size: 16px;
    text-align: left;
  }
}
@media (width <= 450px) {
  .svContent p {
    font-size: 14px;
  }
}

/*********************************

breadcrumb

*********************************/
.breadcrumb {
  margin-top: 15px;
}
.breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb ul li {
  font-size: max(13px, 0.9375rem);
  color: #54ab99;
  font-weight: bold;
}
.breadcrumb ul li a {
  font-size: max(13px, 0.9375rem);
}
.breadcrumb ul li.news a {
  color: #54ab99;
  font-weight: bold;
}
.breadcrumb ul li + li {
  margin-left: 10px;
}

/*********************************

pages

*********************************/
/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
@font-face {
  font-family: "avenirB";
  src: url("../fonts/AvenirNextLTPro-Bold.otf") format("openType");
}
@font-face {
  font-family: "avenirM";
  src: url("../fonts/AvenirNextLTPro-MediumIt.otf") format("openType");
}
@font-face {
  font-family: "avenirR";
  src: url("../fonts/AvenirNextLTPro-Regular.otf") format("openType");
}
@font-face {
  font-family: "avenirD";
  src: url("../fonts/AvenirNextLTPro-Demi.otf") format("openType");
}
@font-face {
  font-family: "krona";
  src: url("../fonts/KronaOne-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoR";
  src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoB";
  src: url("../fonts/RobotoCondensed-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Yu GothicM";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu GothicB";
  src: local("Yu Gothic Medium");
  font-weight: 600;
}
#top #about .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (width <= 768px) {
  #top #about .inner {
    display: block;
  }
}
#top #about .inner .textArea {
  width: 41%;
  padding-left: 1.2rem;
}
@media (width <= 768px) {
  #top #about .inner .textArea {
    width: 100%;
    padding-left: 0;
  }
}
#top #about .inner .textArea h3 {
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #43c2bd;
  font-size: max(1.875rem, 20px);
}
@media (width <= 768px) {
  #top #about .inner .textArea h3 {
    font-size: 22px;
  }
}
@media (width <= 450px) {
  #top #about .inner .textArea h3 {
    font-size: 20px;
  }
}
#top #about .inner .textArea p {
  line-height: 2.5;
}
#top #about .inner .textArea p:not(.btn) {
  padding: 2.5rem 0;
  font-size: max(.9375rem, 13px);
}
@media (width <= 768px) {
  #top #about .inner .textArea p:not(.btn) {
    padding: 25px 0;
    font-size: 15px;
  }
}
@media (width <= 450px) {
  #top #about .inner .textArea p:not(.btn) {
    font-size: 14px;
  }
}
#top #about .inner .textArea .btn {
  margin-left: 0;
}
@media (width <= 768px) {
  #top #about .inner .textArea .btn {
    margin: 0 auto;
  }
}
@media (width <= 450px) {
  #top #about .inner .textArea .btn {
    margin: 0 auto 25px;
  }
}
#top #about .inner figure {
  width: 62.5rem;
}
@media (width <= 768px) {
  #top #about .inner figure {
    width: 100%;
    margin-top: 25px;
  }
}
#top #service {
  padding-bottom: 12rem;
}
@media (width <= 768px) {
  #top #service {
    padding-bottom: 8.57rem;
  }
}
#top #service .inner-small {
  background: #fff;
  border-radius: 25px;
  padding: 5rem 15px;
}
@media (width <= 768px) {
  #top #service .inner-small {
    padding: 40px 10px;
  }
}
#top #service .inner-small .text-info {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 1.5625rem;
  background: rgba(179, 233, 243, 0.3);
  border-radius: 15px;
}
#top #service .menuList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 2rem;
  justify-items: center;
  max-width: 1100px;
  margin: 3.75rem auto;
}
@media (width <= 768px) {
  #top #service .menuList {
    margin: 35px auto;
    grid-gap: 15px;
    justify-content: space-around;
  }
}
#top #service .menuList-item {
  width: 30%;
  border: solid 2px #82e4e0;
  border-radius: 15px;
  padding: 1.25rem;
  transition: 0.3s ease-in-out;
}
@media (width <= 768px) {
  #top #service .menuList-item {
    width: calc((100% - 15px) / 2);
    padding: 10px;
  }
}
#top #service .menuList-item a .title {
  text-align: center;
  font-size: max(14px, 1.25rem);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 1.25rem;
}
#top #service .menuList-item a figure {
  width: 11rem;
  max-width: 175px;
  margin: 0 auto 1.25rem;
}
@media (width <= 768px) {
  #top #service .menuList-item a figure {
    width: 65%;
  }
}
#top #service .menuList-item a .explanation {
  text-align: center;
  font-size: max(14px, 1.125rem);
}
#top #service .menuList-item:hover {
  background: #82e4e0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.56);
}
#top #service .menuList-item:hover a {
  opacity: 1;
}
#top #service .menuList-item:hover a .title,
#top #service .menuList-item:hover a .explanation {
  color: #fff;
}
#top #service .menuList-item:hover a figure img {
  opacity: 1;
}
#top #news {
  background: #b3e9f3;
}
#top #news .newsList {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  grid-gap: 2.1875rem 4.0625rem;
  margin-bottom: 3.75rem;
}
@media (width <= 768px) {
  #top #news .newsList {
    justify-content: space-between;
    grid-gap: 20px 20px;
  }
}
@media (width <= 450px) {
  #top #news .newsList {
    grid-gap: 20px 0;
  }
}
#top #news .newsList li {
  width: 300px;
}
@media (width <= 768px) {
  #top #news .newsList li {
    width: calc((100% - 20px) / 2);
  }
}
@media (width <= 450px) {
  #top #news .newsList li {
    width: 100%;
  }
}
#top #news .newsList li a {
  display: inline-block;
}
#top #news .newsList li a .news-img {
  width: 100%;
  height: 200px;
  margin-bottom: 1.25rem;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
  border: solid 2px #43c2bd;
}
@media (width <= 450px) {
  #top #news .newsList li a .news-img {
    display: none;
  }
}
#top #news .newsList li a .news-date {
  font-size: 15px;
  color: #fff;
}
#top #news .newsList li a .news-title {
  font-size: 15px;
  font-weight: bold;
  margin-top: 5px;
}
#top #news .newsList li a .news-contents {
  font-size: 14px;
  margin-top: 10px;
}
@media (width <= 450px) {
  #top #news .newsList li + li {
    padding-top: 20px;
    border-top: solid 1px #fff;
  }
}

/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
@font-face {
  font-family: "avenirB";
  src: url("../fonts/AvenirNextLTPro-Bold.otf") format("openType");
}
@font-face {
  font-family: "avenirM";
  src: url("../fonts/AvenirNextLTPro-MediumIt.otf") format("openType");
}
@font-face {
  font-family: "avenirR";
  src: url("../fonts/AvenirNextLTPro-Regular.otf") format("openType");
}
@font-face {
  font-family: "avenirD";
  src: url("../fonts/AvenirNextLTPro-Demi.otf") format("openType");
}
@font-face {
  font-family: "krona";
  src: url("../fonts/KronaOne-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoR";
  src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoB";
  src: url("../fonts/RobotoCondensed-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Yu GothicM";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu GothicB";
  src: local("Yu Gothic Medium");
  font-weight: 600;
}
#tem-access .logo {
  width: 35rem;
  margin-bottom: 2.5rem;
}
@media (width <= 450px) {
  #tem-access .logo {
    width: 280px;
    margin: 0 auto 30px;
  }
}
#tem-access .imgArea {
  display: grid;
  grid-template-columns: 53% auto;
  margin-bottom: 2.5rem;
}
@media (width <= 768px) {
  #tem-access .imgArea {
    grid-template-columns: 1fr;
  }
}
#tem-access .imgArea .exterior {
  width: 100%;
  border-radius: 25px 0 0 25px;
  overflow: hidden;
  position: relative;
}
@media (width <= 768px) {
  #tem-access .imgArea .exterior {
    border-radius: 25px 25px 0 0;
  }
}
#tem-access .imgArea .exterior::before {
  position: absolute;
  content: "";
  background: url(../images/access/access.png) no-repeat center;
  background-size: contain;
  width: max(80px, 12.5rem);
  height: max(80px, 12.5rem);
  top: 15px;
  left: 15px;
}
@media (width <= 768px) {
  #tem-access .imgArea .exterior::before {
    width: 7.6rem;
    height: 7.6rem;
    top: 10px;
    left: 10px;
  }
}
@media (width <= 450px) {
  #tem-access .imgArea .exterior::before {
    width: 85px;
    height: 85px;
  }
}
#tem-access .imgArea .mapArea {
  width: 100%;
  border-radius: 0 25px 25px 0;
  overflow: hidden;
}
@media (width <= 768px) {
  #tem-access .imgArea .mapArea {
    border-radius: 0 0 25px 25px;
  }
}
#tem-access .imgArea .mapArea .map {
  position: relative;
  height: 100%;
}
@media (width <= 768px) {
  #tem-access .imgArea .mapArea .map {
    padding-bottom: 56.25%;
  }
}
#tem-access .imgArea .mapArea .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#tem-access .accessArea {
  display: grid;
  grid-template-columns: 53% auto;
}
@media (width <= 768px) {
  #tem-access .accessArea {
    grid-template-columns: 1fr;
  }
}
#tem-access .accessArea .reserve figure {
  padding-right: 2.5rem;
}
@media (width <= 768px) {
  #tem-access .accessArea .reserve figure {
    padding-right: 0;
  }
}
#tem-access .accessArea .reserve figure figcaption {
  font-size: 15px;
  margin-top: 15px;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 500;
}
#tem-access .accessArea .reserve-tell span {
  display: block;
  margin-top: 1.5rem;
  font-size: 15px;
  color: #43c2bd;
  font-weight: 500;
}
#tem-access .accessArea .reserve-tell a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  color: #43c2bd;
  font-size: max(28px, 2.625rem);
  font-weight: bold;
  line-height: 1.2;
}
#tem-access .accessArea .reserve-tell a span {
  font-weight: bold;
  font-size: max(18px, 1.75rem);
  margin-top: 0;
  line-height: 1.2;
}
@media (width <= 768px) {
  #tem-access .accessArea .information {
    margin-top: 50px;
  }
}
#tem-access .accessArea .information p {
  font-size: max(14px, 0.9375rem);
}
#tem-access .accessArea .information p.address {
  font-size: max(15px, 1.125rem);
}
#tem-access .accessArea .information dl dt,
#tem-access .accessArea .information dl dd {
  font-size: max(15px, 1.125rem);
  line-height: 1.5;
}
#tem-access .accessArea .information dl dt {
  position: relative;
  padding-left: 28px;
  font-weight: bold;
}
@media (width <= 450px) {
  #tem-access .accessArea .information dl dt {
    padding-left: 18px;
  }
}
#tem-access .accessArea .information dl dt::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: #82e4e0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (width <= 450px) {
  #tem-access .accessArea .information dl dt::before {
    width: 10px;
    height: 10px;
  }
}
#tem-access .accessArea .information dl dd p {
  font-size: max(15px, 1.125rem);
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}
#tem-access .accessArea .information dl dd p::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#tem-access .accessArea .information dl + dl {
  margin-top: 18px;
}
#tem-access.blue {
  background: #d9f5fe;
}
#tem-access.blue .accessArea {
  margin-bottom: 6.25rem;
}
@media (width <= 768px) {
  #tem-access.blue .accessArea {
    margin-bottom: 3.5rem;
  }
}

/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
@font-face {
  font-family: "avenirB";
  src: url("../fonts/AvenirNextLTPro-Bold.otf") format("openType");
}
@font-face {
  font-family: "avenirM";
  src: url("../fonts/AvenirNextLTPro-MediumIt.otf") format("openType");
}
@font-face {
  font-family: "avenirR";
  src: url("../fonts/AvenirNextLTPro-Regular.otf") format("openType");
}
@font-face {
  font-family: "avenirD";
  src: url("../fonts/AvenirNextLTPro-Demi.otf") format("openType");
}
@font-face {
  font-family: "krona";
  src: url("../fonts/KronaOne-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoR";
  src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoB";
  src: url("../fonts/RobotoCondensed-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Yu GothicM";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu GothicB";
  src: local("Yu Gothic Medium");
  font-weight: 600;
}
#page-about .section02 {
  padding-top: 7.5rem;
}
@media (width <= 768px) {
  #page-about .section02 {
    padding-top: 60px;
  }
}
#page-about .section02 .sdgs-logo {
  margin: 2.8rem auto 0;
  max-width: 830px;
  width: 100%;
}
#page-about .section02 .dental-sdgs {
  margin: 3.5rem auto 5.5rem;
}
#page-about .section02 .dental-sdgs .borderB {
  border-bottom: solid 2px #186c5a;
  color: #186c5a;
  font-size: max(16px, 1.875rem);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 2.5rem;
}
@media (width <= 450px) {
  #page-about .section02 .dental-sdgs .borderB {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
#page-about .section02 .dental-sdgs .sdgsList {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.5625rem 5rem;
}
@media (width <= 768px) {
  #page-about .section02 .dental-sdgs .sdgsList {
    grid-gap: 1.5625rem 2rem;
  }
}
@media (width <= 450px) {
  #page-about .section02 .dental-sdgs .sdgsList {
    grid-template-columns: 1fr;
    grid-gap: 1.5625rem 0;
  }
}
#page-about .section02 .dental-sdgs .sdgsList-item dl dt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: solid 1px #1b973a;
  color: #1b973a;
  font-size: max(14px, 1rem);
}
@media (width <= 450px) {
  #page-about .section02 .dental-sdgs .sdgsList-item dl dt {
    font-size: 15px;
  }
}
#page-about .section02 .dental-sdgs .sdgsList-item dl dt span {
  color: #fff;
  background-color: #1b973a;
  font-weight: bold;
  font-size: max(18px, 1.375rem);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
@media (width <= 450px) {
  #page-about .section02 .dental-sdgs .sdgsList-item dl dt span {
    width: 30px;
    height: 30px;
    font-size: 16px;
    letter-spacing: 0;
    margin-right: 8px;
  }
}
#page-about .section02 .dental-sdgs .sdgsList-item dl dd {
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#page-about .section02 .dental-sdgs .sdgsList-item dl dd figure {
  width: 100px;
}
@media (width <= 450px) {
  #page-about .section02 .dental-sdgs .sdgsList-item dl dd figure {
    width: 80px;
  }
}
#page-about .section02 .dental-sdgs .sdgsList-item dl dd ul {
  margin-left: 15px;
  width: calc(100% - 100px);
}
@media (width <= 768px) {
  #page-about .section02 .dental-sdgs .sdgsList-item dl dd ul {
    margin-left: 5px;
  }
}
@media (width <= 450px) {
  #page-about .section02 .dental-sdgs .sdgsList-item dl dd ul {
    width: calc(100% - 80px);
    margin-left: 8px;
  }
}
#page-about .section02 .dental-sdgs .sdgsList-item dl dd ul li {
  padding-left: 15px;
  font-size: max(13px, 0.9375rem);
  position: relative;
}
#page-about .section02 .dental-sdgs .sdgsList-item dl dd ul li::before {
  position: absolute;
  content: "・";
  font-size: max(13px, 0.9375rem);
  left: 0;
  top: 0;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(2) dl dt {
  color: #c50e28;
  border-bottom-color: #c50e28;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(2) dl dt span {
  background-color: #c50e28;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(3) dl dt {
  color: #e83418;
  border-bottom-color: #e83418;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(3) dl dt span {
  background-color: #e83418;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(4) dl dt {
  color: #fabd00;
  border-bottom-color: #fabd00;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(4) dl dt span {
  background-color: #fabd00;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(5) dl dt {
  color: #970a31;
  border-bottom-color: #970a31;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(5) dl dt span {
  background-color: #970a31;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(6) dl dt {
  color: #dc097b;
  border-bottom-color: #dc097b;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(6) dl dt span {
  background-color: #dc097b;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(7) dl dt {
  color: #d39206;
  border-bottom-color: #d39206;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(7) dl dt span {
  background-color: #d39206;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(8) dl dt {
  color: #407936;
  border-bottom-color: #407936;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(8) dl dt span {
  background-color: #407936;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(9) dl dt {
  color: #0075ba;
  border-bottom-color: #0075ba;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(9) dl dt span {
  background-color: #0075ba;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(10) dl dt {
  color: #023067;
  border-bottom-color: #023067;
}
#page-about .section02 .dental-sdgs .sdgsList-item:nth-of-type(10) dl dt span {
  background-color: #023067;
}
#page-about .about-slider {
  margin-bottom: -13rem;
}
#page-about .about-slider li {
  padding: 0 1.2rem;
}
#page-about .about-slider li img {
  border-radius: 25px;
  overflow: hidden;
}
#page-about .about-slider li.mt {
  margin-top: 3.75rem;
}
#page-about .section03 {
  padding-top: 6rem;
}
@media (width <= 768px) {
  #page-about .section03 {
    padding-top: 12rem;
  }
}
@media (width <= 450px) {
  #page-about .section03 {
    padding-top: 14rem;
  }
}
#page-about .section03 .flex {
  margin: 2.5rem auto 6.25rem;
  display: grid;
  grid-template-columns: 27.5rem auto;
  align-items: start;
}
@media (width <= 768px) {
  #page-about .section03 .flex {
    grid-template-columns: 19.5rem auto;
  }
}
@media (width <= 450px) {
  #page-about .section03 .flex {
    display: block;
  }
}
#page-about .section03 .flex figure {
  border-radius: 25px;
  overflow: hidden;
}
@media (width <= 450px) {
  #page-about .section03 .flex figure {
    margin-bottom: 15px;
  }
}
#page-about .section03 .flex .textArea {
  padding-left: 3.75rem;
}
@media (width <= 768px) {
  #page-about .section03 .flex .textArea {
    padding-left: 15px;
  }
}
@media (width <= 450px) {
  #page-about .section03 .flex .textArea {
    padding-left: 0;
  }
}
#page-about .section03 .flex .textArea .director {
  font-size: 15px;
  font-weight: bold;
}
#page-about .section03 .flex .textArea .n-title {
  font-size: max(16px, 1.375rem);
  font-weight: bold;
  letter-spacing: 3px;
}
#page-about .section03 .flex .textArea .n-title span {
  color: #43c2bd;
  font-weight: bold;
  letter-spacing: 3px;
}
#page-about .section03 .flex .textArea .t-title {
  margin: 1.5625rem 0;
  font-size: max(18px, 1.5rem);
  color: #43c2bd;
  font-weight: bold;
}
@media (width <= 768px) {
  #page-about .section03 .flex .textArea .t-title {
    font-size: 18px;
    margin: 12px 0;
  }
}
@media (width <= 450px) {
  #page-about .section03 .flex .textArea .t-title {
    font-size: 16px;
  }
}
#page-about .section03 .flex .textArea div {
  line-height: 1.8;
  font-size: max(14px, 1.125rem);
}
@media (width <= 768px) {
  #page-about .section03 .flex .textArea div {
    font-size: 14px;
  }
}
#page-about .section03 .flex .textArea dl {
  margin-top: 1.5625rem;
  padding-top: 1.5625rem;
  border-top: solid 1px #43c2bd;
}
#page-about .section03 .flex .textArea dl dt {
  color: #43c2bd;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.9375rem;
}
@media (width <= 768px) {
  #page-about .section03 .flex .textArea dl dt {
    font-size: 14px;
  }
}
#page-about .section03 .flex .textArea dl dd {
  font-size: 1rem;
}
@media (width <= 768px) {
  #page-about .section03 .flex .textArea dl dd {
    font-size: 14px;
  }
}
#page-about .section03 .flex .textArea dl dd span {
  margin-right: 15px;
}
#page-about .section04 {
  background: #fff;
}
#page-about .section04 ul {
  margin: 2.5rem auto 0;
}
#page-about .section04 ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (width <= 450px) {
  #page-about .section04 ul li {
    flex-direction: column;
  }
}
@media (width <= 450px) {
  #page-about .section04 ul li div {
    width: 100%;
  }
}
#page-about .section04 ul li div h3 {
  font-size: max(16px, 1.375rem);
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (width <= 768px) {
  #page-about .section04 ul li div h3 {
    font-size: 16px;
  }
}
#page-about .section04 ul li div h3 .num {
  width: max(35px, 3.75rem);
  height: max(35px, 3.75rem);
  background: #43c2bd;
  border-radius: 50%;
  font-size: max(20px, 2.5rem);
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
@media (width <= 768px) {
  #page-about .section04 ul li div h3 .num {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 8px;
  }
}
#page-about .section04 ul li div h3 .accent {
  font-weight: bold;
  font-size: max(16px, 1.625rem);
}
#page-about .section04 ul li div h3 .accent::first-letter {
  color: #54ab99;
}
@media (width <= 768px) {
  #page-about .section04 ul li div h3 .accent {
    font-size: 16px;
  }
}
#page-about .section04 ul li div p:not(.accent) {
  margin-top: 1.5625rem;
}
#page-about .section04 ul li figure {
  width: max(355px, 38.4375rem);
}
@media (width <= 450px) {
  #page-about .section04 ul li figure {
    width: 100%;
    margin-top: 25px;
  }
}
#page-about .section04 ul li figure.pl {
  padding-left: 2.8125rem;
}
@media (width <= 450px) {
  #page-about .section04 ul li figure.pl {
    padding-left: 0;
  }
}
#page-about .section04 ul li figure.pr {
  padding-right: 2.8125rem;
}
@media (width <= 450px) {
  #page-about .section04 ul li figure.pr {
    padding-right: 0;
  }
}
@media (width <= 450px) {
  #page-about .section04 ul li:nth-last-of-type(2) {
    flex-direction: column-reverse;
  }
}
#page-about .section04 ul li + li {
  margin-top: 2.5rem;
}
@media (width <= 450px) {
  #page-about .section04 ul li + li {
    margin-top: 30px;
  }
}

/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
@font-face {
  font-family: "avenirB";
  src: url("../fonts/AvenirNextLTPro-Bold.otf") format("openType");
}
@font-face {
  font-family: "avenirM";
  src: url("../fonts/AvenirNextLTPro-MediumIt.otf") format("openType");
}
@font-face {
  font-family: "avenirR";
  src: url("../fonts/AvenirNextLTPro-Regular.otf") format("openType");
}
@font-face {
  font-family: "avenirD";
  src: url("../fonts/AvenirNextLTPro-Demi.otf") format("openType");
}
@font-face {
  font-family: "krona";
  src: url("../fonts/KronaOne-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoR";
  src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoB";
  src: url("../fonts/RobotoCondensed-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Yu GothicM";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu GothicB";
  src: local("Yu Gothic Medium");
  font-weight: 600;
}
#page-service .section01 {
  margin-bottom: 2.5rem;
}
#page-service .section02 {
  padding-bottom: 7.5rem;
  position: relative;
}
#page-service .section02::before, #page-service .section02::after {
  position: absolute;
  content: "";
  bottom: 0;
}
#page-service .section02::before {
  background: url(../images/service/ashirai01.png) no-repeat center;
  background-size: contain;
  width: 13.125rem;
  height: 10.9375rem;
  right: 1.5625rem;
}
@media (width <= 450px) {
  #page-service .section02::before {
    width: 9.85rem;
    height: 8.21rem;
  }
}
#page-service .section02::after {
  background: url(../images/service/ashirai02.png) no-repeat center;
  background-size: contain;
  width: 6.5625rem;
  height: 9.375rem;
  left: 2.8125rem;
}
@media (width <= 450px) {
  #page-service .section02::after {
    display: none;
  }
}
#page-service .section02 .list .item {
  padding: 2.5rem;
  background: #fff;
  border-radius: 25px;
}
@media (width <= 768px) {
  #page-service .section02 .list .item {
    padding: 15px;
  }
}
#page-service .section02 .list .item .treatmentdetails_name {
  font-size: max(2rem,18px);
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  border-bottom: solid 2px #b3e9f3;
  letter-spacing: 5px;
  margin-bottom: 15px;
}
@media (width <= 768px) {
  #page-service .section02 .list .item .treatmentdetails_name {
    font-size: 20px;
    margin-bottom: 8px;
    letter-spacing: 3px;
  }
}
#page-service .section02 .list .item .treatmentdetails_name::first-letter {
  color: #43c2bd;
}
#page-service .section02 .list .item-flexBox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (width <= 768px) {
  #page-service .section02 .list .item-flexBox {
    flex-direction: column-reverse;
  }
}
#page-service .section02 .list .item-flexBox figure {
  width: 32.1875rem;
}
@media (width <= 768px) {
  #page-service .section02 .list .item-flexBox figure {
    width: 100%;
  }
}
#page-service .section02 .list .item-flexBox .item-detail {
  width: calc(100% - 32.1875rem);
  padding-left: 2.5rem;
}
@media (width <= 768px) {
  #page-service .section02 .list .item-flexBox .item-detail {
    width: 100%;
    padding-left: 0;
    margin-bottom: 15px;
  }
}
#page-service .section02 .list .item-flexBox .item-detail h2 {
  font-size: max(1.25rem, 16px);
  color: #43c2bd;
  font-weight: bold;
}
#page-service .section02 .list .item-flexBox .item-detail .treatmentdetails_contents {
  font-size: max(1rem, 13px);
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (width <= 768px) {
  #page-service .section02 .list .item-flexBox .item-detail .treatmentdetails_contents {
    margin-top: 8px;
    margin-bottom: 10px;
  }
}
@media (width <= 450px) {
  #page-service .section02 .list .item-flexBox .item-detail .treatmentdetails_contents {
    margin-bottom: 15px;
  }
}
#page-service .section02 .list .item-flexBox .item-detail .list_subtitle {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  background: #80daeb;
  color: #fff;
  font-size: max(1rem, 13px);
  border-radius: 10px;
  font-weight: 500;
  margin-bottom: 15px;
}
#page-service .section02 .list .item-flexBox .item-detail .type_list {
  display: grid;
  grid-template-columns: max(250px, 13.02vw) auto;
}
@media (width <= 450px) {
  #page-service .section02 .list .item-flexBox .item-detail .type_list {
    grid-template-columns: 1fr;
  }
}
#page-service .section02 .list .item-flexBox .item-detail .type_list li {
  font-size: max(1rem, 13px);
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 25px;
  position: relative;
}
#page-service .section02 .list .item-flexBox .item-detail .type_list li::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border: solid 2px #82e4e0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#page-service .section02 .list .item + .item {
  margin-top: 2.1875rem;
}

/****************************************
 color
**************************************/
/***********************

flex box

***********************/
/***********************

レスポンシブ

***********************/
/****************************************
 font
**************************************/
@font-face {
  font-family: "avenirB";
  src: url("../fonts/AvenirNextLTPro-Bold.otf") format("openType");
}
@font-face {
  font-family: "avenirM";
  src: url("../fonts/AvenirNextLTPro-MediumIt.otf") format("openType");
}
@font-face {
  font-family: "avenirR";
  src: url("../fonts/AvenirNextLTPro-Regular.otf") format("openType");
}
@font-face {
  font-family: "avenirD";
  src: url("../fonts/AvenirNextLTPro-Demi.otf") format("openType");
}
@font-face {
  font-family: "krona";
  src: url("../fonts/KronaOne-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoR";
  src: url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "robotoB";
  src: url("../fonts/RobotoCondensed-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Yu GothicM";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu GothicB";
  src: local("Yu Gothic Medium");
  font-weight: 600;
}
#page-news .newsList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2.1875rem 1.5rem;
  padding-bottom: 4rem;
}
@media (width <= 768px) {
  #page-news .newsList {
    justify-content: space-between;
    grid-gap: 20px 20px;
  }
}
@media (width <= 450px) {
  #page-news .newsList {
    grid-gap: 20px 0;
    grid-template-columns: 1fr;
  }
}
@media (width <= 450px) {
  #page-news .newsList li {
    width: 100%;
  }
}
#page-news .newsList li a {
  display: inline-block;
  width: 100%;
}
#page-news .newsList li a .news-img {
  width: 100%;
  height: 16.14vw;
  margin-bottom: 1.25rem;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 10px;
  border: solid 2px #43c2bd;
}
@media (width <= 450px) {
  #page-news .newsList li a .news-img {
    height: 250px;
  }
}
#page-news .newsList li a .news-date {
  font-size: 15px;
  color: #43c2bd;
}
@media (width <= 450px) {
  #page-news .newsList li a .news-date {
    font-size: 14px;
  }
}
#page-news .newsList li a .news-title {
  font-size: max(14px, 1rem);
  font-weight: bold;
  margin-top: 5px;
}
@media (width <= 450px) {
  #page-news .newsList li a .news-title {
    font-size: 15px;
  }
}

.single-wrap {
  padding: 6.25rem 0;
}
@media (width <= 768px) {
  .single-wrap {
    padding: 60px 0;
  }
}
.single-wrap .date {
  font-size: 15px;
  color: #43c2bd;
}
.single-wrap .s--title {
  font-size: max(1.625rem, 18px);
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: solid 1px #43c2bd;
  margin-bottom: 3.75rem;
}
.single-wrap .single-cont .eyecach {
  max-width: 710px;
  margin: 0 auto 3.75rem;
  border-radius: 10px;
  border: solid 2px #43c2bd;
  overflow: hidden;
}
.single-wrap .single-cont .textBox .wp-block-image {
  max-width: 450px;
  margin: 25px auto;
  border-radius: 10px;
  overflow: hidden;
}
.single-wrap .single-cont .textBox p {
  font-size: max(1rem, 14px);
  line-height: 1.8;
}

.navigation {
  padding: 6.25rem 0;
}
@media (width <= 768px) {
  .navigation {
    padding: 60px 0;
  }
}
.navigation .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.navigation .page-numbers li span, .navigation .page-numbers li a {
  font-size: max(1.5rem, 16px);
  font-weight: 500;
}
@media (width <= 450px) {
  .navigation .page-numbers li span, .navigation .page-numbers li a {
    font-size: 18px;
  }
}
.navigation .page-numbers li a:hover {
  opacity: 0.6;
}
.navigation .page-numbers li .current {
  color: #fff;
  background: #54ab99;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation .page-numbers li .next,
.navigation .page-numbers li .prev {
  width: 15px;
  height: 26px;
}
.navigation .page-numbers li .next {
  background: url(../images/common/arrow-green.png) no-repeat center;
  background-size: contain;
}
.navigation .page-numbers li .prev {
  background: url(../images/common/arrow-prev.png) no-repeat center;
  background-size: contain;
}
.navigation .page-numbers li + li {
  padding-left: 1.5625rem;
}

.single-pagenav {
  padding: 6.25rem 0 0;
  margin-bottom: 6.25rem;
}
@media (width <= 768px) {
  .single-pagenav {
    padding: 60px 0;
  }
}
.single-pagenav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-pagenav ul li .prev,
.single-pagenav ul li .next {
  position: relative;
}
.single-pagenav ul li .prev::before,
.single-pagenav ul li .next::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.single-pagenav ul li .prev {
  padding-left: 30px;
}
@media (width <= 450px) {
  .single-pagenav ul li .prev {
    padding-left: 25px;
  }
}
.single-pagenav ul li .prev::before {
  background: url(../images/common/arrow-prev.png) no-repeat center;
  background-size: contain;
  left: 0;
}
.single-pagenav ul li .next {
  padding-right: 30px;
}
@media (width <= 450px) {
  .single-pagenav ul li .next {
    padding-right: 25px;
  }
}
.single-pagenav ul li .next::before {
  background: url(../images/common/arrow-green.png) no-repeat center;
  background-size: contain;
  right: 0;
}
.single-pagenav ul li .list {
  font-size: max(1.125rem, 15px);
  font-weight: bold;
  color: #fff;
  padding: 15px 4.0625rem;
  background-color: #80daeb;
  border-radius: 50px;
}
@media (width <= 450px) {
  .single-pagenav ul li .list {
    padding: 15px 25px;
  }
}/*# sourceMappingURL=style.css.map */