@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&family=Zen+Kaku+Gothic+New:wght@400;500&family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
:root {
  --f-notosans: "Noto Sans JP", sans-serif;
  --f-jp: "Zen Kaku Gothic New", sans-serif;
  --f-en: "Josefin Sans", sans-serif;
}

:root {
  --main-color: #3d8f21;
  --clr1: #333;
  --ttl_size: 28px;
  --wrapper: 90px;
  --pd: 20px;
}

/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
body {
  background-color: #ffffff;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.1em;
  color: var(--clr1);
  font-family: var(--f-notosans);
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
  font-size: 100%;
  -webkit-text-size-adjust: none;
}

header,
section,
footer,
aside,
nav,
main,
article,
figure {
  display: block;
  padding: 0;
  margin: 0;
}

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

a:not(.tel_click) {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: #64b5f7;
}
a:not(.tel_click):hover, a:not(.tel_click):active {
  color: #64b5f7;
}
a:not([target*=_blank]) {
  transition: opacity 0.3s ease;
}
a:not([target*=_blank]):hover {
  opacity: 0.7;
}

a.logo:hover,
.logo a:hover,
a.ft_logo:hover,
.ft_logo a:hover,
a.tel_click:hover {
  opacity: 1 !important;
}

@media only screen and (min-width: 769px) {
  a.tel_click {
    pointer-events: none;
  }
}
table {
  width: 100%;
}

iframe {
  width: 100%;
  height: 100%;
}

.link > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

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

p {
  line-height: 2.25;
  letter-spacing: inherit;
  word-wrap: break-word;
  word-break: break-word;
  margin-bottom: 15px;
}
p:empty {
  display: none !important;
}
p:last-child {
  margin-bottom: 0;
}

.red {
  color: #ca0a0a !important;
}

.bold {
  font-weight: bold !important;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

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

/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
html {
  overflow-x: auto !important;
}

.wrapper {
  overflow: hidden;
}

.inner_big,
.inner,
.inner_sm {
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.inner_big {
  max-width: 1300px;
}

.inner {
  max-width: 1190px;
}

.inner_sm {
  max-width: 1000px;
}

.fullWidthBreak {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.ovh #mainContent, .ovh .key, .ovh footer {
  position: relative;
  z-index: 1;
}
.ovh #mainContent::after, .ovh .key::after, .ovh footer::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  background-color: var(--clr1);
  opacity: 0.6;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ovh .totop, .ovh .fixed_banner {
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}

/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           WordPress Core                                 */
/*==========================================================================*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 35px;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*                              General                                     */
/*==========================================================================*/
@media only screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
.accBtn::before, .accBtn::after {
  transition: all 0.3s ease-in-out;
}
.accBtn.triangle, .accBtn.triangle_btt {
  position: relative;
}
.accBtn.triangle::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 20px;
  border-color: inherit;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.accBtn.triangle.rotate::after {
  transform: translateY(-50%) rotateX(180deg);
}
.accBtn.triangle_btt::after {
  content: "";
  position: relative;
  top: 0px;
  width: 0;
  height: 0;
  border-radius: 20px;
  border-color: inherit;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid;
  display: block;
  margin: 10px auto 0;
  transition: all 0.3s ease-in-out;
}
.accBtn.rotate::after {
  transform: rotateX(180deg);
}

.TabContainer .TabContent {
  background-color: #edf0f5;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.TabContainer .TabContent > ul {
  transition: all 0.3s ease-in-out;
}
.TabContainer .TabContent > ul > li {
  opacity: 0;
  z-index: -10;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
}
.TabContainer .TabContent > ul > li.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.TabContainer .TabContent > ul > li div {
  padding-top: 20px;
}
.TabContainer .TabContent p {
  padding: 9px 10% 0;
  margin: 0;
}
.TabContainer .TabContent p.des {
  color: #838E95;
  font-size: 12px;
}
.TabContainer .TabPager {
  display: table;
  min-width: 290px;
}
.TabContainer .TabPager li {
  background-color: #fff;
  display: block;
  float: left;
  position: relative;
  margin: 0;
  padding: 9px 20px;
  box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.4);
  transform: translateY(10px);
  transition: all 0.3s ease;
  cursor: pointer;
  color: #797b7d;
}
.TabContainer .TabPager li p {
  margin: 0;
}
.TabContainer .TabPager li.active {
  background-color: #edf0f5;
  z-index: 1;
  transform: translateY(0px);
}

.rel {
  position: relative;
}

.ovh {
  overflow: hidden !important;
}

.ovs {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
}

.lt0 {
  letter-spacing: 0 !important;
}

figure {
  margin: 0;
  text-align: center;
  line-height: 1;
}

.fblock {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.key {
  position: relative;
}

.gMap {
  width: 100%;
  height: 100%;
}

.txt_l {
  float: left;
  width: calc(100% - 385px);
}

.txt_r {
  float: right;
  width: calc(100% - 385px);
}

.image_alone {
  display: table;
  max-width: 500px;
  margin: 0 auto;
  border: 7px solid rgba(231, 231, 231, 0.5);
  border-radius: 11px;
  overflow: hidden;
}

.totop {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 19;
  bottom: 40px;
  right: 50px;
}
.totop.active {
  opacity: 1;
  visibility: visible;
}
.totop .icon {
  background-image: url(../images/totop.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  border: 0px;
  width: 60px;
  height: 60px;
  margin: 0;
}

@media only screen and (min-width: 769px) {
  .totop:hover .icon {
    opacity: 0.9;
    animation-name: bounces;
  }
}
.bounce {
  animation-name: bounces;
}

.animateds {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes bounces {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes fixed_banner {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: -3px;
    opacity: 0.7;
  }
}
.fixed_banner {
  position: fixed;
  top: 200px;
  right: 0px;
  z-index: 15;
  transition: right 0.3s ease-in-out;
}
.fixed_banner:hover {
  right: 0;
}
.fixed_banner > div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  background-color: #fff;
}
.fixed_banner > div:not(.tel):hover {
  opacity: 0.7;
}
.fixed_banner a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.fixed_banner p {
  margin-bottom: 0;
  color: var(--clr1);
  letter-spacing: 0.12em;
  line-height: 1.2222222222;
  text-align: center;
}
.fixed_banner p::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  display: block;
  width: 100%;
  margin-bottom: 8px;
}
.fixed_banner .tel p::before {
  background-image: url("../images/shared_fixed_bnr_icon01.png");
}
.fixed_banner .tel p i {
  font-style: normal;
}
.fixed_banner .tel p span {
  writing-mode: tb-rl;
}
.fixed_banner .web p::before {
  background-image: url("../images/ic_map.png");
}
.fixed_banner .mail p::before {
  background-image: url("../images/shared_fixed_bnr_icon03.png");
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
  }
  .fixed_banner > div {
    width: 9em;
    height: 9em;
  }
  .fixed_banner p {
    font-size: 1.5em;
    letter-spacing: 0.05em;
  }
  .fixed_banner .tel {
    height: 12em;
  }
  .fixed_banner .web p::before {
    height: 1.9333em;
  }
  .fixed_banner .mail p::before {
    height: 1.9333em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px), (min-width: 769px) and (max-height: 780px) {
  .fixed_banner {
    font-size: 8.75px;
  }
}
.btn a::before {
  content: "";
  width: 3.125em;
  height: 3.125em;
  margin-right: 1.25em;
  border-radius: 50%;
  background-color: #b6b6b6;
  background-image: url(../images/btn_ic.png);
  background-size: 100% auto;
  background-position: center;
  transition: all 0.3s;
}

.btn-group {
  font-size: 10px;
}
.btn-group .btn {
  font-size: 1em;
}
.btn-group .btn.style01 {
  width: auto;
  min-width: 50px;
  max-width: 408px;
  overflow: hidden;
}
.btn-group .btn.style01 a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.88889em;
  padding: 0;
  position: relative;
  font-size: 1.6em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #333;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  border-radius: 40px;
}
.btn-group .btn.style01 a:hover {
  opacity: 1;
  color: var(--main-color);
}
.btn-group .btn.style01 a:hover::before {
  background-color: var(--main-color);
}
.btn-group .btn.bg01 a {
  color: #fff;
}
.btn-group .btn.bg01 a:hover {
  color: #fff;
}
.btn-group .btn.bg01 a::before {
  background-color: transparent;
  border: 1px solid #fff;
}
.btn-group .btn.bg02 a {
  background-color: #f4bf0c;
}

.slick-arrow {
  display: block;
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  position: absolute;
  top: 37%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
}
.slick-arrow:focus {
  outline: 0;
}

.slick-prev {
  left: -55px;
}

.slick-next {
  right: -55px;
}

/* Tablet
-------------------------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  body {
    font-size: 87.5%;
  }
  .btn.style01 a, .btn.style02 a {
    font-size: 14px;
  }
  .totop {
    right: 10px;
  }
  .totop .icon {
    width: 60px;
    height: 60px;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           Header - Footer                                */
/*==========================================================================*/
h1 {
  font-size: 10px;
}

header {
  position: fixed;
  top: var(--pd);
  width: calc(100% - var(--pd) * 2);
  left: var(--pd);
  background-color: #fff;
  z-index: 20;
  transition: all 0.3s;
  border-radius: 5px;
}

.ovh header {
  border-radius: 5px 5px 0px 0px;
}

body:not(.ovh) header.active {
  box-shadow: 0px 0px 6px 0px rgba(51, 51, 51, 0.5);
}

.header_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: var(--wrapper);
  justify-content: space-between;
  margin: 0 auto;
  padding: 5px 20px;
  transition: all 0.3s ease-in-out;
}

.logo {
  width: 20%;
  max-width: 187px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo a {
  max-width: 109px;
  display: block;
  width: 100%;
  text-align: center;
}

.right_head {
  width: 80%;
  max-width: 1021px;
  padding-right: 9.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 10px;
}

.h_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 38.4em;
  min-width: 30em;
  width: 42%;
}
.h_top p {
  margin-bottom: 0;
}

