@charset "UTF-8";
/*** The new CSS reset - version 1.7.2 (last updated 23.6.2022) ***/
*:where(:not(html, iframe, canvas, img, svg, video):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

a,
button {
  cursor: revert;
}

a {
  text-decoration: none !important;
  transition-duration: 0.5s;
}
a:hover {
  opacity: 0.8;
  transition-duration: 0.5s;
  cursor: pointer;
}

ol,
ul,
menu {
  list-style: none;
  padding-left: 0;
}

img, video {
  max-width: 100%;
  max-height: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

.dummy {
  color: #ff00f7 !important;
}

/*
====================================
共通
====================================
*/
html {
  overflow-x: hidden;
  overflow-y: initial;
  font-size: 10px;
  letter-spacing: 0.1em;
}

body {
  overflow-x: hidden;
  font-feature-settings: "palt";
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  letter-spacing: 0.15em;
  opacity: 0;
}
body.loaded {
  opacity: 1;
  transition-duration: 4s;
}

.wrapper {
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1300px;
}
.wrapper--smaller {
  max-width: 1000px;
}

.p {
  font-size: 1.6rem;
  line-height: 1.6666666;
  letter-spacing: 0.1em;
}

.m_sectiontitle {
  display: flex;
  align-items: center;
}
.m_sectiontitle .eng {
  font-size: 4.5rem;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.m_sectiontitle .jpn {
  margin-left: 25px;
  font-size: 1.8rem;
  font-weight: 500;
}
.m_sectiontitle--orange .eng {
  color: #F29A76;
}
.m_sectiontitle--green .eng {
  color: #35B597;
}
.m_sectiontitle--white .eng {
  color: #fff;
}
.m_sectiontitle--white .jpn {
  color: #fff;
}
.m_sectiontitle--center {
  justify-content: center;
}

.m_sitebtn {
  display: inline-block;
  padding: 12px 0;
  width: 240px;
  border-radius: 50px;
  text-align: center;
}
.m_sitebtn span {
  font-size: 1.5rem;
  color: #fff;
}
.m_sitebtn--orange {
  background-color: #F29A76;
}
.m_sitebtn--green {
  background-color: #35B597;
}
.m_sitebtn--white {
  background-color: #fff;
}
.m_sitebtn--white .txt {
  color: #F29A76;
}
.m_sitebtn--instagram {
  background-image: linear-gradient(90deg, #3A3ADB, #EE3D8F, #F6AF45);
}

.m_lowerpageheader {
  height: 160px;
  width: 100%;
  background-image: linear-gradient(90deg, rgba(255, 167, 130, 0.2), rgba(143, 255, 229, 0.2));
}
.m_lowerpageheader__inner {
  height: 100%;
}
.m_lowerpageheader .title {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  text-align: center;
  font-weight: 600;
  color: #35B597;
}

#main {
  margin-top: 72px;
  margin-bottom: 96px;
}
#main.noloweheader {
  margin-top: 72px;
}
#main.pb0 {
  margin-bottom: 0;
}

.futura {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.pc {
  display: block;
}

.pc-tb {
  display: block;
}

.tb-sp {
  display: none;
}

.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .pc-tb {
    display: none;
  }
  .tb-sp {
    display: block;
  }
  .sp {
    display: block;
  }
  .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .p {
    font-size: 1.35rem;
  }
  .m_sectiontitle {
    flex-direction: column;
  }
  .m_sectiontitle .eng {
    font-size: 2.9rem;
  }
  .m_sectiontitle .jpn {
    margin-left: 12.5px;
    font-size: 1.5rem;
  }
  .m_sitebtn {
    width: 200px;
  }
  .m_sitebtn span {
    font-size: 1.4rem;
  }
  .m_sitebtn--sp100 {
    width: 100%;
  }
  .m_lowerpageheader {
    height: 25vw;
  }
  .m_lowerpageheader .title {
    font-size: 2rem;
  }
  #main {
    margin-top: 48px;
    margin-bottom: 56px;
  }
  #main.noloweheader {
    margin-top: 70px;
  }
}
/*
====================================
ヘッダー
====================================
*/
.header {
  padding-left: 20px;
  padding-right: 20px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
  z-index: 10001;
}
.header__inner {
  width: 100%;
  height: 100%;
}
.header__inner .lr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header__inner .lr .left .logo {
  width: 257.08px;
}
.header__inner .lr .left .logo img {
  width: 100%;
}
.header__inner .lr .right {
  display: flex;
  justify-content: right;
  align-items: center;
  height: 100%;
}
.header__inner .lr .right nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__inner .lr .right nav > ul {
  display: flex;
  justify-content: right;
  align-items: center;
  height: 100%;
  gap: 20px;
}
.header__inner .lr .right nav > ul > li {
  font-size: 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
}
.header__inner .lr .right nav > ul > li > a {
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.header__inner .lr .right nav > ul > li > span {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.header__inner .lr .right nav > ul > li.parent {
  position: relative;
}
.header__inner .lr .right nav > ul > li.parent a, .header__inner .lr .right nav > ul > li.parent span {
  position: relative;
}
.header__inner .lr .right nav > ul > li.parent a::after, .header__inner .lr .right nav > ul > li.parent span::after {
  margin-left: 5px;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/common/header-arrow-down-green.svg");
  width: 13px;
  height: 9px;
  display: inline-block;
  transform: translateY(2px);
}
.header__inner .lr .right nav > ul > li.parent > ul {
  padding: 16px 8px;
  position: absolute;
  left: 50%;
  top: 56px;
  pointer-events: none;
  opacity: 0;
  display: block;
  min-width: 240px;
  background-color: #35B597;
  transition-duration: 0.6s;
  transform: translateX(-50%);
  border-radius: 20px;
}
.header__inner .lr .right nav > ul > li.parent > ul > li {
  padding: 4px 8px;
}
.header__inner .lr .right nav > ul > li.parent > ul > li > a {
  color: #fff;
}
.header__inner .lr .right nav > ul > li.parent:hover {
  cursor: pointer;
}
.header__inner .lr .right nav > ul > li.parent:hover > ul {
  pointer-events: initial;
  opacity: 1;
  transition-duration: 0.6s;
}
.header__inner .lr .right nav > ul > li.parent:hover > ul > li {
  cursor: pointer;
}
.header__inner .lr .right .tel {
  margin-left: 32px;
  width: 189.87px;
}
.header__inner .lr .right .tel span {
  margin-top: 2.4px;
  display: block;
  text-align: center;
  font-size: 1.2rem;
}

.sp-menu {
  display: none;
}

.ham {
  display: none;
}

@media screen and (max-width: 750px) {
  .header {
    padding-left: 12px;
    padding-right: 12px;
    height: 48px;
    background-color: #fff;
  }
  .header__inner .lr .left .logo {
    width: 200.08px;
  }
  .header__inner .lr .right {
    display: none;
  }
  .ham {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 56px;
    height: 64px;
    background-color: #35B597;
    border-radius: 0 0 0 10px;
    border: none;
    z-index: 10003;
  }
  .ham span {
    position: absolute;
    width: 50%;
    height: 2px;
    border-radius: 10px;
    left: 25%;
    background-color: #fff;
  }
  .ham span:nth-of-type(1) {
    top: 30%;
  }
  .ham span:nth-of-type(2) {
    top: 50%;
  }
  .ham span:nth-of-type(3) {
    top: 70%;
  }
  .ham.cross span:nth-of-type(1) {
    top: 64%;
    left: 45%;
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: center;
    transition-duration: 0.35s;
  }
  .ham.cross span:nth-of-type(2) {
    opacity: 0;
    transition-duration: 0.35s;
  }
  .ham.cross span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 34%;
    left: 45%;
    transform: rotate(-45deg) translate(-50%, -50%);
    transform-origin: top;
    transition-duration: 0.35s;
  }
}
.sp-menu {
  opacity: 1;
  transform: translateY(-100%);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10002;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: block;
  padding: 100px 16px 0;
  background-color: #fff;
  transition-duration: 0.75s;
}
.sp-menu.active {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 0.75s;
}
.sp-menu .logo-gr .logo {
  width: 80px;
  background-color: #fff;
  margin-top: -58px;
  position: relative;
  z-index: 2;
  border-radius: 10px 10px 0 0;
  padding: 12px 22px 0 22px;
  margin-left: auto;
  margin-right: auto;
}
.sp-menu .logo-gr .logo img {
  width: 100%;
}
.sp-menu .logo-gr .txt {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #F29A76;
  text-align: center;
  display: block;
}
.sp-menu nav {
  margin-top: 10px;
  text-align: center;
}
.sp-menu nav ul li a {
  display: block;
  padding: 8px 0 4px;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: left;
  border-bottom: solid 1px #E3E3E3;
  color: #000000;
}
.sp-menu nav ul li:first-of-type a {
  padding-top: 0;
}
.sp-menu .tel {
  margin-top: 24px;
  display: block;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.sp-menu .tel img {
  width: 100%;
}
.sp-menu .btns {
  margin-top: 16px;
}
.sp-menu .btns a {
  display: block;
  margin: 4px auto 0;
  width: 75%;
}
.sp-menu .btns a img {
  width: 100%;
}

/*
====================================
フッター
====================================
*/
.footer {
  padding: 48px 0;
  background-color: #FAFAFA;
}
.footer__inner .lr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__inner .lr .left {
  width: 50%;
}
.footer__inner .lr .left .logo {
  width: 313px;
  margin-bottom: 30px;
}
.footer__inner .lr .left .copy {
  margin-bottom: 30px;
  color: #222222;
  font-size: 1.8rem;
  font-weight: 500;
}
.footer__inner .lr .left .address {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
}
.footer__inner .lr .right {
  width: 50%;
  text-align: right;
}
.footer__inner .lr .right nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__inner .lr .right nav ul li {
  font-size: 1.4rem;
}
.footer__inner .lr .right nav ul li a {
  color: #000;
}
.footer__inner .copyright {
  display: block;
  text-align: right;
  font-size: 1.2rem;
}

@media screen and (max-width: 750px) {
  .footer {
    padding: 40px 0;
  }
  .footer__inner .lr {
    display: block;
  }
  .footer__inner .lr .left {
    width: 100%;
  }
  .footer__inner .lr .left .logo {
    margin-left: auto;
    margin-right: auto;
    width: 240px;
    margin-bottom: 15px;
  }
  .footer__inner .lr .left .copy {
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
  }
  .footer__inner .lr .left .address {
    font-size: 1.25rem;
    text-align: center;
  }
  .footer__inner .lr .right {
    width: 100%;
    text-align: center;
  }
  .footer__inner .lr .right nav ul {
    display: block;
  }
  .footer__inner .lr .right nav ul li {
    font-size: 1.25rem;
  }
  .footer__inner .lr .right nav ul li a {
    display: block;
    padding: 8px 0;
    border-bottom: solid 1px #d8d8d8;
  }
  .footer .copyright {
    display: block;
    margin-top: 24px;
    text-align: center;
    font-size: 1rem;
  }
}
.m_form {
  position: relative;
  padding: 90px 0;
  background-color: #fff;
}
.m_form__heading {
  margin-bottom: 30px;
  text-align: center;
}
.m_form__group {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.m_form__group table {
  width: 100%;
}
.m_form__group table tr {
  border-bottom: solid 1px #DDDDDD;
}
.m_form__group table tr th {
  padding: 20px 0;
  font-size: 1.5rem;
  text-align: left;
  font-weight: 500;
  width: 232px;
}
.m_form__group table tr th .require {
  background-color: #F29A76;
  border-radius: 50px;
  font-size: 1.2rem;
  color: #fff;
  padding: 4px 8px;
}
.m_form__group table tr th p {
  display: flex;
  justify-content: space-between;
}
.m_form__group table tr td {
  padding: 20px 0;
  padding-left: 15px;
  font-size: 1.6rem;
}
.m_form__group table tr td input[type=text], .m_form__group table tr td input[type=email], .m_form__group table tr td input[type=tel], .m_form__group table tr td textarea {
  width: 100%;
  background-color: #fff;
  border: solid 1px #CCCCCC;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.6rem;
}
.m_form__group table tr td input[type=text]::-moz-placeholder, .m_form__group table tr td input[type=email]::-moz-placeholder, .m_form__group table tr td input[type=tel]::-moz-placeholder, .m_form__group table tr td textarea::-moz-placeholder {
  color: #b2b2b2;
}
.m_form__group table tr td input[type=text]::placeholder, .m_form__group table tr td input[type=email]::placeholder, .m_form__group table tr td input[type=tel]::placeholder, .m_form__group table tr td textarea::placeholder {
  color: #b2b2b2;
}
.m_form__group table tr td select {
  width: 100%;
  background-color: #fff;
  border: solid 1px #CCCCCC;
  padding: 16px;
  border-radius: 10px;
}
.m_form__group table tr td textarea {
  height: 240px;
}
.m_form__group .privacy {
  margin-top: 40px;
  text-align: center;
}
.m_form__group .privacy span {
  margin-left: 4.8px;
  font-size: 1.6rem;
}
.m_form__group .submit {
  margin-top: 24px;
  text-align: center;
}
.m_form__group .submit .wpcf7-spinner {
  display: block;
}
.m_form__group .submit input {
  background-color: #35B597;
  width: 260px;
  padding: 16px;
  border-radius: 50px;
  font-size: 1.6rem;
  color: #fff;
  border: none;
}
.m_form__group .wpcf7 form.invalid .wpcf7-response-output, .m_form__group .wpcf7 form.unaccepted .wpcf7-response-output, .m_form__group .wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 1.6rem;
}
.m_form__group .wpcf7 form.invalid .wpcf7-response-output {
  background-color: #D8222A;
  color: #fff;
  border: none;
  text-align: center;
}
.m_form__group .wpcf7 form.sent .wpcf7-response-output {
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  background-color: #F29A76;
  border: none;
}
.m_form.entry {
  margin-top: 90px;
  background-color: rgba(249, 252, 251, 0.6);
}

@media screen and (max-width: 750px) {
  .m_form {
    padding: 40px 0;
  }
  .m_form__heading {
    margin-bottom: 16px;
  }
  .m_form__group {
    width: 100%;
  }
  .m_form__group table {
    display: block;
  }
  .m_form__group table tbody {
    width: 100%;
    display: block;
  }
  .m_form__group table tr {
    display: block;
  }
  .m_form__group table tr th {
    display: block;
    padding: 24px 0 0;
    font-size: 1.4rem;
    width: 100%;
  }
  .m_form__group table tr th .require {
    margin-left: 8px;
    font-size: 1.1rem;
    padding: 4px 8px;
  }
  .m_form__group table tr th p {
    justify-content: left;
  }
  .m_form__group table tr td {
    display: block;
    padding: 16px 0 24px 0;
    font-size: 1.4rem;
  }
  .m_form__group table tr td input[type=text], .m_form__group table tr td input[type=email], .m_form__group table tr td input[type=tel], .m_form__group table tr td textarea {
    padding: 10px;
    border-radius: 8px;
    font-size: 1.4rem;
  }
  .m_form__group table tr td textarea {
    height: 180px;
  }
  .m_form__group .privacy {
    margin-top: 24px;
  }
  .m_form__group .privacy span {
    margin-left: 2.4px;
    font-size: 1.4rem;
  }
  .m_form__group .submit {
    margin-top: 12px;
  }
  .m_form__group .submit input {
    width: 200px;
    padding: 10px;
    font-size: 1.4rem;
  }
  .m_form__group .wpcf7 form.invalid .wpcf7-response-output, .m_form__group .wpcf7 form.unaccepted .wpcf7-response-output, .m_form__group .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 1.4rem;
  }
  .m_form__group .wpcf7 form.sent .wpcf7-response-output {
    font-size: 1.4rem;
  }
  .m_form.entry {
    margin-top: 40px;
    background-color: rgba(249, 252, 251, 0.6);
    padding: 40px 0;
  }
}
.m_blogsec {
  padding-top: 83px;
}
.m_blogsec__heading {
  margin-bottom: 37px;
  text-align: center;
}
.m_blogsec__btn {
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .m_blogsec {
    padding-top: 40px;
  }
  .m_blogsec__heading {
    margin-bottom: 24px;
  }
  .m_blogsec__list::after {
    display: none;
  }
  .m_blogsec__btn {
    margin-top: 24px;
  }
}
.m_bloglist {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 0;
}
.m_bloglist::after {
  content: "";
  width: 28.571529%;
}
.m_bloglist article {
  width: 28.571529%;
}
.m_bloglist article figure {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/0.7;
}
.m_bloglist article figure .noimage {
  border: solid 2px #35B597;
  border-radius: 10px;
}
.m_bloglist article figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}
.m_bloglist article .subinfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m_bloglist article .subinfo time {
  font-size: 1.5rem;
  font-weight: 500;
  color: #35B597;
}
.m_bloglist article .subinfo ul li {
  padding: 8px 40px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  background-color: #EFF8F4;
}
.m_bloglist article .title {
  margin-bottom: 6px;
  font-size: 2rem;
  font-weight: 500;
  color: #222222;
}
.m_bloglist article .desc {
  font-size: 1.4rem;
  color: #5c5c5c;
}
.m_bloglist.visible {
  opacity: 1;
  transition-delay: 1s;
  transform: translateY(0);
  transition-duration: 1.5s;
}