.pc_navi {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pc_navi .tel {
  height: 4.5em;
  width: 67%;
  border-left: 1px solid #dcdcdc;
}
.pc_navi .tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.4em;
  height: 100%;
  font-size: 1em;
  pointer-events: inherit;
  cursor: default;
}
.pc_navi .tel a:hover span {
  opacity: 1;
}
.pc_navi .map {
  max-width: 13.1em;
  width: 34.11%;
}
.pc_navi .map a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.75em;
  color: var(--clr1);
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}
.pc_navi .map a:hover {
  opacity: 1;
  --clr1: #3d8f21;
}
.pc_navi .map a span {
  position: relative;
  padding-top: 2.6em;
  line-height: 1;
}
.pc_navi .map a span::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  top: 0;
  left: calc(50% - 0.75em);
  width: 1.5em;
  height: 2.1em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 251' %3E%3Cpath d='M90.029,0.852 C40.416,0.852 0.059,41.114 0.059,90.615 C0.059,153.098 82.075,245.047 85.567,248.928 C86.702,250.191 88.324,250.918 90.029,250.918 C91.734,250.918 93.357,250.191 94.493,248.928 C97.984,245.047 180.000,153.098 180.000,90.615 C180.000,41.114 139.643,0.852 90.029,0.852 ZM90.029,117.300 C76.224,117.300 64.991,106.094 64.991,92.316 C64.991,78.538 76.224,67.338 90.029,67.338 C103.836,67.338 115.067,78.538 115.067,92.316 C115.067,106.094 103.836,117.300 90.029,117.300 Z'/%3E%3C/svg%3E");
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: top center;
  -webkit-mask-position: top center;
  background-color: var(--clr1);
}
.pc_navi > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  width: 55%;
  max-width: 493px;
  margin-right: 2%;
  padding-top: 3px;
}
.pc_navi > ul > li {
  position: relative;
}
.pc_navi > ul > li > p {
  padding-right: 0.533em;
}
.pc_navi > ul > li > p::after {
  content: "";
  background: url(../images/shared_pc_navi_arrow.png) center no-repeat;
  background-size: 100% auto;
  width: 0.6em;
  height: 5px;
  position: absolute;
  right: -0.6em;
  bottom: calc(50% - 2.5px);
  transition: all 0.5s ease;
  /*border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 6px 6px 0px 6px;
  width: 0;
  height: 0;*/
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 40px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  color: var(--clr1);
}
.pc_navi > ul > li > a:hover,
.pc_navi > ul > li > p:hover {
  opacity: 1;
  color: var(--main-color);
  color: #3d8f21;
}
.pc_navi > ul > li > a span,
.pc_navi > ul > li > p span {
  display: block;
  width: 100%;
  padding-top: 0px;
  font-size: 66.6666666667%;
  font-weight: 600;
}
.pc_navi > ul > li:hover a.title::after,
.pc_navi > ul > li:hover p.title::after {
  transform: translateY(5px);
}
.pc_navi > ul .subInner {
  position: absolute;
  width: 220px;
  right: 50%;
  bottom: -15px;
  padding-top: 0px;
  transform: translate(50%, 100%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .subInner ul {
  background-color: var(--main-color);
  padding-bottom: 10px;
}
.pc_navi > ul .subInner ul li {
  padding: 0 10px;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: block;
  padding: 19px 10px 19px 28px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-align: left;
  letter-spacing: 0px;
}
.pc_navi > ul .subInner ul li a::before {
  content: "›";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-54%);
  font-size: 14px;
}

@media only screen and (min-width: 769px) {
  header .hamburger-btn .button-toggle.active #nav-icon {
    width: 45px;
  }
  .pc_navi > ul .col2 .subInner {
    width: 440px;
  }
  .pc_navi > ul .col2 .subInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_navi > ul .col2 .subInner ul li {
    width: 50%;
  }
  .menu_toggle .inside > .flex {
    padding: 0px 20px;
    min-height: calc(100% - 40px);
    max-width: 1158px;
    margin: 20px auto;
    align-items: center;
  }
  .menu_toggle .inside .box_left {
    margin-bottom: 6px;
    width: 49%;
    max-width: 545px;
    border: solid 1px #dcdcdc;
    border-radius: 10px;
    padding: 66px 20px 4px 20px;
  }
  .menu_toggle .inside .time_sheet.st2 {
    margin-bottom: 0;
  }
  .menu_toggle .inside .box_right {
    width: 48%;
    max-width: 464px;
  }
  .menu_toggle .inside .ft_map {
    margin-bottom: 36px;
    max-height: 180px;
  }
  .menu_toggle .inside .ft_link {
    width: 100%;
    padding: 0px;
    max-width: 350px;
    margin: 0 auto;
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
  .menu_toggle .inside .ft_link .link_list ul {
    max-height: 20em;
  }
  .menu_toggle .inside .ft_link .link_list li {
    margin-bottom: 44px;
  }
  .menu_toggle .inside .ft_link .link_list li:nth-child(n+5) {
    max-width: 141px;
  }
}
@media only screen and (min-width: 769px) and (max-height: 690px) {
  header .menu_toggle .inside .ft_link {
    padding-bottom: 40px;
  }
  .menu_toggle .inside .box_left {
    padding-top: 56px;
  }
  .menu_toggle .time_sheet table {
    font-size: 15px;
  }
  .menu_toggle .inside .ft_map {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --wrapper: 80px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  :root {
    --pd: 10px;
  }
  .right_head {
    font-size: 8.75px;
  }
  .pc_navi > ul .subInner ul li a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --ttl_size: 22px;
    --wrapper: 80px;
  }
  .header_top {
    padding: 5px 10px;
  }
  .sp_navi .hamburger-btn {
    width: 80px;
  }
  .logo {
    width: 18%;
  }
  .right_head {
    width: 81%;
    font-size: 0.9vw;
  }
  .pc_navi > ul {
    width: 58%;
  }
  .pc_navi .h_top {
    width: 40%;
    font-size: 0.9em;
  }
  .pc_navi .tel {
    width: 71%;
  }
  .pc_navi .map {
    width: 29%;
  }
}
footer {
  padding: 105px 0 132px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/ft_bg.jpg);
}
footer > .inner {
  max-width: 1138px;
}
footer .ft_right {
  max-width: 465px;
  width: 48%;
}
footer .ft_right .ft_link {
  margin: auto;
  max-width: 408px;
}
footer .ft_right .ft_link li:nth-child(n+5) {
  max-width: 196px;
}
footer p {
  margin-bottom: 0;
}
footer .tel_click span {
  font-size: 3em;
}
footer .tel_click span::before {
  margin-right: 0.37em;
  width: 0.83334em;
  max-width: 25px;
}
footer p,
footer a {
  color: var(--clr1);
  text-decoration: none;
}
footer .ft_logo {
  padding: 13px 0 43px;
  max-width: 392px;
}
footer .ft_info {
  width: 47.5%;
}
footer .ft_info .des {
  margin-top: 10px;
  margin-bottom: 26px;
  letter-spacing: 0.1em;
}

.ft_map {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(220, 220, 220);
  border-radius: 10px;
  overflow: hidden;
  filter: grayscale(100%);
  max-width: 468px;
  height: 264px;
  -webkit-transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.ft_link a {
  text-decoration: none;
}
.ft_link .ttl {
  margin-bottom: 28px;
  padding-left: 0;
  font-size: calc(var(--ttl_size) + 4px);
  font-weight: 400;
  color: #333;
  letter-spacing: 0.2em;
  line-height: 1;
  pointer-events: none;
  font-family: var(--f-en);
}
.ft_link .ttl::before {
  display: none;
}
.ft_link .menu01 {
  width: 100%;
}
.ft_link ul {
  margin-left: -0.35em;
  display: flex;
  flex-flow: column wrap;
  align-content: space-between;
  max-height: 13em;
}
.ft_link ul li {
  width: 50%;
}
.ft_link ul:last-child {
  margin-bottom: 0;
}
.ft_link li {
  margin-bottom: 1.5333em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #333;
}
.ft_link li.last {
  margin-bottom: 29px;
}
.ft_link li:last-child {
  margin-bottom: 0;
}
.ft_link a {
  position: relative;
  padding-left: 0em;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.ft_link a::before {
  content: "・";
  color: #3d8f21;
  border-radius: 100%;
  width: auto;
  height: auto;
}
.ft_link a:hover {
  opacity: 1;
  color: #3d8f21;
}

.copyright {
  margin: 0 auto 0;
  color: #fff;
  padding: 12px 0px 18px;
  position: relative;
  z-index: 1;
}
.copyright .flex {
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
}
.copyright .inner_big {
  max-width: 1135px;
}
.copyright::before {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
  left: calc(50% - 50vw);
  top: 0;
  height: 100%;
  width: 100vw;
  background-color: #3d8f21;
}
.copyright .textwidget {
  display: block;
  margin-top: 7px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 20px;
  padding-left: 19px;
  padding-top: 0px;
  padding-bottom: 3px;
  margin-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.copyright .textwidget p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: inherit;
  letter-spacing: 0.1em;
}
.copyright .grits {
  margin-bottom: 0;
  line-height: 2.501;
}
.copyright .grits a {
  display: block;
}
.copyright .grits img {
  max-width: 159px;
}

/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
@keyframes idxKeyIn {
  0% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.home_page .key {
  background-color: var(--main-color);
  background-size: cover;
  height: 55vw;
  min-height: 800px;
  max-height: 900px;
  overflow: hidden;
  font-size: 10px;
  border-bottom: 6px solid #3d8f21;
}
.home_page .key .inner {
  position: relative;
  height: 100%;
  padding: 0;
}
.home_page .key .key_text {
  position: relative;
  width: 100%;
  height: 100%;
}
.home_page .key .key_text .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 55vw;
  min-height: 800px;
  max-height: 900px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home_page .key .key_text .item.catch {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0px;
  padding-bottom: 61px;
  justify-content: flex-end;
  flex-direction: column;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/shadow.png);
}
.home_page .key .key_text .item .text {
  width: 89%;
}
.home_page .key h2,
.home_page .key p {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.home_page .key h2 {
  margin-bottom: 0.18em;
  font-size: 4em;
  line-height: 1.75;
}
.home_page .key h2 span {
  display: inline-block;
  visibility: hidden;
  transform: translateY(-1.5em) scale(1.05);
  opacity: 0;
  transition: all 0.6s ease-in;
  filter: blur(1px);
}
.home_page .key h2 span.active {
  visibility: visible;
  transform: translateY(0px) scale(1);
  opacity: 1;
  filter: blur(0px);
}
.home_page .key p {
  font-size: 2em;
  font-weight: 500;
  line-height: 2.25;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease-in;
  transform: translateY(-1.5em);
}
.home_page .key p.active {
  visibility: visible;
  transform: translateY(0px);
  opacity: 1;
}
.home_page .slick-slide.slick-current.slick-active .item {
  animation: idxKeyIn 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.home_page .topic_path {
  display: none;
}
.home_page h3 {
  position: relative;
  margin-bottom: 35px;
  color: var(--clr1);
  font-weight: 500;
  letter-spacing: 0.15em;
  font-size: calc(var(--ttl_size) + 8px);
  letter-spacing: 0.2em;
}
.home_page h3 .en {
  margin-bottom: 0.2em;
  display: block;
  font-size: 16px;
  color: #9c9c9c;
  letter-spacing: 0.1em;
}
.home_page h3.t_center {
  text-align: center;
}
.home_page h3.sm .jp::after {
  display: none;
}
.home_page h3 .jp {
  position: relative;
}
.home_page h3 .jp::after {
  margin: 0.61em auto 0;
  content: "";
  display: block;
  border-radius: 50%;
  width: 0.27778em;
  height: 0.27778em;
  background-color: #ffda1b;
}
.home_page h3.st2 {
  margin-bottom: 24px;
  line-height: 1.6667;
  padding-left: 0.75em;
}
.home_page h3.st2 .en {
  margin-bottom: 0.3em;
}
.home_page h3.st2 .jp::after {
  position: absolute;
  left: -0.722em;
  top: 1px;
  background-color: #fe9384;
}
.home_page h3.white {
  color: #fff;
}
.home_page h3.white .en {
  color: #fff;
}

.tel_click {
  text-decoration: none;
  font-size: 10px;
}
.tel_click span {
  display: flex;
  align-items: center;
  font-family: var(--f-jp);
  font-weight: 500;
  color: var(--clr1);
  letter-spacing: 0.05em;
  font-size: 2.4em;
  line-height: 1;
}
.tel_click span::before {
  content: "";
  display: block;
  margin-right: 0.34em;
  margin-top: 0.1786em;
  width: 0.83334em;
  height: 0.83334em;
  max-width: 20px;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 201 201' %3E%3Cpath d='M200.985,150.095 L200.985,189.399 C200.988,195.236 196.473,200.080 190.649,200.490 C185.792,200.818 181.824,201.009 178.757,201.009 C80.541,201.009 0.929,121.385 0.929,23.155 C0.929,20.104 1.096,16.136 1.440,11.275 C1.849,5.450 6.695,0.928 12.533,0.928 L51.833,0.928 C54.689,0.928 57.081,3.091 57.367,5.951 C57.623,8.500 57.857,10.525 58.079,12.070 C60.288,27.492 64.814,42.487 71.505,56.542 C72.560,58.763 71.871,61.427 69.871,62.846 L45.887,79.975 C60.551,114.158 87.782,141.397 121.952,156.052 L139.068,132.123 C140.511,130.105 143.193,129.407 145.436,130.462 C159.496,137.135 174.485,141.657 189.894,143.854 C191.439,144.079 193.472,144.310 196.006,144.564 C198.844,144.846 201.001,147.251 200.996,150.095 L200.985,150.095 Z'/%3E%3C/svg%3E");
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--clr1);
}

.en {
  font-family: var(--f-en);
}

section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 1921px) {
  header, header .menu_toggle, .idx_ic.index02::before {
    max-width: 1920px;
    left: calc(50% - 960px);
  }
  .home_page .key .key_text .item.catch .text {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 769px) {
  .home_page .txt p {
    line-height: 2.5;
  }
  .home_page .key .s1 {
    background-image: url(../images/idx_mv01.jpg);
  }
  .home_page .key .slick-initialized .s2 {
    background-image: url(../images/idx_mv02.jpg);
  }
  .home_page .key .slick-initialized .s3 {
    background-image: url(../images/idx_mv03.jpg);
  }
  .home_page .key .slick-initialized .s4 {
    background-image: url(../images/idx_mv04.jpg);
  }
}
.idx_en {
  position: absolute;
  bottom: -0.17142em;
  left: 4.52%;
  color: #f7f6f4;
  font-weight: 300;
  font-size: 140px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.index0 {
  padding: 100px 0px 100px;
  background-color: #000;
}

.time_sheet {
  margin: 0px auto;
  max-width: 464px;
}
.time_sheet.st2 {
  margin-bottom: 41px;
  color: #fff;
}
.time_sheet.st2 .note {
  margin-left: auto;
  margin-top: 13px;
  margin-right: -3px;
  color: var(--clr1);
}
.time_sheet.st2 table th {
  color: #333;
}
.time_sheet.st2 table td {
  padding-bottom: 1.35em;
}
.time_sheet.st2 table tr:nth-child(3) td {
  padding-top: 1.25em;
  padding-bottom: 1.35em;
}
.time_sheet .note {
  margin-top: 15px;
  margin-left: -2px;
  line-height: 2;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.time_sheet .note span {
  display: inline-block;
}
.time_sheet table {
  font-size: 16px;
  font-feature-settings: "palt";
}
.time_sheet table th,
.time_sheet table td {
  border-top: none;
  border-right: none;
  border-left: none;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 9.9%;
  border-bottom: 1px solid var(--clr1);
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: auto;
  padding-left: 1.9%;
}
.time_sheet table th:last-child,
.time_sheet table td:last-child {
  width: 16.05%;
  padding-left: 0.8em;
  text-align: left;
}
.time_sheet table th {
  padding: 0.6em 0.2em;
}
.time_sheet table td {
  padding: 1.35em 0.2em 1.65em;
  color: #3d8f21;
}
.time_sheet table td:first-child {
  color: #333;
}
.time_sheet table tr:nth-child(3) td {
  padding-bottom: 1.6em;
}

.idx_ic {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0px auto;
}
.idx_ic .ill {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  width: 100%;
  max-width: 1440px;
  left: calc(50% - 720px);
  height: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.index01 {
  padding: 100px 0px;
}
.index01 h3 {
  font-size: 28px;
}
.index01 .time {
  padding: 44px 20px 52px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
}
.index01 .content {
  align-items: inherit;
}
.index01 .content h3 {
  margin-bottom: 12px;
}
@media only screen and (min-width: 769px) {
  .index01 .content .news {
    padding-top: 16px;
    max-width: 466px;
    margin: auto;
  }
  .index01 .content .box {
    width: 46%;
    max-width: 626px;
    background-color: #fff;
  }
  .index01 .content .box:nth-child(2) {
    width: 51%;
  }
}
.index01 .content li {
  border-bottom: 1px solid #dcdcdc;
}
.index01 .content li a {
  display: block;
  text-decoration: none;
  padding: 26px 0px 31px;
  font-weight: 500;
  transition: all 0.3s;
  letter-spacing: 0.1em;
  color: var(--clr1);
}
.index01 .content li a span {
  display: block;
}
.index01 .content li a:hover {
  opacity: 1;
  color: var(--main-color);
}
.index01 .content li a:hover .date {
  color: var(--main-color);
}
.index01 .content li a .date {
  display: block;
  margin-bottom: 5px;
  transition: all 0.3s;
}
.index01 .content li a .title {
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.index01 .content .news {
  position: relative;
}
.index01 .content .btn-group {
  position: absolute;
  right: -2px;
  top: 18px;
  z-index: 1;
  max-width: 50%;
}
.index02 {
  padding: 16px 0px 140px;
  z-index: 3;
}
.index02 .ill {
  width: 151px;
  background-image: url(../images/idx_ic01.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  left: 4.1%;
  top: -23px;
  background-position: top left;
  height: 165px;
}
.index02 .ill.st2 {
  background-image: url(../images/idx_ic02.svg);
  width: 108px;
  left: auto;
  top: auto;
  right: 12.5%;
  bottom: 95px;
  background-position: right bottom;
}
.index02::after {
  top: -23px;
}
.index02::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  width: 100vw;
  height: 100%;
  max-height: 726px;
  top: 40px;
  left: calc(50% - 50vw);
  background-image: url(../images/idx02_bg.jpg);
  background-size: cover;
  background-position: top 0 center;
  background-repeat: no-repeat;
}
.index02 .idx02_row {
  position: relative;
  justify-content: flex-end;
  padding-bottom: 90px;
}
@media only screen and (min-width: 769px) {
  .index02 .box_left {
    padding-top: 123px;
    width: 32.5%;
    max-width: 465px;
  }
  .index02 .box_left p {
    max-width: 353px;
  }
  .index02 .box_right {
    width: 63%;
    max-width: 815px;
  }
}
.index02 .box_right {
  align-items: flex-start;
}
.index02 .box_right picture {
  display: block;
  width: 50.07%;
  max-width: 408px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 7.3%;
}
.index02 .box_right picture:last-child {
  margin-top: 0;
  width: 46.93%;
  max-width: 379px;
}

.index03 {
  padding: 116px 0px 78px;
  background-image: url(../images/idx03_bg.jpg);
}
.index03 h3 {
  margin-bottom: 80px;
}
.index03 h3 .jp {
  padding-left: 0.3em;
}
.index03 h3 .en {
  margin-bottom: 0.65em;
}
.index03 .box {
  margin-bottom: 71px;
  max-width: 55.8em;
  width: calc(50% - 1px);
}
.index03 .tt {
  position: relative;
  z-index: 3;
  padding-top: 3.5333em;
  font-size: 3em;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  background-size: 2.833em auto;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../images/idx03_ic01.png);
}
.index03 .tt .en {
  margin-bottom: 0.2em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  display: block;
}
.index03 .b2 .box_img {
  --color: #ffda1b;
}
.index03 .b2 .box_img::before {
  background-image: url(../images/idx03_box2.jpg);
}
.index03 .b2 .tt {
  background-image: url(../images/idx03_ic02.png);
}
.index03 .b3 .box_img {
  --color: #3d8f21;
}
.index03 .b3 .box_img::before {
  background-image: url(../images/idx03_box3.jpg);
}
.index03 .b3 .tt {
  background-image: url(../images/idx03_ic03.png);
}
.index03 .b4 .box_img {
  --color: #447fe0;
}
.index03 .b4 .box_img::before {
  background-image: url(../images/idx03_box4.jpg);
}
.index03 .b4 .tt {
  background-image: url(../images/idx03_ic04.png);
}
.index03 .flex {
  margin: 0px auto;
  max-width: 1118px;
}
.index03 .txt {
  max-width: 500px;
  width: 96%;
  margin: 28px auto 0;
}
.index03 .txt p {
  line-height: 2.25;
}
.index03 .box_img {
  position: relative;
  font-size: 10px;
  height: 34em;
  max-height: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
  --color:#fe9384;
}
.index03 .box_img a {
  z-index: 3;
}
@media only screen and (min-width: 769px) {
  .index03 .box_img:hover::after {
    height: 100%;
    opacity: 0.9;
  }
}
.index03 .box_img::before, .index03 .box_img::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 1;
  top: 0;
}
.index03 .box_img::after {
  border-bottom: 1em solid var(--color);
  top: auto;
  bottom: 0;
  z-index: 2;
  height: 0em;
  background-color: var(--color);
}
.index03 .box_img::before {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/idx03_box1.jpg);
}

.index04 {
  padding: 118px 0px 129px;
}
.index04 .box_img {
  overflow: hidden;
  border-radius: 10px;
}
.index04 h3 {
  margin-bottom: 60px;
}
.index04 h3 .en {
  margin-bottom: 0.59em;
}
.index04 h3 .jp::after {
  background-color: #3d8f21;
}
.index04 .box_text {
  position: relative;
  z-index: 1;
}
.index04 .box_text .ill {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  width: 330px;
  max-height: 12vw;
  height: 153px;
  bottom: -56px;
  left: -23.2%;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 100%;
}
.index04 .box_text .point {
  margin-bottom: 11px;
  color: #fe9384;
  font-size: calc(var(--ttl_size) + 8px);
  display: flex;
  align-items: center;
  line-height: 1;
}
.index04 .box_text .point .num {
  letter-spacing: 0.1em;
  font-size: 3.889em;
}
.index04 .box_text .point .jp {
  margin-bottom: 0.8em;
  margin-left: -0.05em;
  padding-bottom: 0.25em;
  position: relative;
  display: inline-block;
  letter-spacing: 0.1em;
}
.index04 .box_text .point .jp::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 94%;
  bottom: 0;
  left: 2%;
  height: 0;
  border-bottom: 3px solid;
}
.index04 .idx_row {
  position: relative;
  z-index: 1;
}
.index04 .idx_row.st1 .box_text .ill {
  background-image: url(../images/idx04_ic01.png);
}
.index04 .idx_row.st2 .box_text .ill {
  width: 409px;
  height: 140px;
  left: auto;
  bottom: -61px;
  right: -109px;
  background-position: right bottom;
  background-image: url(../images/idx04_ic02.png);
}
.index04 .idx_row.st3 {
  margin-bottom: 0;
}
.index04 .idx_row.st3 .box_text {
  padding-top: 2.7%;
}
.index04 .idx_row.st3 .box_text .point {
  color: #447fe0;
}
.index04 .idx_row.st3 .box_text .point .num {
  letter-spacing: 0.05em;
}
.index04 .idx_row.st3 .box_text .point .jp {
  margin-left: 0.3em;
}
.index04 .idx_row.st3 .box_text .ill {
  width: 361px;
  height: 155px;
  left: -20.1%;
  bottom: -46px;
  background-image: url(../images/idx04_ic03.png);
}
.index04 .idx_row.st2 .point {
  color: #ffda1b;
}
.index04 .idx_row.st2 .point .num {
  letter-spacing: 0.05em;
}
.index04 .idx_row.st2 .point .jp {
  margin-left: 0.34em;
}
@media only screen and (min-width: 769px) {
  .index04 .idx_row {
    margin-bottom: 140px;
  }
  .index04 .box_img {
    max-width: 763px;
    width: 60%;
  }
  .index04 .box_text {
    width: 37%;
    max-width: 436px;
    padding-top: 1.1%;
  }
  .index04 .box_text .point {
    margin-left: -26%;
  }
  .index04 .idx_row.st2 {
    flex-direction: row-reverse;
  }
  .index04 .idx_row.st2 .box_text .point {
    margin-left: auto;
    margin-right: -26%;
    justify-content: flex-end;
  }
}

.index05 {
  background-image: url(../images/idx05_bg.jpg);
}
.index05 .idx_ic {
  padding: 263px 0px 262px;
}
.index05 .idx_ic .ill {
  background-image: url(../images/idx_ic03.svg);
  top: 0;
  width: 124px;
  height: 186px;
  bottom: 52px;
  left: 92px;
  top: auto;
  background-position: bottom 0 left 0;
}
.index05 .idx_en {
  bottom: auto;
  top: 14.5%;
  color: #fff;
}
.index05 h3.st2 .jp::after {
  background-color: #447fe0;
}
@media only screen and (min-width: 769px) {
  .index05 h3.st2 {
    margin-bottom: 26px;
  }
  .index05 .btn-group {
    margin-top: 44px;
    max-width: 481px;
  }
}
.index05 .box_img {
  position: relative;
}
.index05 .box_img .name {
  display: table;
  position: absolute;
  right: 12.8%;
  top: 8.6%;
  writing-mode: vertical-rl;
  color: #fff;
  min-height: 21em;
  font-size: 10px;
  font-weight: 500;
}
.index05 .box_img .name .sub {
  line-height: 2.22;
  font-size: 1.8em;
  letter-spacing: 0.185em;
}
.index05 .box_img .name .big {
  display: flex;
  align-items: center;
  padding-bottom: 0.7em;
  padding-top: 0.31em;
  line-height: 1.75;
  border-right: 2px solid #fff;
  font-size: 3em;
  letter-spacing: 0.185em;
}
.index05 .box_img .name .en {
  margin-top: 1em;
  padding-right: 0.3em;
  display: table;
  line-height: 1.363637;
  font-size: 0.36667em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.index05 .box_img img {
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  .index05 .box_text {
    width: 51%;
    padding-top: 5.8%;
    padding-left: 6.3%;
  }
  .index05 .box_img {
    width: 44%;
    max-width: 545px;
  }
}

.index06 {
  margin-top: 78px;
  padding: 116px 0px 137.35px;
  background-image: url(../images/idx06_bg.jpg);
  -webkit-animation: idx_key 50s linear infinite;
  animation: idx_key 50s linear infinite;
  background-position: -500px center;
  background-size: auto 100%;
  background-repeat: repeat-x;
  color: #fff;
}
.index06 h3.st2 .jp::after {
  top: 0.15em;
  background-color: #9b6fc4;
}
.index06 .inner_big {
  max-width: 1140px;
}
.index06 .content {
  margin: 0px auto;
}
.index06 .time_sheet.st2 {
  margin: 0 0px 32px;
}
.index06 .time_sheet.st2 .note {
  color: #fff;
}
.index06 .time_sheet.st2 table td,
.index06 .time_sheet.st2 table th {
  color: #fff;
  border-bottom-color: #fff;
}
.index06 h3 {
  color: #fff;
}
.index06 h3.st2 {
  margin-bottom: 57px;
  padding-left: 0.5em;
}
.index06 h3.st2 .jp::after {
  left: -0.5em;
}
.index06 h3 .en {
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .index06 .box_left {
    width: 47%;
  }
  .index06 .box_right {
    padding-top: 2.9%;
    width: 52%;
    max-width: 574px;
  }
}
.index06 .box_left li {
  display: flex;
  margin-bottom: 27px;
}
.index06 .box_left li .tt {
  width: 6.8em;
}
.index06 .box_left li .txt {
  width: calc(100% - 6.8em);
}
.index06 .box_left .tel {
  margin-top: 41px;
  font-size: 10px;
}
.index06 .box_left .tel .txt {
  display: inline-block;
  margin-top: 0.44em;
  font-size: 1.4em;
}
.index06 .box_left .tel_click span {
  color: #fff;
  font-size: 3em;
}
.index06 .box_left .tel_click span::before {
  margin-right: 0.37em;
  background-color: #fff;
  width: 0.83334em;
  max-width: 25px;
}

.idx_map {
  filter: grayscale(100%);
}

@keyframes idx_key {
  from {
    background-position: -500px center;
  }
  to {
    background-position: -1940px center;
  }
}
.idx_map {
  height: 450px;
}
.idx_map iframe {
  height: 100%;
}

.idx_gallery {
  margin-top: 92px;
  margin-bottom: 40px;
  position: relative;
}
.idx_gallery::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 73px;
  bottom: -110px;
  right: 48px;
  height: 140px;
  z-index: 2;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../images/idx_ic04.png);
}
.idx_gallery ul {
  display: flex;
}
.idx_gallery ul li .img {
  margin: 0px 5px;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--main-color);
  width: 332px;
  height: 292px;
}
.idx_gallery ul li .img01 {
  background-image: url(../images/idx_gallery01.jpg);
}
.idx_gallery ul li .img02 {
  background-image: url(../images/idx_gallery02.jpg);
}
.idx_gallery ul li .img03 {
  background-image: url(../images/idx_gallery03.jpg);
}
.idx_gallery ul li .img04 {
  background-image: url(../images/idx_gallery04.jpg);
}
.idx_gallery ul li .img05 {
  background-image: url(../images/idx_gallery05.jpg);
}
.idx_gallery ul li .img06 {
  background-image: url(../images/idx_gallery06.jpg);
}
.idx_gallery ul li .img07 {
  background-image: url(../images/idx_gallery07.jpg);
}
.idx_gallery ul li .img08 {
  background-image: url(../images/idx_gallery08.jpg);
}

@media only screen and (min-width: 1281px) {
  .index01 .content .news {
    margin-right: 43px;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 769px) {
  .home_page .key {
    min-height: 600px;
  }
  .home_page .key .key_text .item {
    min-height: 600px;
  }
}
@media only screen and (min-width: 769px) and (max-height: 800px) {
  .home_page .key {
    min-height: 580px;
    height: 100vh;
  }
  .home_page .key .key_text .item {
    min-height: 580px;
    height: 100vh;
  }
}
@media only screen and (max-width: 1366px) and (min-width: 769px) {
  .idx_ic .ill {
    left: 0;
  }
  .index02::before {
    width: 100%;
    left: 0;
    top: 0;
    max-height: 100%;
    background-size: 22.22% auto, 52% auto;
    background-image: url(../images/idx02_bg01.png), url(../images/idx02_bg02.png);
    background-position: left top 40px, bottom 140px right;
  }
  .index05 {
    background-image: url(../images/idx05_bg_sp2.jpg), url(../images/idx05_bg_sp3.jpg), url(../images/idx05_bg_st2.jpg);
    background-position: top left -270px, bottom right -300px, center;
    background-size: 510px auto, 647px auto, cover;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  :root {
    --ttl_size: 24px;
  }
  .idx_en {
    font-size: 11vw;
  }
  .index02 .idx02_row {
    justify-content: space-between;
  }
  .index02 .box_left {
    padding-left: 2%;
  }
  .btn-group {
    font-size: 8.75px;
  }
  .index05 .box_text {
    padding-left: 3%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .index02 .box_right {
    width: 60%;
  }
  .index02 .box_left {
    width: 36%;
  }
}
@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --ttl_size: 22px;
  }
  .time_sheet table {
    font-size: 14px;
  }
  .index02::before {
    background-size: 22.22% auto, 62% auto;
  }
  .index03 .box_img {
    font-size: 8.75px;
  }
  .index04 .box_text .ill {
    bottom: -100px !important;
  }
  .index05 .box_text {
    padding-left: 1%;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
.under .sitemap {
  padding-top: 40px;
}
.under .sitemap > ul > li p {
  margin-bottom: 0;
  font-family: var(--f-en);
  font-weight: 500;
  font-size: 1.1em;
}
.under .sitemap > ul > li a,
.under .sitemap > ul > li p {
  display: block;
  width: 100%;
  padding: 15px 15px 15px 30px;
  border-bottom: dotted 1px #ccc;
  color: rgb(51, 51, 51);
  position: relative;
  box-sizing: border-box;
  text-decoration: none;
}
.under .sitemap > ul > li a:before,
.under .sitemap > ul > li p:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 3px;
  background: #ccc;
  left: 0;
  top: 50%;
  margin-top: -2px;
}
.under .sitemap > ul > li p:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 14px;
  background: #ccc;
  left: 6px;
  top: 50%;
  margin-top: -7px;
}
.under .sitemap > ul > li a:hover {
  text-decoration: none;
  background: rgba(0, 0, 0, 0.05);
}
.under .sitemap > ul > li li a {
  padding-left: 70px;
}
.under .sitemap > ul > li li a:before {
  left: 40px;
}
.under #mainContent {
  padding-bottom: 100px;
}
.under .key {
  position: relative;
  background-size: auto 100%;
  height: 640px;
  background-image: url(../images/key_under_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.under .key:after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
  height: 6px;
  bottom: 0;
  left: 0;
  background-color: #3d8f21;
}
.under .key .inner {
  height: 100%;
  padding: 0px;
}
.under .key .key_text {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0 140px;
}
.under .key h2 {
  display: table;
  margin-top: 10%;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.under h2,
.under h3,
.under h4,
.under h5,
.under h6 {
  position: relative;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-family: var(--f-notosans);
  color: var(--clr1);
}
.under h2:last-child,
.under h3:last-child,
.under h4:last-child,
.under h5:last-child,
.under h6:last-child {
  margin-bottom: 0;
}
.under h3 {
  background-size: 50px auto;
  margin-bottom: 38px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
.under h3:after {
  display: block;
  content: "";
  margin-left: auto;
  margin-right: auto;
  background-color: #3d8f21;
  overflow: hidden;
  width: 2em;
  height: 2px;
  margin-top: 0.8333em;
}
.under h4 {
  padding-bottom: 11px;
  margin-bottom: 30px;
  border-bottom: 1px solid #3d8f21;
  font-weight: 500;
  font-size: 24px;
}
.under h5 {
  margin-bottom: 22px;
  font-weight: 500;
  font-size: 20px;
  padding-left: 1.2em;
}
.under h5::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "";
  width: 3px;
  min-height: 1.3181em;
  height: 100%;
  background-color: #3d8f21;
  border-radius: 1.5px;
}
.under h6 {
  margin-top: 40px;
  padding-left: 1.5556em;
  margin-bottom: 25px;
  font-size: 18px;
}
.under h6::before {
  position: absolute;
  content: "";
  top: 0.27778em;
  left: 0;
  background-color: #3d8f21;
  --size-circle: 0.88889em;
  width: var(--size-circle);
  height: var(--size-circle);
  border-radius: 50%;
}

.under .un_flow {
  margin-top: 100px;
}
.under .un_flow .box {
  position: relative;
  margin-bottom: 120px;
  padding: 100px 10% 60px;
  border: 2px solid var(--cl-decor);
  border-top-left-radius: var(--bd-rd);
  background-image: url(../images/ud_box_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  --cl-decor: #fe9384;
  --bd-rd: 50px;
}
.under .un_flow .box:last-child {
  margin-bottom: 0;
}
.under .un_flow .point {
  display: flex;
  align-items: center;
  position: absolute;
  padding-left: 0.2778em;
  top: 0;
  left: 1em;
  transform: translateY(-42%);
  font-size: 36px;
  background-color: white;
  color: var(--cl-decor);
  line-height: 0.7;
}
.under .un_flow .point .num {
  letter-spacing: 0.1em;
  font-size: 3.889em;
}
.under .un_flow .point .jp {
  color: var(--cl-decor);
  margin-bottom: 0.8em;
  margin-left: -0.05em;
  position: relative;
  display: inline-block;
  letter-spacing: 0.1em;
}
.under .un_flow .box:nth-child(3n+3) {
  --cl-decor: #447fe0;
}
.under .un_flow .box:nth-child(3n+2) {
  --cl-decor: #ffda1b;
  border-top-left-radius: 0;
  border-top-right-radius: var(--bd-rd);
}
.under .un_flow .box:nth-child(3n+2) .point {
  right: 1em;
  left: auto;
}
.under .inner > section:first-child > h3 {
  margin-top: 131px;
}
.under .section > p:last-of-type,
.under section > p:last-of-type {
  margin-bottom: 0;
}
.under .section > p:last-of-type + table,
.under .section > p:last-of-type + ul,
.under section > p:last-of-type + table,
.under section > p:last-of-type + ul {
  margin-top: 15px;
}
.under section {
  padding-top: 1px;
}
.under section h3 {
  margin-top: 80px;
}
.under .secH4 {
  padding-top: 60px;
}
.under .secH5 {
  padding-top: 45px;
}
.under .secH6 {
  padding-top: 40px;
}
.under .imgBox.rowImg .image_l img,
.under .imgBox.rowImg .image_r img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 10px;
}
.under .imgBox.rowImg .image_l {
  float: left;
  margin-right: 60px;
}
.under .imgBox.rowImg .image_r {
  float: right;
  margin-left: 60px;
}
.under .imgBox.rowImg .image_l,
.under .imgBox.rowImg .image_r {
  max-width: 450px;
  margin-bottom: 30px;
}
.under .imgBox.rowImg .txt_l {
  float: left;
}
.under .imgBox.rowImg .txt_r {
  float: right;
}
.under .imgBox.rowImg .txt_l,
.under .imgBox.rowImg .txt_r {
  width: calc(100% - 510px);
}
.under .imgBox.rowImg.large .image_l,
.under .imgBox.rowImg.large .image_r {
  max-width: 440px;
}
.under .imgBox.rowImg.large .txt_l,
.under .imgBox.rowImg.large .txt_r {
  width: calc(100% - 475px);
}
.under .imgBox.rowImg.full .image_l,
.under .imgBox.rowImg.full .image_r {
  max-width: 60vw;
}
.under .imgBox.colImg .list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.under .imgBox.colImg p {
  margin-bottom: 5px;
}
.under .imgBox.colImg p:last-child {
  margin-bottom: 0;
}
.under .imgBox.colImg figure {
  margin-bottom: 15px;
}
.under .imgBox.colImg .text p {
  font-size: 1em;
}
.under .imgBox.colImg .text .ttl {
  font-size: 1.375em;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  color: #a98c54;
  font-family: "Noto Serif JP", serif;
}
.under .imgBox.colImg3 figure, .under .imgBox.colImg2 figure {
  position: relative;
  background: #efefef;
  overflow: hidden;
  height: 280px;
  width: 100%;
  border-radius: 10px;
  text-align: center;
}
.under .imgBox.colImg3 img, .under .imgBox.colImg2 img {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  max-height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.under .imgBox.colImg3 .item {
  width: 32%;
}
.under .imgBox.colImg2 .item {
  width: 49%;
}
.under .imgBox.colImg1 .item {
  width: 100%;
}
.under .imgBox.colImg1 .item img {
  max-height: 500px;
}
.under .acf_block h3,
.under .acf_block h4,
.under .acf_block h5 {
  margin-bottom: 0;
}
.under .acf_block .text_h3 {
  margin: 45px 0 0;
}
.under .acf_block .text_h4 {
  margin: 30px 0 0;
}
.under .acf_block .text_h5 {
  margin: 20px 0 0;
}
.under .acf_block .list01 {
  margin-top: 20px;
}

@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .under .imgBox.rowImg .image_l,
  .under .imgBox.rowImg .image_r {
    float: none;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.under table {
  border-radius: 3px;
}
.under table.rollTable {
  width: 100%;
}
.under table.tbl_style01 th,
.under table.tbl_style01 td {
  border: 1px solid #ddd;
  padding: 0.625rem;
}
.under table.tbl_style01 th img,
.under table.tbl_style01 td img {
  max-width: 100%;
}
.under table.tbl_style01 th {
  background-color: #3d8f21;
  color: #fff;
  font-size: 1.125em;
  font-weight: normal;
  text-align: center;
}
.under table.tbl_style01 td {
  background-color: #fff;
  color: #383838;
  font-size: 1em;
}
.under table.tbl_style01.rowHead tr th:not(:last-child) {
  border-right: 1px solid #ddd;
}
.under table.tbl_style01.colHead tr:not(:last-child) th {
  border-bottom: 1px solid #ddd;
}
.under table.tbl_style01 .list01 li {
  padding-bottom: 5px;
  line-height: 1.5;
}
.under table.tbl_style01 .list01 li::before {
  top: 0.5em;
  width: 8px;
  height: 8px;
}
.under table.tbl_style02 th,
.under table.tbl_style02 td {
  border: 2px solid #9dba38;
  border-left: none;
  border-right: none;
  padding: 0.625em;
}
.under table.tbl_style02 th img,
.under table.tbl_style02 td img {
  max-width: 100%;
}
.under table.tbl_style02 th {
  background: none;
  font-weight: normal;
  font-size: 1.125em;
  color: #9dba38;
}
.under table.tbl_style02 td {
  font-size: 1em;
}
.under .tbl_note {
  display: none;
  margin-top: 10px;
  color: #b4b4b4;
  font-size: 11px;
  letter-spacing: 0;
}
.under .txt_under {
  text-decoration: underline;
}

@media only screen and (max-width: 1000px) and (min-width: 769px) {
  .under table.tbl_style01 th,
  .under table.tbl_style01 td {
    padding: 0.5rem;
  }
  .under table.tbl_style01 th {
    font-size: 1em;
  }
  .under table.tbl_style01 td {
    font-size: 0.9em;
  }
  .under table.tbl_style01 .list01 li::before {
    top: 0.55em;
    width: 6px;
    height: 6px;
  }
  .under table.tbl_style02 th {
    font-size: 1em;
  }
  .under table.tbl_style02 td {
    font-size: 0.9em;
  }
}
.under ul.list01.mcol-2 {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .under ul.list01.mcol-2 {
    padding-bottom: 15px;
  }
  .under ul.list01.mcol-2 li:last-child, .under ul.list01.mcol-2 li:nth-child(2n+1) {
    padding-bottom: 0;
  }
}
.under ul.list01.mcol-2 li {
  width: 50%;
  padding-right: 10px;
}
.under ul.list01 li {
  background-size: 10px auto;
  position: relative;
  padding-left: 20px;
  padding-bottom: 8px;
  letter-spacing: 0.1em;
  line-height: 2.25;
}
.under ul.list01 li:last-child {
  padding-bottom: 0;
}
.under ul.list01 li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d8f21;
  position: absolute;
  left: 0;
  top: 0.95em;
}
.under .list_note {
  margin-top: 15px;
  padding-left: 20px;
}
.under .list_note.no_mt {
  margin-top: 0;
}
.under .topic_path {
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.1em;
  padding: 12px 0 7px;
}
.under .topic_path .inner {
  max-width: 1302px;
}
.under .topic_path ul {
  background-size: auto 15px;
  display: block;
  padding: 4px 0;
}
.under .topic_path ul::after {
  content: "";
  display: block;
  clear: both;
}
.under .topic_path ul li {
  float: left;
  text-transform: uppercase;
  color: #333;
}
.under .topic_path a {
  text-decoration: none;
  color: #3d8f21;
}
.under .topic_path a:hover {
  opacity: 1;
  text-decoration: underline;
}
.under .topic_path span {
  display: inline-block;
  padding: 0 9px 0 7px;
  color: var(--clr1);
  line-height: 1;
}
.under .anchor-links {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0 0;
}
.under .anchor-links > div {
  background-color: var(--main-color);
  border-radius: 3px;
  position: relative;
  display: block;
  min-width: 135px;
  width: 19%;
  margin: 0% 0.5% 1%;
  text-align: center;
  color: #fff;
  font-size: 0.875em;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.under .anchor-links > div a {
  display: block;
  width: 100%;
  padding: 10px 5px 9px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}
.under .anchor-links > div::after {
  content: "";
  border: 4px solid;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  position: absolute;
  top: auto;
  bottom: 2px;
  left: calc(50% - 4px);
  right: auto;
  line-height: 1;
}
.under .anchor-links > div:hover a {
  opacity: 1;
}
.under .anchor-links > div:hover::after {
  bottom: 0;
}
.under .anchor-links > div.ext::after {
  content: ">";
  border: 0;
  position: absolute;
  top: calc(50% - 0.5em);
  bottom: auto;
  left: auto;
  right: 7px;
  font-size: 0.857em;
  line-height: 1;
  letter-spacing: 0;
  transform: scaleX(0.5);
}
.under .anchor-links > div.ext:hover::after {
  right: 5px;
}
.under #mainContent .inner {
  max-width: 1044px;
}
.under .doctor_box {
  max-width: 700px;
  margin: auto;
  position: relative;
}
.under .doctor_box p {
  margin-bottom: 0;
}
.under .doctor_box .doctor_name {
  position: absolute !important;
  left: 15px;
  bottom: 30px;
  z-index: 1;
  padding: 20px 10px;
  border-top: 0.25em solid #3d8f21;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #3d8f21;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.95);
}
.under .doctor_box .doctor_name span {
  font-size: 80%;
  display: block;
}
.under .details {
  display: table;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5em;
  background-image: url(../images/und_dt_txt_icon.png);
  background-size: 1em auto;
  background-position: left top 0.7em;
  background-repeat: no-repeat;
}
.under .ud_map {
  height: 450px;
}
.under .exp li {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  display: flex;
  border-bottom: 1px solid #3d8f21;
}
.under .exp li .year {
  width: 15em;
  color: var(--clr1);
  font-weight: 500;
}
.under .exp li .txt {
  width: calc(100% - 8em);
}

@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .under ul.list01 li::before {
    top: 0.9em;
  }
}
.under .cl {
  color: #3d8f21;
}
.under .clinic_tbl01 {
  --size-width: 300px;
}
.under .clinic_tbl01 th {
  width: calc((100% - var(--size-width)) / 2);
  text-align: right;
}
.under .clinic_tbl01 th:first-child,
.under .clinic_tbl01 td:first-child {
  width: var(--size-width);
}
.under .txt_ct {
  text-align: center;
}
.under .clinic_tbl02 {
  text-align: center;
}
.under .clinic_tbl02 th:first-child {
  width: 350px;
}
.under .clinic_tbl02 th:not(:first-child) {
  width: calc((100% - 350px) / 7);
}
.under .teeth_box .secH4 {
  width: 48%;
}
.under .teeth_box .secH5 {
  padding-top: 20px !important;
}
.under .teeth_box img {
  max-height: 180px;
}
.under .teeth_box p {
  font-size: 14px;
}
.under .access_box_img01 .block {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.under .access_box_img01 .block:nth-child(even) .big {
  order: 1;
}
.under .access_box_img01 .block .big {
  width: calc(0.5 * (100% - 10px));
}
.under .access_box_img01 .block .small {
  width: calc(0.5 * (100% - 10px));
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.under .access_box_img01 .block .small figure {
  width: calc((100% - 10px) * 0.5);
}
.under .access_box_img01 .block figure {
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 10px;
}
.under .access_box_img02 .block {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.under .access_box_img02 .block:nth-child(even) .big {
  order: 1;
}
.under .access_box_img02 .block .big {
  width: calc(0.5517241379 * (100% - 10px));
}
.under .access_box_img02 .block .small {
  width: calc(0.4482758621 * (100% - 10px));
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.under .access_box_img02 .block .small figure {
  width: calc((100% - 10px) * 0.5);
}
.under .access_box_img02 .block figure {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

/* START BLOG
------------------------------------------------------------------------*/
#pagination {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
}
#pagination:empty {
  display: none;
}
#pagination a,
#pagination span {
  background-color: var(--main-color);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin: 10px 5px;
  width: 32px;
  height: 32px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
}
#pagination a.prev, #pagination a.next,
#pagination span.prev,
#pagination span.next {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px auto;
  color: transparent;
}
#pagination a.prev,
#pagination span.prev {
  background-image: url(../images/shared_blog_arrow_prev.svg);
}
#pagination a.next,
#pagination span.next {
  background-image: url(../images/shared_blog_arrow_next.svg);
}
#pagination a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#pagination span {
  opacity: 0.5;
}
#pagination .active a,
#pagination a.active:hover {
  background: none repeat scroll 0 0 #000000;
  color: #FFFFFF;
}