.no-posts {
  margin-top: 32px;
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .m_bloglist::after {
    display: none;
  }
  .m_bloglist article {
    margin-top: 24px;
    width: 48%;
  }
  .m_bloglist article:nth-of-type(1), .m_bloglist article:nth-of-type(2) {
    margin-top: 0;
  }
  .m_bloglist article .subinfo {
    display: block;
  }
  .m_bloglist article .subinfo time {
    font-size: 1.2rem;
  }
  .m_bloglist article .subinfo ul {
    margin-top: 6px;
  }
  .m_bloglist article .subinfo ul li {
    padding: 4px 16px;
    font-size: 1.3rem;
  }
  .m_bloglist article .title {
    margin-top: 8px;
    font-size: 1.5rem;
  }
  .m_bloglist article .desc {
    font-size: 1.1rem;
  }
}
.m_cta {
  position: relative;
  margin-top: 82px;
  margin-bottom: 160px;
}
.m_cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: -6vw;
  width: 30vw;
  height: 30vw;
  background-image: url("../img/common/logo.svg");
  background-size: cover;
  opacity: 0;
}
.m_cta__box {
  transform: translateY(50px);
  opacity: 0;
  position: relative;
  z-index: 2;
  padding: 49px 60px;
  border-radius: 30px;
  border: #35B597 solid 2px;
  background-color: rgba(255, 255, 255, 0.4);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.m_cta__box .heading {
  text-align: center;
  margin-bottom: 24px;
}
.m_cta__box .desc {
  text-align: center;
}
.m_cta__box .btns {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.m_cta__box .btns .btn {
  width: 285px;
}
.m_cta__box .btns .btn img {
  width: 100%;
}
.m_cta__box .btns .btn.tel .upper {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.m_cta__box .btns .btn.tel span {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 6.4px;
}
.m_cta__box .btns .btn.contact span {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.m_cta__box .btns .btn.contact .upper {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 6.4px;
}
.m_cta.visible .m_cta__box {
  transform: translateY(0);
  opacity: 1;
  transition-duration: 1.5s;
  transition-delay: 1s;
}
.m_cta.visible::after {
  opacity: 0.2;
  transition-duration: 1.2s;
  transition-delay: 2s;
}

@media screen and (max-width: 750px) {
  .m_cta {
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .m_cta__box {
    padding: 32px 16px;
    border-radius: 15px;
  }
  .m_cta__box .heading {
    margin-bottom: 12px;
  }
  .m_cta__box .btns {
    margin-top: 16px;
    display: block;
    flex-wrap: wrap;
    width: 80%;
  }
  .m_cta__box .btns .btn {
    width: 100%;
  }
  .m_cta__box .btns .btn.tel {
    margin-bottom: 12px;
  }
  .m_cta__box .btns .btn.tel .upper {
    font-size: 1.3rem;
  }
  .m_cta__box .btns .btn.tel span {
    font-size: 1.1rem;
    margin-bottom: 3.2px;
  }
  .m_cta__box .btns .btn.contact {
    margin-bottom: 4px;
  }
  .m_cta__box .btns .btn.contact span {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
  }
  .m_cta__box .btns .btn.contact .upper {
    font-size: 1.1rem;
    margin-bottom: 3.2px;
  }
}
.m_instagram {
  margin-top: 120px;
  margin-bottom: 86px;
}
.m_instagram__inner .lr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m_instagram__inner .lr .left {
  width: 47.969184%;
  text-align: center;
}
.m_instagram__inner .lr .left .heading {
  margin-bottom: 33px;
}
.m_instagram__inner .lr .left .desc {
  margin-bottom: 32px;
  text-align: center;
}
.m_instagram__inner .lr .right {
  width: 50%;
}

@media screen and (max-width: 750px) {
  .m_instagram {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .m_instagram__inner .lr {
    flex-direction: column-reverse;
  }
  .m_instagram__inner .lr .left {
    margin-top: 16px;
    width: 100%;
  }
  .m_instagram__inner .lr .left .heading {
    margin-bottom: 16px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .m_instagram__inner .lr .left .desc {
    margin-bottom: 24px;
  }
  .m_instagram__inner .lr .right {
    width: 100%;
  }
}
.pagenavi {
  margin-top: 40px;
}
.pagenavi .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
}
.pagenavi .wp-pagenavi .pages {
  display: none;
}
.pagenavi .wp-pagenavi a,
.pagenavi .wp-pagenavi span {
  display: inline-block;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #35B597 1px solid;
  background-color: #fff;
  color: #35B597;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s;
}
.pagenavi .wp-pagenavi a:hover,
.pagenavi .wp-pagenavi span:hover {
  background-color: #35B597;
  color: #fff;
  border-color: #35B597;
}
.pagenavi .wp-pagenavi .current {
  background-color: #35B597;
  border-color: #35B597;
  color: #fff;
  pointer-events: none;
}
.pagenavi .wp-pagenavi .previouspostslink,
.pagenavi .wp-pagenavi .nextpostslink {
  font-weight: bold;
}

@media (max-width: 768px) {
  .pagenavi .wp-pagenavi {
    font-size: 1.5rem;
  }
  .pagenavi .wp-pagenavi a,
  .pagenavi .wp-pagenavi span {
    width: 40px;
    height: 40px;
  }
}/*# sourceMappingURL=style.css.map */