.blog-content .date {
  margin-bottom: 20px;
  text-align: center;
  color: var(--main-color);
}

.blog_list_style01 .item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #bababa;
  padding-bottom: 30px;
  margin-bottom: 30px;
  align-items: flex-start;
}
.blog_list_style01 .item figure {
  background-color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--main-color);
  width: 220px;
  height: 220px;
}
.blog_list_style01 .item figure img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog_list_style01 .item .info {
  width: calc(100% - 250px);
  position: relative;
  padding-bottom: 40px;
}
.blog_list_style01 .item .info p {
  margin-bottom: 0;
  line-height: 1.5;
}
.blog_list_style01 .item .info .date {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
  padding-top: 15px;
  font-size: 90%;
}
.blog_list_style01 .item .info .date .tag {
  display: inline-block;
  margin-left: 20px;
  color: transparent;
  font-size: 90%;
  letter-spacing: -1em;
}
.blog_list_style01 .item .info .date .tag a {
  background-color: var(--main-color);
  display: inline-block;
  margin-left: 2px;
  padding: 0 10px;
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
}
.blog_list_style01 .item .info .date .tag a.blog {
  background-color: #301500;
}
.blog_list_style01 .item .info .ttl {
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: underline;
  font-size: 120%;
  font-weight: 600;
  color: #333333;
}
.blog_list_style01 .item .info .ttl a {
  color: inherit;
}
.blog_list_style01 .item .info .des {
  padding-bottom: 45px;
}
.blog_list_style01 .item .info .button {
  background-color: #fff;
  border: 3px solid #ddd;
  position: absolute;
  bottom: 0px;
  right: 0;
}
.blog_list_style01 .item .info .button a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 5px 15px 5px 10px;
  font-size: 90%;
  color: #333;
  text-decoration: none;
}
.blog_list_style01 .item .info .button a span {
  display: block;
  position: absolute;
  right: 5px;
  line-height: 1em;
  top: calc(50% - 0.55em);
}
.blog_list_style01 .item .info .button a::before {
  opacity: 0;
}
.blog_list_style01 .item .info .button::after {
  content: "";
  background-color: var(--main-color);
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 0;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 769px) {
  .blog_list_style01 .item .info .button:hover a {
    opacity: 1;
    color: #fff;
  }
  .blog_list_style01 .item .info .button:hover::after {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .blog_list_style01 .item {
    display: block;
  }
  .blog_list_style01 .item figure {
    margin: 0 auto;
  }
  .blog_list_style01 .item .info {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding-bottom: 0;
  }
  .blog_list_style01 .item .info .button {
    position: relative;
    display: table;
  }
}
.blog_list_style02.colImg .list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.blog_list_style02.colImg p {
  margin-bottom: 5px;
}
.blog_list_style02.colImg p:last-child {
  margin-bottom: 0;
}
.blog_list_style02.colImg figure {
  margin-bottom: 15px;
}
.blog_list_style02.colImg .text p {
  font-size: 1em;
}
.blog_list_style02.colImg .text .ttl {
  font-family: inherit;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  color: #0e7cad;
}
.blog_list_style02.colImg4_blog .item {
  width: 24%;
  margin-right: 1%;
  margin-bottom: 15px;
  position: relative;
}
.blog_list_style02.colImg4_blog .item:nth-child(4) {
  margin-right: 0;
}
.blog_list_style02.colImg4_blog .item a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.blog_list_style02.colImg4_blog .item .img {
  background: url(../images/shared_blog_logo.png) center no-repeat;
  background-size: contain;
  background-color: #fff;
  border: 1px solid #000;
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 15px;
}
.blog_list_style02.colImg4_blog .item .img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.blog_list_style02.colImg4_blog .item .img img {
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 100%;
  max-width: 100%;
}
.blog_list_style02.colImg4_blog .item:hover a {
  opacity: 1;
}
.blog_list_style02.colImg4_blog .item:hover .img img {
  filter: blur(5px) grayscale(50%);
  transform: translate(-50%, -50%) scale(1.15);
}
.blog_list_style02.colImg4_blog figure {
  background-color: #ddd;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1000px) and (min-width: 769px) {
  .blog_list_style02.colImg4_blog .item .img {
    height: 30vw;
  }
}
@media only screen and (max-width: 768px) {
  .blog_list_style01 .item .info .des {
    padding-bottom: 25px;
  }
  .blog_list_style02.colImg4_blog .item .img {
    height: 280px;
  }
  .blog_list_style02.colImg4_blog figure {
    height: 260px;
  }
}
@media only screen and (max-width: 640px) {
  .blog_list_style02.colImg .list {
    justify-content: space-around;
  }
  .blog_list_style02.colImg .item {
    margin-bottom: 15px;
  }
  .blog_list_style02.colImg figure {
    margin-bottom: 5px;
  }
  .blog_list_style02.colImg .text {
    font-size: 14px;
  }
  .blog_list_style02.colImg4_blog .item {
    width: 49%;
  }
  .blog_list_style02.colImg4_blog .item .img {
    height: 48vw;
  }
  .blog_list_style02.colImg4_blog figure {
    height: 48vw;
  }
}
.blog_detail_style02 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 30px;
}
.blog_detail_style02 .box_gallery {
  width: 35%;
  max-width: 400px;
}
.blog_detail_style02 .box_gallery .main_img {
  background: #ededed;
  position: relative;
  height: 400px;
  margin-bottom: 11px;
}
.blog_detail_style02 .box_gallery .main_img .item {
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
.blog_detail_style02 .box_gallery .main_img .item.active {
  opacity: 1;
}
.blog_detail_style02 .box_gallery .main_img .img {
  overflow: hidden;
  margin: 0;
  width: 100%;
  height: 100%;
}
.blog_detail_style02 .box_gallery .main_img .img img {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
}
.blog_detail_style02 .box_gallery .thumb {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.blog_detail_style02 .box_gallery .thumb li {
  background-color: #ededed;
  transition: all 0.2s ease;
  width: calc(12.5% - 4.4px);
  margin-right: 5px;
  margin-bottom: 5px;
  height: 20vw;
  max-height: 40px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-align: center;
}
.blog_detail_style02 .box_gallery .thumb li:nth-child(8n+0) {
  margin-right: 0;
}
.blog_detail_style02 .box_gallery .thumb li:hover {
  opacity: 0.7;
}
.blog_detail_style02 .box_gallery .thumb li img {
  width: auto;
  max-height: 100%;
  max-width: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog_detail_style02 .box_gallery .thumb.col_5 li {
  width: calc(20% - 4px);
  max-height: 77px;
}
.blog_detail_style02 .box_gallery .thumb.col_5 li:nth-child(5) {
  margin-right: 0;
}
.blog_detail_style02 .box_gallery.withSlick .main_img {
  height: auto;
}
.blog_detail_style02 .box_gallery.withSlick .main_img .item {
  height: 400px;
}
.blog_detail_style02 .box_gallery.withSlick .main_img .item:nth-child(n) {
  display: block;
}
.blog_detail_style02 .box_gallery.withSlick .thumb li {
  opacity: 0.5;
}
.blog_detail_style02 .box_gallery.withSlick .thumb li::after {
  content: "";
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  z-index: 1;
}
.blog_detail_style02 .box_gallery.withSlick .thumb li.active {
  opacity: 1;
}
.blog_detail_style02 .box_gallery.withSlick .thumb li.active::after {
  border-color: #ff9933;
}
.blog_detail_style02 .box_gallery.withSlick .thumb li:hover {
  opacity: 1;
}
.blog_detail_style02 .box_gallery.withSlick .controls p {
  display: table;
  cursor: pointer;
}
.blog_detail_style02 .box_gallery.withSlick .controls p:hover {
  text-decoration: underline;
}
.blog_detail_style02 .box_info {
  width: 62%;
  max-width: 710px;
}
.blog_detail_style02 .box_info .intro {
  margin-bottom: 20px;
}
.blog_detail_style02 .box_info table {
  /* &.tbl_style03{
  	th{
  		width: 38%;
  	}
  } */
}
.blog_detail_style02 .box_info table th {
  width: 30%;
  background: #f5f5f5;
  color: var(--main-color);
}
.blog_detail_style02.noGallery .box_info {
  max-width: 100%;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .blog_detail_style02 .box_gallery {
    width: 100%;
    margin: 0 auto 30px;
  }
  .blog_detail_style02 .box_gallery .main_img {
    max-height: 400px;
    height: 100vw;
  }
  .blog_detail_style02 .box_info {
    width: 100%;
    margin: 0 auto;
  }
  .blog_detail_style02 .box_info table th {
    width: 100%;
  }
  .blog_detail_style02 .box_info table.tbl_style03 {
    border-bottom: none;
  }
}
.main_blog_container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main_blog_container .main_blog_content {
  max-width: 100%;
  width: calc(100% - 250px);
}
.main_blog_container .main_blog_content > div {
  padding-top: 0;
}
.main_blog_container .sidebar {
  width: 220px;
}
.main_blog_container .sidebar .txt_head,
.main_blog_container .sidebar .widgettitle {
  background-color: var(--main-color);
  transform: none;
  position: static;
  display: block;
  margin-bottom: 0;
  padding: 15px 10px;
  width: 100%;
  writing-mode: horizontal-tb;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.main_blog_container .sidebar ul:not(.children) {
  background-color: #fff;
  border: 1px solid #ddebf2;
  border-top: 0;
  padding: 0 10px;
}
.main_blog_container .sidebar ul:not(.children) > li {
  border-bottom: 1px solid #959595;
  padding: 12px 10px;
  font-size: 80%;
}
.main_blog_container .sidebar ul:not(.children) > li:last-child {
  border-bottom: 0;
}
.main_blog_container .sidebar ul:not(.children) > li a {
  color: inherit;
  font-size: inherit;
  text-decoration: underline;
}
.main_blog_container .sidebar ul:not(.children) > li a:hover {
  text-decoration: none;
}
.main_blog_container .sidebar ul.children {
  padding: 7px 7px;
}
.main_blog_container .sidebar ul.children li {
  padding-bottom: 5px;
}
.main_blog_container .sidebar ul.children li:last-child {
  padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .main_blog_container .main_blog_content {
    width: auto;
    margin: 0 auto;
  }
  .main_blog_container .sidebar {
    display: none;
  }
}
.blog_post_button {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 100px auto 0;
}
.blog_post_button > div {
  position: relative;
  width: 32%;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 0.9em;
  overflow: hidden;
  /* &.prev, &.next {
  	span {
  		display: block;
  		a {
  			&::after {
  				content: "";
  				background-repeat: no-repeat;
  				background-position: center;
  				background-size: auto 10px;
  				transform: translateY(-50%);
  				position: absolute;
  				top: 50%;
  				width: 15px;
  				height: 15px;
  				text-decoration: none !important;
  			}
  		}
  	}
  }
  &.prev {
  	a {
  		padding-left: 25px;
  		&::after {
  			background-image: url(../images/angle-double-left.svg);
  			left: 7px;
  		}
  	}
  }
  &.next {
  	a {
  		padding-right: 25px;
  		&::after {
  			background-image: url(../images/angle-double-right.svg);
  			right: 7px;
  		}
  	}
  }
  &:hover {
  	&.prev {
  		a {
  			&::after {
  			}
  		}
  	}
  	&.next {
  		a {
  			&::after {
  			}
  		}
  	}
  } */
}
.blog_post_button > div:empty::before, .blog_post_button > div:empty::after {
  display: none;
}
.blog_post_button > div::before, .blog_post_button > div::after {
  content: "";
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blog_post_button > div::before {
  background-color: var(--main-color);
}
.blog_post_button > div::after {
  border: 1px solid var(--main-color);
}
@media screen and (max-width: 768px) {
  .blog_post_button > div a:not(.tel_click):hover, .blog_post_button > div a:not(.tel_click):active {
    opacity: 1;
    color: #fff;
  }
}
.blog_post_button > div a {
  transition: all 0.3s;
  display: block;
  position: relative;
  z-index: 1;
  padding: 11px 10px 10px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  line-height: inherit;
  color: inherit;
  text-align: center;
  text-decoration: none;
}
@media only screen and (min-width: 769px) {
  .blog_post_button > div:hover::before {
    opacity: 0;
    transform: scale(0.8);
  }
  .blog_post_button > div:hover::after {
    opacity: 1;
    transform: scale(1);
  }
  .blog_post_button > div:hover a {
    color: #000;
  }
}

/* END BLOG
------------------------------------------------------------------------*/
/* START Mail
------------------------------------------------------------------------*/
.contact-form-style01 .contact-table {
  background-size: cover;
  width: 100%;
  margin: 0 auto 0px;
  overflow: hidden;
  position: relative;
}
.contact-form-style01 .contact-table textarea {
  min-width: 100%;
}
.contact-form-style01 .contact-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.contact-form-style01 .contact-table input,
.contact-form-style01 .contact-table select,
.contact-form-style01 .contact-table textarea {
  border: 1px solid;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 1rem;
}
.contact-form-style01 .contact-table input {
  width: 100%;
}
.contact-form-style01 .contact-table textarea {
  max-width: 100%;
  width: 100%;
  height: 7em;
}
.contact-form-style01 .contact-table input,
.contact-form-style01 .contact-table textarea {
  transition: all 0.2s ease-in-out;
}
.contact-form-style01 .contact-table input[type=radio],
.contact-form-style01 .contact-table input[type=checkbox] {
  margin: 5px 3px 5px 0px;
  width: auto;
}
.contact-form-style01 .contact-table [readonly*=readonly] {
  background: none;
  border: 0;
  font-weight: bold;
}
.contact-form-style01 .contact-table dl {
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-form-style01 .contact-table dl:last-child dt,
.contact-form-style01 .contact-table dl:last-child dd {
  border-bottom: 0px;
}
.contact-form-style01 .contact-table dt {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 400px;
  padding: 15px 20px;
  font-size: 1.125em;
}
.contact-form-style01 .contact-table dt span {
  display: inline-block;
  border-radius: 7px;
  padding: 2px 7px;
  margin-left: 5px;
  font-size: 70%;
  line-height: 1;
}
.contact-form-style01 .contact-table dd {
  width: calc(100% - 400px);
  padding: 15px 25px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact-form-style01 .contact-table .postal_code {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}
.contact-form-style01 .contact-table .inline span {
  max-width: 75px;
  margin: 0 5px;
  text-align: center;
}
.contact-form-style01 .contact-table .inline input {
  text-align: center;
}
.contact-form-style01 .contact-table .clockpicker input {
  width: 70px;
  text-align: center;
}
.contact-form-style01 .contact-table input:not([type=radio]):not([type=checkbox]):focus, .contact-form-style01 .contact-table textarea:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.contact-form-style01 .confirm-table textarea {
  resize: none;
  width: 100%;
}
.contact-form-style01 .confirm-table input:not([type=radio]):not([type=checkbox]):focus,
.contact-form-style01 .confirm-table textarea:focus {
  color: inherit;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}
.contact-form-style01 .input_btn,
.contact-form-style01 .button.thanks_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 40px auto 0;
}
.contact-form-style01 .input_btn input,
.contact-form-style01 .input_btn a,
.contact-form-style01 .button.thanks_btn input,
.contact-form-style01 .button.thanks_btn a {
  color: inherit;
  text-decoration: none;
  line-height: 1;
}
.contact-form-style01 .input_btn a,
.contact-form-style01 .button.thanks_btn a {
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form-style01 .input_btn input[type=button],
.contact-form-style01 .input_btn input[type=submit],
.contact-form-style01 .button.thanks_btn a {
  width: 200px;
  height: 45px;
  border: none;
  padding: 10px;
  text-align: center;
  font-size: 100%;
  font-weight: normal;
  margin: 0px 10px 10px;
  text-decoration: none;
  cursor: pointer;
}
.contact-form-style01 .input_btn input[type=button]:hover,
.contact-form-style01 .input_btn input[type=submit]:hover,
.contact-form-style01 .button.thanks_btn a:hover {
  opacity: 1;
  background-color: #ccc;
}
.contact-form-style01 .input_btn input[type=button],
.contact-form-style01 .input_btn input[type=submit],
.contact-form-style01 .button.thanks_btn {
  background-color: var(--main-color);
  color: #fff;
  font-family: var(--f-notosans);
}
.contact-form-style01 .contact-table {
  border: 1px solid #ddd;
}
.contact-form-style01 .contact-table input,
.contact-form-style01 .contact-table select,
.contact-form-style01 .contact-table textarea {
  border-color: #ddd;
}
.contact-form-style01 .contact-table dt {
  background-color: var(--main-color);
  border-bottom: 1px solid #ddd;
  color: #fff;
}
.contact-form-style01 .contact-table dt span {
  background-color: #ffffff;
  color: #ff3c7f;
}
.contact-form-style01 .contact-table dd {
  border-bottom: 1px solid #ddd;
}
.contact-form-style01 .wpcf7-not-valid-tip {
  display: block;
  margin: 3px 7px 0;
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  font-size: 80%;
  color: #ff3c7f;
}

.wpcf7-response-output {
  padding-top: 20px;
}

.wpcf7-list-item {
  margin-right: 15px;
}

.wpcf7-list-item-label {
  color: #000;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.captcha_box {
  display: table;
  margin: 50px auto 0;
}

@media only screen and (max-width: 1000px) and (min-width: 769px) {
  .contact-form-style01 .contact-table dt {
    width: 40%;
  }
  .contact-form-style01 .contact-table dd {
    width: 60%;
  }
  .contact-form-style02 {
    padding: 50px 30px 50px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-form-style01 .contact-table {
    border: none;
  }
  .contact-form-style01 .contact-table dl {
    display: block;
  }
  .contact-form-style01 .contact-table dl:last-child dd {
    border-bottom: 1px solid #ddd;
  }
  .contact-form-style01 .contact-table dt {
    border-left: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
  }
  .contact-form-style01 .contact-table dt,
  .contact-form-style01 .contact-table dd {
    width: 100%;
  }
  .contact-form-style01 .contact-table dd {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .contact-form-style01 .contact-table input,
  .contact-form-style01 .contact-table textarea {
    width: 100%;
  }
  .contact-form-style01 .contact-table input[type=checkbox],
  .contact-form-style01 .contact-table input[type=radio] {
    width: auto;
  }
  .contact-form-style01 .wpcf7-list-item {
    display: block;
  }
  .contact-form-style02 {
    padding: 40px 30px 40px;
  }
  .contact-form-style02 .contact-table input,
  .contact-form-style02 .contact-table textarea {
    padding-bottom: 20px;
    text-align: center;
  }
  .contact-form-style02 .contact-table dl {
    width: 100%;
  }
  .contact-form-style02 .contact-table dl dt {
    width: 100%;
    text-align: center;
  }
  .contact-form-style02 .contact-table dl:not(.full) dt {
    bottom: 20px;
  }
  .contact-form-style02 .contact-table dl:not(.full).non-empty dt, .contact-form-style02 .contact-table dl:not(.full).focus dt {
    font-size: 0.9em;
  }
  .contact-form-style02 .wpcf7-not-valid-tip {
    text-align: center;
  }
}
/* END Mail*/
/*INTERVIEW PAGE*/
.under {
  counter-reset: count;
}
.under.page-interview .key {
  max-height: 770px;
  height: 50vw;
}
.under.page-interview .key .key_text {
  padding-top: 4.6%;
  padding-right: 10%;
  justify-content: flex-end;
}
.under.page-interview .key .inner {
  max-width: 1280px;
}
.under.page-interview .key h2,
.under.page-interview .key p {
  display: table;
  color: #fff;
  letter-spacing: 0.1em;
}
.under.page-interview .key .catch {
  min-width: 50em;
  font-size: 10px;
}
.under.page-interview .key .idx_en {
  margin-bottom: 0.49em;
  font-size: 8em;
  line-height: 1;
  font-weight: 500;
}
.under.page-interview .key h2 {
  margin-bottom: 0.1em;
  font-size: 2.4em;
}
.under.page-interview .key .name {
  display: inline-flex;
  position: relative;
  margin-bottom: 0.75em;
  padding-bottom: 0.62em;
  padding-right: 0.66em;
  align-items: center;
  font-size: 3.6em;
  font-weight: 500;
  line-height: 1.5;
  font-family: var(--f-jp);
}
.under.page-interview .key .name::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
  height: 0px;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #fff;
}
.under.page-interview .key .name .en {
  margin-left: 0.8em;
  font-size: 0.5em;
  letter-spacing: 0.1em;
}
.under.page-interview .key .sub {
  font-weight: 500;
  line-height: 2.1153;
  letter-spacing: 0.08em;
  font-size: 2.6em;
  font-family: var(--f-zen-antique);
}
.under.page-interview #mainContent .inner {
  max-width: 1280px;
}

.interview_catch {
  --main-color: #50b9d0;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid var(--main-color);
  box-shadow: 0px 0px 20px 0px rgba(36, 33, 29, 0.15);
}
.interview_catch p {
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
  color: var(--main-color);
  padding: 40px 10px;
}
.interview_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 80px;
}
.interview_box.box_left .interview_content {
  margin-left: 80px;
}
.interview_box.box_right {
  flex-direction: row-reverse;
}
.interview_box.box_right .interview_content {
  margin-right: 80px;
}
.interview_img {
  position: relative;
  width: 51%;
}
.interview_img:before {
  content: "0" counter(count);
  counter-increment: count;
  position: absolute;
  bottom: 0.2em;
  left: 40px;
  line-height: 0.5;
  font-size: 120px;
  color: #fff;
}
.interview_content {
  max-width: 464px;
  width: calc(49% - 80px);
}
@media only screen and (max-width: 1280px) and (min-width: 769px) {
  .under.page-short-interview .key .key_text, .under.page-interview .key .key_text {
    padding-left: 40px;
  }
  .under.page-short-interview .key h2, .under.page-interview .key h2 {
    margin-bottom: 35px;
  }
  .under.page-short-interview .key h2 .en, .under.page-interview .key h2 .en {
    font-size: 55px;
  }
  .under.page-short-interview .key h2 .jp, .under.page-interview .key h2 .jp {
    font-size: 22px;
  }
  .under.page-short-interview .key p, .under.page-interview .key p {
    font-size: 26px;
  }
  .under.page-short-interview .key .interview_name .name_txt, .under.page-interview .key .interview_name .name_txt {
    font-size: 22px;
  }
  .under.page-short-interview .key .interview_name .name_jp, .under.page-interview .key .interview_name .name_jp {
    font-size: 28px;
  }
  .under.page-short-interview .key .interview_name .name_en, .under.page-interview .key .interview_name .name_en {
    font-size: 14px;
  }
  .under.page-interview .key h2 .en {
    font-size: 65px;
  }
  .interview_box.box_left .interview_content {
    margin-left: 40px;
  }
  .interview_box.box_right {
    flex-direction: row-reverse;
  }
  .interview_box.box_right .interview_content {
    margin-right: 40px;
  }
  .interview_content {
    width: calc(49% - 40px);
  }
  .interview_content h4 {
    font-size: 28px;
  }
  .interview_img:before {
    font-size: 90px;
  }
  .interview_img img {
    border-radius: 20px;
  }
}
/*---------add post---------*/
.box_hp_mainvisual {
  background: #fff;
  text-align: center;
  color: #292929;
  padding: 50px 50px;
  position: absolute;
  right: 60px;
  bottom: 110px;
}

.communication .box_hp_mainvisual {
  padding: 50px 20px;
}

.main_txt {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3em;
}

.main_txt_h {
  font-size: 35px;
}

.box_hb_stt {
  background: #FA8F20;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  font-weight: bold;
  height: 130px;
  width: 130px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-60%, 50%);
  -ms-transform: translate(-60%, 50%);
  transform: translate(-60%, 50%);
  margin-bottom: 0;
}

.main_hp_box .inner {
  position: relative;
  height: 100%;
}

.under #main.lexpage {
  padding: 0 0;
}

.archive_single_list_exlp .boxmain_tab a:last-child {
  border-bottom: 1px solid #dedede;
}

.lexpage .archive_single_list_exlp .list_post {
  margin-bottom: 40px;
}

.ttl_lp01 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  position: relative;
  margin-bottom: 1.7em;
}

.ttl_lp01_s02 {
  padding-bottom: 0.85em;
}

.ttl_lp01_s02:before {
  content: "";
  width: 110px;
  height: 3px;
  background: #1c1c1c;
  position: absolute;
  bottom: 0;
  left: calc(50% - 55px);
}

.ttl_lp01 .sp_onl {
  display: none;
}

.ttl_lp01 strong {
  font-size: 140%;
}

.lpbox {
  padding: 55px 0;
}

.lpbox01 {
  background: #E9F3F5;
}

.lpbox02 {
  background: #FAF8EF;
}

.lpbox04 {
  padding-top: 10px;
}

.blog-content .entry > h4 {
  margin-top: 60px;
}

.blog-content .entry > h5 {
  margin-top: 50px;
}

.blog-content .entry .colImg1 img, .img_wcap_ct img {
  border-radius: 10px;
  max-height: 500px;
}

.blog-content .entry .list01 {
  margin-top: 30px;
}

ul.list-tab01 {
  padding: 0px;
  list-style: none;
  display: none;
  max-width: 800px;
  margin: 0 auto 30px;
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

ul.list-tab01 li {
  width: calc((100% - 20px) / 3);
  background: #B7B7B7;
  color: #fff;
  display: inline-block;
  padding: 10px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none;
  -webkit-box-shadow: inset 0px -4px 0px 0px #7F7F7F;
  -moz-box-shadow: inset 0px -4px 0px 0px #7F7F7F;
  box-shadow: inset 0px -4px 0px 0px #7F7F7F;
  margin: 0 10px 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

ul.list-tab01 li.current {
  background: #9FBC8D;
  -webkit-box-shadow: inset 0px -4px 0px 0px #386934;
  -moz-box-shadow: inset 0px -4px 0px 0px #386934;
  box-shadow: inset 0px -4px 0px 0px #386934;
}

ul.list-tab01 li:nth-child(3n+3) {
  margin-right: 0;
}

.list_bxex_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.list_bxex02_col {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 5px;
  position: relative;
}

.list_bxex02_col:nth-child(3n+3) {
  margin-right: 0;
}

.list_bxex02_col:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #9FBC8D;
  border-right: 20px solid transparent;
  position: absolute;
  left: 3px;
  top: 3px;
}

.list_bxex02_ttl {
  font-size: 30px;
  font-weight: bold;
  padding-top: 20px;
  position: relative;
  margin-bottom: 35px;
  text-align: center;
}

.list_bxex02_ttl:before {
  content: "";
  background: #9FBC8D;
  width: 60px;
  height: 3px;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -10px;
}

.list_bxex02_col.list_bxex02_cl01:before {
  border-top: 10px solid #9FBC8D;
  border-right: 10px solid transparent;
}

.list_bxex02_cl01 .list_bxex02_ttl:before {
  background: #9FBC8D;
}

.list_bxex02_ttl.list_bxex02_ttl_01 {
  font-size: 20px;
  line-height: 24px;
}

.box_sub01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 20px;
}

.list_bxex02_btn {
  margin-bottom: 0;
}

.list_bxex02_btn a {
  background-size: 15px auto;
  color: #fff;
  display: inline-block;
  padding: 3px 35px 3px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.list_bxex02_btn a:hover {
  background-position: right 5px center;
  opacity: 0.8;
}

.list_bxex02_ttl_sub {
  font-size: 18px;
  color: #333333;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0;
}

.list_bxex02_des_ttl {
  font-size: 16px;
  color: #333333;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.list_bxex02_des {
  font-weight: 500;
  color: #333333;
  margin-bottom: 10px;
}

.list_bxex02_pd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.list_bxex_02 li {
  background: #F9F9F9;
  padding: 10px 1px 10px 1px;
  width: calc((100% - 21px) / 3);
  margin: 0 10px 10px 0;
  text-align: center;
}

.list_bxex_02 li:nth-child(3n+3) {
  margin-right: 0;
}

.list_bxex_02 li.list2r img {
  margin-bottom: 5px;
}

.list_bxex_02 li img {
  display: block;
  margin: 0 auto 8px;
}

.list_bxex_02 li span {
  font-size: 11px;
  line-height: 14px;
  display: block;
}

.under_post {
  font-size: 17px;
}

.center_img {
  margin: 0 auto 1.5em;
  text-align: center;
}

.inbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.tag_cate {
  border: 1px solid #E5127C;
  color: #E5127C;
  font-size: 12px;
  font-weight: bold;
  margin-right: 8px;
  line-height: 20px;
  padding: 0 12px;
}

.post_date {
  font-size: 16px;
  font-weight: bold;
}

.img_wcap_ct {
  margin: 40px auto 40px;
  text-align: center;
}

.box_center {
  max-width: 760px;
  margin: 0 auto 40px;
}

p:empty {
  display: none;
}

.note01 {
  margin-bottom: 30px;
}

.note01 {
  position: relative;
  padding-left: 20px;
  line-height: 1.6em;
  margin-bottom: 10px;
}

.note01:before {
  content: "※";
  z-index: 4;
  position: absolute;
  top: 0px;
  left: 0;
}

.note01.note_c {
  color: #D90029;
}

.note01.note_c:before {
  color: #D90029;
}

.box_ctwimg {
  clear: both;
  margin-bottom: 40px;
}

.box_ctwimg p:last-child {
  margin-bottom: 0;
}

.img_r {
  max-width: 420px;
  float: right;
  margin: 0 0 20px 40px;
}

.img_l {
  max-width: 420px;
  float: left;
  margin: 0 40px 20px 0;
}

.catption_txt {
  padding-top: 10px;
  color: #8E8E8E;
  font-size: 15px;
  display: block;
  letter-spacing: -0.05em;
}

.box_lig01 {
  margin-top: 40px;
  position: relative;
  padding: 40px;
  background: #e3edf7;
  margin-bottom: 40px;
}

.box_lig01 p:last-child {
  margin-bottom: 0;
}

.box_lig02 {
  margin-top: 40px;
  position: relative;
  padding: 40px;
  background: #F7F7F7;
  margin-bottom: 40px;
}

.box_lig02 p:last-child {
  margin-bottom: 0;
}

.maint0 {
  margin-top: 0;
}

blockquote p,
blockquote li,
blockquote dt,
blockquote dd,
blockquote a {
  font-size: 16px;
}

blockquote {
  position: relative;
  padding: 25px 30px 25px 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #F7F7F7;
  margin-bottom: 40px;
  border-left: 2px solid #E5127C;
  /*     -webkit-box-shadow: 3px 3px 5px 6px #ccc; 
    -moz-box-shadow:    3px 3px 5px 6px #ccc;   */
  -webkit-box-shadow: 1px 2px 2px 0px #e0e0e0;
  box-shadow: 1px 2px 2px 0px #e0e0e0;
}

blockquote:before {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 2;
  background-size: 40px;
  width: 50px;
  height: 50px;
  content: "";
}

blockquote p {
  position: relative;
  padding: 0;
  margin: 10px 0;
  z-index: 3;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

@media screen and (max-width: 960px) {
  .img_l {
    max-width: 300px;
    margin: 0 20px 15px 0;
  }
  .img_r {
    max-width: 300px;
    margin: 0 0px 15px 20px;
  }
}
/*---------add post sp---------*/
@media screen and (max-width: 768px) {
  .img_wcap_ct {
    margin-bottom: 30px;
    width: auto !important;
  }
  .blog-content .entry > h4 {
    margin-top: 40px;
  }
  .blog-content .entry > h5 {
    margin-top: 30px;
  }
  .under .blog-content .entry .colImg1 img, .under .img_wcap_ct img {
    max-width: 100%;
  }
  .box_lig01, .box_lig02 {
    padding: 20px;
    margin-top: 30px;
  }
  .inbl {
    margin-bottom: 40px;
  }
  .box_lig01,
  .box_lig02 {
    padding: 20px;
  }
  .under_post table th {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .img_l,
  .img_r {
    float: none;
    max-width: 100%;
    margin: 0 0px 20px 0;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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