@charset "utf-8";
/* CSS Document */

:root {
  --text-color: #333;
  /*メイン色*/
  --main-color: #346b6a;
  /*サブ色*/
  --sub-color: #665133;
  /*サイドメニュー・レイアウト類の背景色*/
  --bg-color: #faf9f7;
  /*境界線色*/
  --border-color: #c5c5c5;

  /* web font */
  --shi:"shippori-mincho", serif;
  --cor:"cormorant", serif;
  --gar:"garamond-premier-pro-display", serif;
}

*,
::before,
::after {
  /* outline: 1px solid red; */
  box-sizing: border-box;
}

body,
.nav_wrap,
.pc-nav.fixed,
.mega_menu,
#mainvisual,
header,
footer {
  min-width: 1320px;
}

@media (min-width: 641px) and (max-width: 1024px) {
  body,
  .nav_wrap,
  .pc-nav.fixed,
  .mega_menu,
  #mainvisual,
  header,
  footer {
    min-width: 1300px;
  }
  .flex_trouble_wrap{
    padding: 0 2.5%!important;
  }
}
@media screen and (max-width: 640px) {
  body,
  .nav_wrap,
  .pc-nav.fixed,
  .mega_menu,
  #mainvisual,
  header,
  footer {
    min-width: 100%;
  }
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}

@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
  }

  /* ナビ展開時スクロール禁止処理 */
  body.nav-open {
    overflow: hidden !important;
  }
}

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

iframe {
  max-width: 100%;
  vertical-align: top;
}

a {
  color: var(--main-color);
  text-decoration: none;
}
a:hover {
  color: var(--sub-color);
}
a[href="#"]{
  pointer-events: none;
}

/*tel*/
[href^="tel"]:hover {
  cursor: default;
}
a[href="tel:準備中"] {
  pointer-events: none;
} 

::selection {
  color: #fff;
  background-color: var(--sub-color);
}
::-moz-selection {
  color: #fff;
  background-color: var(--sub-color);
}

@media print{
  html {
    -webkit-print-color-adjust: exact;
  }
  body {
    zoom: 80%;
  }
  .fixed {
    position: inherit !important;
  }
}

/* 画像のにじみ（大きい画像を小さく表示した時等）対策 */
.visibility {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
}

/*============================================================================

  header

============================================================================*/
header {
  display: flex;
  width: 100%;
  height: 100px;/* navのtopと同じ値にする */
}
@media screen and (max-width: 640px) {
  header {
    display: none;
  }
}

.header_inner {
  position: relative;
  width: 100%;
  height: inherit;
  margin: auto;
  padding-top: 40px;
}

/* ロゴ */
.header_logo {
  position: absolute;
  top: 20px;
  left: 140px;
  z-index: 11;
  width: 600px;
  height: 66px;
}
.header_logo img {
  width: 414px;
  height: 66px;
}
.header_logo a{
  display: flex;
  justify-content: space-between;
}
.header_logo a p{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-family: var(--shi);
  font-weight: 500;
  line-height: 1.375;
  background: var(--main-color);
  min-width: 160px;
  border-radius: 5px;
}
.fixed_web_yoyaku_btn {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 11;
  width: 450px;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(100%); /* 下に隠す */
  pointer-events: none; 
  transition: opacity 0.5s ease, transform 0.5s ease; /* フェード & スライド */
}

.header_link{
  position: relative;
  top: 1px;
  margin: 0 1px 0 auto;
}
.header_link a{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 210px;
  color: #fff;
  font-size: 17px;
  font-family: var(--shi);
  font-weight: 500;
  border-radius: 5px;
  min-height: 48.5px;
  transition: background 0.2s ease;
}
.header_link a span{
  display: inline-block;
  line-height: 1;
  margin-right: 10px;
}
.header_link a:nth-of-type(1){
  background: #d89c4e;
  margin-bottom: 1px;
}
.header_link a:nth-of-type(1):hover{
  background: #827150;
}
.header_link a:nth-of-type(2){
  background: #5b8e5f;
}
.header_link a:nth-of-type(2):hover{
  background: var(--main-color);
}
.fixed_web_yoyaku_btn.is-visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻る */
  pointer-events: auto;
}

.fixed_web_yoyaku_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d89c4e;
  color: #fff;
  width: 220px;
  padding: 20px 10px;
  letter-spacing: 4px;
  font-size: 1.2em;
  font-family: var(--shi);
  font-weight: 500;
  line-height: 1;
  border-radius: 10px;
}
.fixed_web_yoyaku_btn a:last-of-type{
  background: #5b8e5f;
}
.fixed_web_yoyaku_btn a span{
  margin-right: 5px;
}
.fixed_web_yoyaku_btn a span img{
  width: auto;
  height: 19px;
}
@media (hover: hover) {
  .fixed_web_yoyaku_btn a {
    transition: 0.2s ease;
  }

  .fixed_web_yoyaku_btn a:hover {
    background: #827150;
  }
  .fixed_web_yoyaku_btn a:last-of-type:hover{
    background: var(--main-color);
  }
}

.fixed_web_yoyaku_btn a i {
  margin-bottom: 5px;
}

.fixed_web_yoyaku_btn a.sns {
  padding: 20px 10px;
  font-weight: 500;
  font-size: 24px;
}

.fixed_web_yoyaku_btn a.sns i {
  letter-spacing: 0;
  margin-bottom: 0;
}

/*============================================================================

  nav

============================================================================*/
.nav_wrap {
  line-height: 1.6;
}

@media print, screen and (min-width: 641px) {
  /* 追従するMV下ナビ */
  .nav_position{
    height: 100px;
  }
  .pc-nav ul{
    max-width: 1640px;
    width: 85.4%;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pc-nav ul li{
    position: relative;
    text-align: center;
    margin: 0 30px;
  }
  .pc-nav ul li.divider{
    pointer-events: none;
    margin: 0;
  }
  .pc-nav ul li.divider img{
    vertical-align: middle;
  }
  .pc-nav ul li a{
    display: block;
    color: #555;
    font-size: clamp(14px, 0.88vw, 17px);
    font-family: var(--shi);
    font-weight: 500;
    line-height: 1.53;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
    white-space: nowrap;
  }
  .pc-nav ul li a span{
    display: inline-block;
  }
  .pc-nav ul li a:hover{
    color: var(--main-color);
  }
  .pc-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    background: rgb(255 255 255 / 0.8);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
  .pc-nav.fixed ul {
    width: 100%;
  }

  /* 全画面展開する右上ボタン固定のナビ */
  
  .nav_inner{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    opacity: 0;
    visibility:hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s ease;
  }
  .nav-open{
    overflow: hidden;
  }
  .nav-open .nav_inner{
    z-index: 99;
    opacity: 1;
    visibility: visible;
  }
  .nav_wrap .menu_list_wrap{
    overflow-y: scroll;
    order: 2;
    width: 50%;
    background: #fff;
  }
  .nav_wrap .nav_cover_img{
    width: 50%;
    overflow: hidden;
  }
  .nav_wrap .nav_cover_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .menu_list_wrap nav{
    padding: 100px 30px 50px;
  }
  .menu_list_wrap nav li a{
    color: var(--sub-color);
    font-size: 17px;
    font-family: var(--shi);
    font-weight: 500;
    letter-spacing: 0.1em;
    display: block;
    padding: 20px 10px;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s ease;
  }
  .menu_list_wrap nav li a:hover{
    color: var(--main-color);
  }

  .menu_btn_list{
    display: flex;
    padding: 0 30px 50px;
    gap: 0 20px;
  }
  .menu_btn_list .btn{
    width: calc(50% - 10px);
  }
  .menu_btn_list .btn a{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-family: var(--shi);
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 5px;
    padding: 15px 0;
    transition: background 0.2s ease;
  }
  .menu_btn_list .btn_official a{
    background: #d89c4e;
  }
  .menu_btn_list .btn_reserve a{
    background: #5b8e5f;
  }
  .menu_btn_list .btn_official a:hover{
    background: #827150;
  }
  .menu_btn_list .btn_reserve a:hover{
    background: var(--main-color);
  }
  /* メニューボタン */
  .btn_menu {
    cursor: pointer;
    position: relative;
    margin: 0 0 0 auto;
    z-index: 100;
    min-width: 100px;
    height: 100px;
    color: #fff;
    background: #4a4a4a;
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: opacity 0.2s ease;
  }
  .btn_menu:hover{
    opacity: 0.8;
  }
  .btn_menu i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 27px;
    margin: auto;
    font-style: normal;
    font-size: 15px;
    font-family: var(--gar);
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: bottom 0.2s ease;
  }
  .btn_menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 50px;
    height: 1px;
    background: #fff;
    transition: all 0.6s cubic-bezier(.19, 1, .22, 1);
    opacity: 1;
  }
  .btn_menu span:nth-of-type(1) {
    top: 37px;
  }
  .btn_menu span:nth-of-type(2) {
    display: none;
  }
  .btn_menu span:nth-of-type(3) {
    top: 47px;
  }

  /* 押下時 */
  .btn_menu.active i{
    bottom: 10px;
  }
  .btn_menu.active span:nth-of-type(1) {
    top: 40px;
    transform: rotate(225deg);
  }

  .btn_menu.active span:nth-of-type(3) {
    top: 40px;
    transform: rotate(-225deg);
  }
}

@media (min-width: 641px) and (max-width: 1380px){
  .pc-nav ul li{
    margin: 0 15px;
  }
}

@media screen and (max-width: 640px) {
  .nav_position,.pc-nav{
    display: none;
  }
  .nav_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
  }
  .nav_wrap .sp_logo {
    width: calc(100% - 55px);
  }
  .nav_wrap .sp_logo a {
    display: flex;
    align-items: center;
    gap: 0 5px;
    justify-content: center;
    width: 100%;
    height: 55px;
    padding: 5px;
  }
  .nav_wrap .sp_logo a p{
    color: #fff;
    font-family: var(--shi);
    font-weight: 500;
    font-size: 8px;
    background: var(--main-color);
    padding: 3px 0;
    line-height: 1.3;
    margin-top: 2px;
    text-align: center;
    letter-spacing: 0;
    min-width: 80px;
    border-radius: 5px;
  }
  .nav_wrap .sp_logo img {
    width: calc(100% - 85px);
    height: auto;
    max-height: 45px;
  }

  /* ------- ハンバーガーボタン ------- */
  .btn_menu {
    position: relative;
    right: 0;
    color: #fff;
    width: 55px;
    background: var(--main-color);
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
  }
  .btn_menu i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    font-style: normal;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .btn_menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    transition: all 0.6s cubic-bezier(.19, 1, .22, 1);
    opacity: 1;
  }
  .btn_menu span:nth-of-type(1) {
    top: 10px;
  }
  .btn_menu span:nth-of-type(2) {
    top: 20px;
  }
  .btn_menu span:nth-of-type(3) {
    top: 30px;
  }

  /* 押下時 */
  .btn_menu.active {
    right: 16.25rem;
  }

  .btn_menu.active span:nth-of-type(1) {
    top: 20px;
    transform: rotate(225deg);
  }

  .btn_menu.active span:nth-of-type(2) {
    opacity: 0;
  }

  .btn_menu.active span:nth-of-type(3) {
    top: 20px;
    transform: rotate(-225deg);
  }

  /* ------- スライドメニュー ------- */
  .menu_list_wrap {
    width: 16.25rem;
    height: 100%;
    transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
    background: var(--main-color);
    padding: 15px;
    position: fixed;
    top: 0;
    right: -16.25rem;
    z-index: 2;
    overflow: hidden;
  }
  /* 展開時 */
  body.nav-open .menu_list_wrap {
    overflow-y: scroll;
    overscroll-behavior-y: none;
    right: 0;
  }

  .menu_list_wrap,
  .menu_list_wrap a {
    color: #fff;
  }
  .menu_list_wrap a {
    display: block;
  }
  .nav_menu > li {
    border-bottom: 1px solid #fff;
  }
  .nav_menu > li:first-child {
    border-top: 1px solid #fff;
  }
  .nav_menu .nav_menu_tit,
  .nav_menu .parent_menu {
    padding: 15px 10px;
  }
  .nav_menu .nav_menu_en {
    display: none!important;
  }

  /* ------- 下層のあるメニュー ------- */
  .nav_menu .child_menu {
    padding-left: 15px;
    padding-bottom: 10px;
  }
  .nav_menu .child_menu a {
    padding: 5px 10px 5px 1.2em;
    text-indent: -1.2em;
  }
  .nav_menu .child_menu a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
  }

  /* アコーディオンやメガでない時に、展開中に含まれる扉ページのリンクを非表示 */
  .nav_menu .nav_slidebtm:not(.is_accord,.is_mega) .child_menu a.sp:first-of-type {
    display: none!important;
  }

  /* アコーディオン&メガメニュー */
  .nav_slidebtm.is_accord,
  .nav_slidebtm.is_mega {
    cursor: pointer;
  }
  .nav_slidebtm.is_accord .parent_menu,
  .nav_slidebtm.is_mega .parent_menu {
    position: relative;
  }
  .nav_slidebtm:not(.is_accord,.is_mega) .parent_menu:not(.nav_menu_tit) {
    display: none;
  }
  .nav_slidebtm.is_accord .parent_menu::before,
  .nav_slidebtm.is_mega .parent_menu::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f067";
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    border: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .nav_slidebtm.is_accord > a.nav_menu_tit,
  .nav_slidebtm.is_mega > a.nav_menu_tit {
    display: none;
  }
  .nav_slidebtm.is_accord .child_menu,
  .nav_slidebtm.is_mega .child_menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: height 0.5s cubic-bezier(.19, 1, .22, 1);
  }

  /* アコーディオン&メガメニュー展開時 */
  .nav_slidebtm.is_accord.active .parent_menu::before,
  .nav_slidebtm.is_mega.active .parent_menu::before {
    content: "\f068";
  }
  .nav_slidebtm.is_accord.active .child_menu,
  .nav_slidebtm.is_mega.active .child_menu {
    opacity: 1;
    visibility: visible;
  }

  /* ------- メガメニュー ------- */
  .mega_menu_inner > *:not(:last-child) {
    margin-bottom: 20px;
  }
  .menu_btn_list{
    margin-top: 10px;
  }
  .menu_btn_list .btn a{
    color: var(--main-color);
    background: #fff;
    padding: 15px;
    border-radius: 10px;
  }
  .menu_btn_list .btn:first-of-type{
    margin-bottom: 10px;
  }

  /* ヘッダー固定ボタンエリア */
  .btn_area {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .btn_area ul {
    display: flex;
    background: #fff;
    padding: 5px 2.5px;
  }

  .btn_area li.btn {
    width: 100%;
    margin: 0 2.5px;
  }

  .btn_area li.btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-family: var(--shi);
    font-weight: 500;
    padding: 15px 2%;
    border-radius: 5px;
  }

  .btn_area li.btn a i {
    width: 15px;
    margin-right: 3px;
  }

  .btn_area li.btn_tel a {
    color: var(--sub-color);
    background: url(../images/bg_tex02.jpg);
  }
  .btn_area li.btn_tel a:not([href="tel:準備中"]) i{
    color: var(--main-color);
    display: block;
  }
  .btn_area li.btn_yoyaku a {
    background: #5b8e5f;
  }

  .btn_area li.btn_monshin a {
    background: #00A3BB;
  }

  .btn_area li.btn_access a {
    background: #d89c4e;
  }

  /* 準備中用のクラス */
  .btn_area li.btn.coming a {
    color: #fff;
    background: #aaa !important;
  }

  .btn_area li.btn.coming a {
    pointer-events: none;
    padding: 2px 2% 18px;
  }

  .btn_area li.btn.coming a::before {
    content: "（準備中）";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
  }

  .btn_area li.btn a[href="tel:準備中"] {
    color: #fff;
    pointer-events: none;
    padding: 2px 2% 18px;
    background: #aaa;
  }
  .btn_area li.btn a[href="tel:準備中"]::after {
    content: "（準備中）";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
  }

  /* ナビ展開時の後ろの背景 */
  .nav_overlay {
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.2);
  }
  body.nav-open .nav_overlay {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/*============================================================================

  mainvisual

============================================================================*/
.top_mainvisual{
  display:block;
  position:relative;
  height: 800px;
}
.mainvisual_wrap{
  height: 800px;
}
.top_mainvisual .inner{
  height: inherit;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* キャッチフレーズ */
.mainvisual_catch{
  position:absolute;
  text-align: center;
  top: 305px;
  left: 0;
  right: 0;
  margin: auto;
  filter: drop-shadow(0 0 15px rgba(13, 72, 71, 0.5)) drop-shadow(0 0 15px rgba(13, 72, 71, 0.5)) drop-shadow(0 0 15px rgba(13, 72, 71, 0.5));
  color: #fff;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.mainvisual_catch p{
  display:block;
  font-size: 45px;
}
.mainvisual_catch span{
  margin-top: 10px;
  position: relative;
  display:block;
  font-size: 19px;
  line-height: 2.105;
}
.mainvisual_open{
  position:absolute;
  bottom: 30px;
  right: 0;
  width:250px;
}
.mainvisual_open img{
  width:100%;
}

/* メインスライド */
#slick_fade{
  width: 100%;
  height: 800px;
}
#slick_fade .slide_item img{
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 640px) {
  /* ------- 共通 ------- */
  #mainvisual {
    position: relative;
    margin-top: 55px;
  }

  .top_mainvisual{
    height:450px;
  }

  .mainvisual_wrap{
    height: 450px;
  }

  .top_mainvisual .inner {
    width: auto;
    z-index: 2;
  }

  /* トップページキャッチフレーズ */
  .mainvisual_catch {
    position: absolute;
    /*top: 36%;*/
	top: 18%;
    padding: 0 10px;
  }
  .mainvisual_catch h2 {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .mainvisual_catch p {
    font-size: 16px;
  }
  .mainvisual_catch span{
    font-size: 11px;
  }
  .mainvisual_open{
    right: 10px;
    bottom: 10px;
    width: 150px;
  }

  /* メインスライド */
  #slick_fade{
    height: 450px;
  }
  #slick_fade .slide_item img{
    height: 450px;
  }
}

/*==================================================================

  contents

==================================================================*/
main {
  display: block;
}

/*==================================================================

  $box

==================================================================*/

.inner {
  margin-inline: auto;
}

.top_inner{
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .box:not(:last-child) {
    margin-bottom: 80px;
  }

  .inner {
    max-width: none;
    padding-inline: 5%;
    margin-inline: 0;
  }

  .top_inner{
    max-width: 95%;
  }
}

/*==================================================================

  診療時間表

==================================================================*/
.office_hour .title {
  width: 100%;
  margin: 0 0 10px;
  padding: 10px;
  background: var(--bg-color);
  font-weight: bold;
  text-align: center;
}
.office_hour table {
  width: 100%;
  border-spacing: 0;
}
.office_hour th, .office_hour td {
  padding: 25px 10px 15px;
  background: none;
  border: none;
  border-bottom: 1px solid #ffffff;
}
.office_hour th {
  width: 30%;
  font-size: 24px;
  line-height: 1.65;
  text-align: center;
  font-family: var(--gar);
  font-style: normal;
  font-weight: 400;
}
.office_hour th span {
  display: block;
  width: fit-content;
  min-width: 140px;
  margin: 0 auto;
  padding: 4px 8px 2px 12px;
  background: var(--bg-color);
  border-radius: 300px;
  font-family: var(--shi);
  font-style: normal;
  font-weight: 500;
  color: var(--main-color);
  font-size: 14px;
}
.office_hour td {
  font-size: 20px;
  text-align: center;
}
.office_hour tr:first-child :is(td, th) {
  padding: 11px 10px 12px;
  font-family: var(--shi);
  font-style: normal;
  font-weight: 400;
  border-top: 1px solid #ffffff;
  font-size: 20px;
}
.office_hour .green {
  background: #346839;
  color: #ffffff;
}
.office_hour .lightgreen {
  background: #5c785e;
  color: #ffffff;
}
.office_hour .lightbrown {
  background: #827150;
  color: #ffffff;
}
.office_hour .star {
  color: #c1bd46;
}
.office_hour .note {
  margin-top: 30px;
  padding-left: 30px;
  font-family: var(--shi);
  font-style: normal;
  font-weight: 400;
}
.office_hour .note_top {
  display: flex;
  gap: 40px;
}
.office_hour .closed_wrapper {
  display: flex;
}
.office_hour .note_under {
  display: flex;
  margin-top: 15px;
}
.office_hour .closed_title, .office_hour .note_title {
  font-family: var(--shi);
  font-style: normal;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  margin-right: 20px;
  padding: 8px 18px 7px 22px;
  background: #e8efe8;
  border-radius: 7px;
  color: var(--main-color);
  font-size: 15px;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .office_hour:not(:first-child) {
    margin-top: 20px;
  }
  .office_hour th, .office_hour td {
    padding: 13px 5px 10px !important;
  }
  .office_hour th {
    width: 35%;
    font-size: 18px;
  }
  .office_hour th span {
    width: 100%;
    min-width: auto;
    margin: 0 auto 2px;
    padding: 4px 8px 2px 11px;
    font-size: 11px;
  }
  .office_hour td {
    font-size: 15px;
  }
  .office_hour tr:first-child :is(td, th) {
    font-size: 14px;
  }
  .office_hour .note {
    margin-top: 20px;
    padding: 0 10px;
  }
  .office_hour .note_top {
    display: flex;
    flex-flow: column;
    gap: 0px;
  }
  .office_hour .closed_wrapper {
    display: flex;
    flex-flow: column;
  }
  .office_hour .note_under {
    flex-flow: column;
    margin-top: 20px;
  }
  .office_hour .closed_title, .office_hour .note_title {
    width: 100%;
    margin: 0 auto 10px;
    padding: 12px 20px 10px;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1;
  }
}
/*============================================================================

  footer

============================================================================*/
footer {
  position: relative;
  width: 100%;
}
.footer_bg_wrap{
  background: url(../images/bg_footer.jpg) no-repeat center top / cover;
}

.footer_bnr_wrap{
  padding: 60px 0 0;
  display: flex;
  gap: 0 20px;
  justify-content: center;
}
.footer_bnr_wrap .bnr{
  background: #fff;
  border-radius: 10px;
}
.footer_bnr_wrap .bnr a{
  text-align: center;
  position: relative;
  display: block;
  color: #fff;
  font-size: 17px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 25px 25px 25px 20px;
  min-width: 350px;
  border-radius: 10px;
  background-blend-mode: multiply;
  border: 1px solid #fff;
  transition: opacity 0.2s ease;
}
.footer_bnr_wrap .bnr a::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 10px;
  height: 8px;
  background: url(../images/icon_arrow.svg) no-repeat center / cover;
  filter: brightness(0) invert(1);
  transition: right 0.2s ease;
}
.footer_bnr_wrap .bnr_official a{
  background: #827150 url(../images/acce_price.jpg) no-repeat center / cover;
}
.footer_bnr_wrap .bnr_lp a{
  background: #5b8e5f url(../images/bg_contact01.jpg) no-repeat center / cover;
}

@media (hover: hover){
  .footer_bnr_wrap .bnr a:hover{
    opacity: 0.8;
  }
  .footer_bnr_wrap .bnr a:hover::after{
    right: 5px;
  }
}

/* フッターの医院概要 */
.footer_info{
  padding: 60px 50px 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 96px;
  max-width: 1500px;
  width: 100%;
  margin: auto;
}
/* 左 */
.footer_info_left {
  width: calc(50% - 48px);
}
.footer_info_left .footer_info_map {
  position: relative;
}
.footer_info_left .footer_info_map iframe {
  width: 100%;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
}
.footer_info_left address {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 0px 40px;
  margin-top: 35px;
  text-align: center;
}
.footer_info_left address > * {
  position: relative;
  z-index: 1;
  min-height: 40px;
}
.footer_info_left address .location {
  font-family: var(--shi);
  font-style: normal;
  font-weight: 500;
  width: 100%;
  color: #ffffff;
}
.footer_info_left address .location span {
  display: inline-block;
  margin-right: 15px;
}
.footer_info_left address .tel {
  font-family: var(--gar);
  font-style: normal;
  font-weight: 300;
  margin-top: 15px;
  line-height: 1;
  letter-spacing: 0.2em;
}
.footer_info_left address .tel a {
  color: #ffffff;
  font-size: 30px;
}
.footer_info_left address .tel a:before {
  content: "TEL.";
}
.footer_info_left address .fax {
  font-family: var(--gar);
  font-style: normal;
  font-weight: 300;
  margin-top: 15px;
  line-height: 1;
  letter-spacing: 0.2em;
}
.footer_info_left address .fax p {
  color: #ffffff;
  font-size: 30px;
}
.footer_info_left address .fax p:before {
  content: "FAX.";
}

.footer_info_speciality {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 35px auto 0;
}
.footer_info_speciality span {
  display: inline-block;
  min-width: 170px;
  padding: 7px 18px 7px 22px;
  background: #4d7f52;
  border-radius: 300px;
  color: #ffffff;
  text-align: center;
  font-family: var(--shi);
  font-style: normal;
  font-weight: 500;
}

/* 右 */
.footer_info_right {
  width: calc(50% - 48px);
}
.footer_info_right .office_hour {
  color: #ffffff;
}
.footer_info_right .office_hour .closed_title, .footer_info_right .office_hour .note_title {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}


/* フッターのナビ */
.footer_under {
  background: url(../images/bg_tex04.jpg);
}

.footer_nav {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  padding: 90px 50px 45px;
}
@media (hover: hover){
  .footer_under a{
    transition: opacity 0.2s ease;
  }
}
.footer_nav .inner {
  display: flex;
  gap: 130px;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 0 50px;
  border-bottom: 1px solid #ffffff;
}

/* ------ 左のグローバルナビ ------  */
.general_nav {
  flex-shrink: 0;
}
.general_nav ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 25px 100px;
  height: fit-content;
}
.general_nav a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
}
.general_nav a:hover {
  color: #ffffff;
  opacity: 0.5;
}

/* ------ カスタム投稿タイプのタイトル（扉ページ） ------  */
.nav_title {
  margin-bottom: 20px;
  padding: 0 0 5px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.nav_title a {
  position: relative;
  display: inline-block;
  color: var(--text-color);
  color: #ffffff !important;
  font-size: 15px;
}
.nav_title a:hover {
  opacity: 0.5;
}

/* ------　下層ページのナビ　------ */
.post_nav:not(:first-child) {
  margin-top: 50px;
}
.post_nav ul {
  display: flex;
  flex-flow: wrap;
  gap: 10px 40px;
}
.post_nav ul a {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  color: var(--text-color);
  color: #ffffff !important;
  font-size: 13px;
}
.post_nav ul a:hover {
  opacity: 0.5;
}
.post_nav ul a::before {
  content: "-";
  position: absolute;
  top: 6px;
  left: 0;
  display: inline-block;
  line-height: 1;
}

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

.footer_logo {
  max-width: 342px;
  height: auto;
}

.footer_under_inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px 100px;
}

.footer_sns ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.footer_sns ul a {
  display: block;
  color: #ffffff !important;
  font-size: 28px;
  line-height: 1;
}
.footer_sns ul a:hover {
  opacity: 0.5;
}

.copy {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 400;
  padding: 40px 0 0;
}
.copy small {
  color: #ffffff;
  font-size: 12px;
}

/* ページトップ */
.pagetop {
  position: fixed;
  bottom: 70px;
  right: 10px;
  z-index: 10;
  display: none;
}
.pagetop p {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 0 0 3px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  color: var(--text-color);
  line-height: 1;
  text-align: center;
  cursor: pointer;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.15));
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.pagetop p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: var(--bg-color);
  border-radius: 5px;
  transform: translate(-50%, -50%);
}
.pagetop p:hover {
  transform: translateY(-10px);
}
.pagetop span {
  font-family: var(--gar);
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
}
.pagetop span::before {
  content: "\f077";
  display: block;
  margin-bottom: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  text-align: center;
}

@media (hover: hover) {
  .pagetop {
    right: auto;
    bottom: 10px;
    left: 10px;
  }
  .pagetop p {
    width: 60px;
    height: 60px;
    margin: auto;
    padding: 0 0 3px;
  }
  .pagetop p::before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
  .pagetop span {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .footer_bnr_wrap{
    flex-wrap: wrap;
    gap: 10px;
    padding: 60px 2.5% 0;
  }
  .footer_bnr_wrap .bnr{
    width: 100%;
  }
  .footer_bnr_wrap .bnr a{
    display: block;
    width: 100%;
    font-size: 15px;
    min-width: unset;
  }
  .footer_info{
    gap: 50px;
    margin: 0 auto;
    padding: 60px 2.5% 25px;
  }
  /* ------ 左側 ------ */
  .footer_info_left {
    width: 100%;
  }
  .footer_info_left .map {
    margin-bottom: 20px;
  }
  .footer_info_left .footer_info_map {
    width: 100%;
    margin: 0 auto;
  }
  .footer_info_left .footer_info_map iframe {
    height: 280px;
  }
  .footer_info_left address .tel a {
    font-size: 30px;
  }
  .footer_info_left address .fax p {
    font-size: 30px;
  }
  /* 診療科目 */
  .footer_info_speciality {
    flex-flow: wrap;
    justify-content: center;
    gap: 15px 10px;
  }
  .footer_info_speciality span {
    min-width: 150px;
  }
  /* ------ 右側 ------ */
  .footer_info_right {
    width: 100%;
  }

  .footer_nav {
    padding: 50px 20px;
  }
  .footer_nav .inner {
    flex-flow: column;
    gap: 50px;
  }
  .footer_nav ul {
    gap: 20px 25px;
  }
  /* ------ カスタム投稿タイプのタイトル（扉ページ） ------  */
  .nav_title {
    margin-bottom: 20px;
  }
  .nav_title a {
    font-size: 14px;
  }
  /* ------ 左側のグローバルナビ ------ */
  .general_nav {
    width: 100%;
  }
  .general_nav ul {
    gap: 30px 30px;
    width: 100%;
  }
  .general_nav ul a {
    font-size: 13px;
  }
  /* ------ 下層ページのナビ ------ */
  .post_nav {
    width: 100%;
  }
  .post_nav ul {
    gap: 20px 15px;
    width: 100%;
    padding-left: 5px;
  }
  .post_nav ul a {
    font-size: 12px;
  }

  .footer_under_inner {
    display: flex;
    flex-flow: column;
    gap: 50px;
  }
  .footer_logo {
    width: 80%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
  }
  .footer_under_inner {
    padding: 0 20px 150px;
  }
  .footer_sns ul {
    justify-content: center;
    gap: 20px;
  }
  .footer_sns ul a {
    font-size: 24px;
  }
  .copy {
    padding-top: 40px;
  }
  .copy small {
    display: block;
    color: #ffffff;
    font-size: 11px;
    text-align: center;
  }
}

/*==================================================================

  タイトル

==================================================================*/
h1 {
  font-size: 12px;
  position: absolute;
  /* width: 100%; */
  top: 1px;
  line-height: 1;
  left: 140px;
  margin: auto;
}

hgroup p{
  font-size: 110px;
  font-family: var(--cor);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  background: linear-gradient(135deg, #6a9b6e,#4d7f52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 11px;
  text-transform: uppercase;
}

hgroup.brown p{
  background: linear-gradient(135deg, #beb49c,#8d7e5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

hgroup h2{
  color: var(--sub-color);
  font-family: var(--shi);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 640px) {
  h1 {
    background: url(../images/bg_tex01.jpg);
    width: auto;
    padding: 5px 5%;
    background: var(--bg-color);
    text-align: center;
    position: static;
    margin: 0;
    line-height: 1.75;
  }

  hgroup p{
    font-size: 30px;
  }
  hgroup h2{
    font-size: 15px;
  }
}


/*==================================================================

  .btn
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
/* btn01 */
.btn01 a {
  display: inline-block;
  position: relative;
  padding: 20px 45px;
  line-height: 1;
  border: 1px solid #444;
  text-align: center;
  color: #444;
  font-size: 18px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: ease-in-out 0.1s;
  border-radius: 100px;
}
@media print, screen and (min-width: 641px){
  .btn01 a{
    min-width: 350px;
  }
}
@media screen and (max-width: 640px) {
  .btn01 a{
    font-size: 100%;
  }
}
.btn01 a::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 10px;
  height: 8px;
  background: url(../images/icon_arrow.svg) no-repeat center / cover;
  transition: filter ease-in-out 0.1s,right ease-in-out 0.1s;
}
.btn01 {
  position: relative;
}
.btn01 a:hover{
  background-color: #444;
  color: #fff;
}
.btn01 a:hover::after{
  right: 25px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.btn01 a:hover i {
  color: #fff;
}

.btn01.white a{
  border-color: #fff;
  color: #fff;
}
.btn01.white a::after{
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.btn01.white a:hover{
  color: var(--text-color);
  background: #fff;
}
.btn01.white a:hover::after{
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}

/*==================================================================

  $table

==================================================================*/
/* tb01 */
.tb01 {
  width: 100%;
}
.tb01 th,
.tb01 td {
  border-bottom: 1px solid var(--border-color);
  padding: 5px 0;
}
.tb01 th:not(:first-child),
.tb01 td:not(:first-child) {
  padding-left: 1em;
}
.tb01 th {
  font-weight: bold;
  width: 26%;
}

/* tb02 */
.tb02 {
  width: 100%;
}
.tb02 td,
.tb02 th {
  padding: 8px 20px;
  border: 1px solid var(--border-color);
}
.tb02 th {
  font-weight: bold;
  background-color: var(--bg-color);
}
.tb02 th span {
  font-size: 13px;
}
.tb02 td {
  background-color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 640px) {
  /* tb02 縦積み */
  .tb02.ver th,
  .tb02.ver td {
    display: block;
    width: 100%;
    border-top: none;
  }
  .tb02.ver {
    border-top: 1px solid var(--border-color);
  }

  /* 横スクロール */
  .scroll_tb {
    overflow-x: scroll;
  }
  .scroll_tb table {
    width: 816px;
  }
  .scroll_tb table th {
    position: sticky;
    left: 0;
  }
  .scroll_tb table th::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid var(--border-color);
  }
}
/*==================================================================

  $はじめて内視鏡検査を受ける方へ

==================================================================*/
.sec_first{
  position: relative;
  overflow: hidden;
  z-index: 0;
  background: url(../images/bg_first_logo.png) no-repeat center top,url(../images/bg_tex01.jpg);
}
.sec_first .top_inner{
  padding: 93px 0 0;
  position: relative;
}
.sec_first [class^="acce_img"]{
  position: absolute;
  z-index: -1;
}
.sec_first [class^="acce_img"] img{
  border-radius: 15px;
}
.sec_first .acce_img01{
  top: 109px;
  left: -256px;
}
.sec_first .acce_img02{
  top: 309px;
  right: -260px;
}
.sec_first .acce_img03{
  bottom: -200px;
  right: -260px;
}
.sec_first h2{

  text-align: center;
  color: #316938;
  font-size: 40px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  padding-top: 55px;
  background: url(../images/tit_first.png) no-repeat center top;
}
.sec_first .desc{
  font-size: 17px;
  font-family: var(--shi);
  font-weight: 500;
  line-height: 2.647;
  letter-spacing: 0.05em;
  text-align: center;
}
.sec_first .desc p:not(:last-of-type){
  margin-bottom: 1em;
}
.sec_first .desc p.first_catch{
  color: #316938;
  font-size: 120%;
  line-height: 2.25;
}
@media screen and (max-width: 640px) {
  .sec_first .top_inner{
    padding: 130px 0;
  }
  .sec_first [class^="acce_img"] img{
    border-radius: 8px;
  }
  .sec_first .acce_img01{
    top: 5px;
    left: -1%;
  }
  .sec_first .acce_img01 img{
    width: 100px;
  }
  .sec_first .acce_img02{
    top: 40px;
    right: -1%;
  }
  .sec_first .acce_img02 img{
    width: 80px;
  }
  .sec_first .acce_img03{
    z-index: 1;
    bottom: 0;
    right: -1%;
  }
  .sec_first .acce_img03 img{
    width: 120px;
  }
  .sec_first{
    background-size: 300px auto,auto;
  }
  .sec_first h2{
    padding-top: 5px;
    background-size: auto 25px;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .sec_first .desc{
    font-size: 11px;
  }
}
/*==================================================================

  $過去に胃と大腸の内視鏡検査を受けたことがある方へ

==================================================================*/
.sec_exp{
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 280px 0 140px;
}
.sec_exp .bg_shape{
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  max-width: 1460px;
  width: 76%;
  height: 150px;
  background: url(../images/bg_tex01.jpg);
  border-radius: 0 0 0 40px;
}
.sec_exp .bg_shape::before{
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 40px;
  height: 40px;
  transform: rotate(90deg);
  background: url(../images/bg_tex01.jpg);
  mask: url(../images/corner.svg) no-repeat center / cover;
}
.sec_exp .top_inner{
  position: relative;
}
.sec_exp [class^="acce_img"]{
  position: absolute;
  z-index: -1;
}
.sec_exp [class^="acce_img"] img{
  border-radius: 15px;
}
.sec_exp .acce_img01{
  bottom: 50px;
  left: -260px;
}
.sec_exp .acce_img02{
  bottom: 50px;
  right: -260px;
}
.sec_exp .acce_img03{
  z-index: 1;
  top: -635px;
  right: -260px;
}
.sec_exp h2{
  text-align: center;
  color: #316938;
  font-size: 40px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  padding-top: 55px;
  background: url(../images/tit_exp.png) no-repeat center top;
}
.sec_exp .desc{
  font-size: 17px;
  font-family: var(--shi);
  font-weight: 500;
  line-height: 2.647;
  letter-spacing: 0.05em;
  text-align: center;
}
.sec_exp .desc p:not(:last-of-type){
  margin-bottom: 1em;
}
.sec_exp .desc p.exp_catch{
  color: #316938;
  font-size: 120%;
  line-height: 2.25;
}
@media screen and (max-width: 640px) {
  .sec_exp{
    padding: 140px 0 50px;
  }
  .sec_exp .top_inner{
    padding: 0 0 180px;
  }
  .sec_exp .bg_shape{
    height: 80px;
  }
  .sec_exp [class^="acce_img"] img{
    border-radius: 8px;
  }
  .sec_exp .acce_img01{
    bottom: 10px;
    left: -1%;
  }
  .sec_exp .acce_img01 img{
    width: 130px;
  }
  .sec_exp .acce_img02{
    bottom: 10px;
    right: -1%;
  }
  .sec_exp .acce_img02 img{
    width: 130px;
  }
  .sec_exp h2{
    padding-top: 5px;
    background-size: auto 25px;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .sec_exp .desc{
    font-size: 11px;
  }
}
/*==================================================================

  $内視鏡CTDX

==================================================================*/
.sec_point .acce_img{
  position: relative;
  margin-top: -20px;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  height: 630px;
}
.sec_point .acce_img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.sec_point .acce_img .bg_shape{
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
  max-width: 589px;
  width: 30.7%;
  height: 150px;
  background: url(../images/bg_tex02.jpg);
  border-radius: 40px 0 0 0;
}
.sec_point .acce_img .bg_shape::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 40px;
  height: 40px;
  transform: rotate(180deg);
  background: url(../images/bg_tex02.jpg);
  mask: url(../images/corner.svg) no-repeat center / cover;
}

.sec_point{
  background: url(../images/bg_tex02.jpg);
}

.sec_point h2{
  margin-top: 90px;
  text-align: center;
  color: #316938;
  font-size: 40px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
  padding-top: 55px;
  background: url(../images/tit_point.png) no-repeat center top;
}
.sec_point .top_inner{
  padding: 0 0 115px;
}
.flex_point_wrap{
  display: flex;
  gap: 10px 0;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.flex_point_wrap .item{
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3);
  height: auto;
  aspect-ratio: 4.25 / 3;

  color: #fff;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
}
.flex_point_wrap .item p{
  font-size: 24px;
  line-height: 1.875;
  margin-bottom: 10px;
}
.flex_point_wrap .item span{
  font-size: 17px;
  line-height: 2.058;
}
.flex_point_wrap .item:not(:nth-of-type(1)) span{
  margin-top: 15px;
}
.flex_point_wrap .item:nth-of-type(1){
  background: url(../images/bg_dx01.jpg) no-repeat center / cover;
}
.flex_point_wrap .item:nth-of-type(2){
  background: url(../images/bg_dx02.jpg) no-repeat center / cover;
}
.flex_point_wrap .item:nth-of-type(3){
  background: url(../images/bg_dx03.jpg) no-repeat center / cover;
}
.sec_point .desc{
  text-align: center;
  font-size: 17px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 2.647;
}
.sec_point .desc p:not(:last-of-type){
  margin-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .sec_point .top_inner{
    padding: 0 0 80px;
  }
  .sec_point .acce_img{
    margin-top: 0;
    height: 200px;
  }
  .sec_point .acce_img .bg_shape{
    height: 80px;
  }
  .sec_point h2{
    margin-top: 60px;
    padding-top: 5px;
    background-size: 95% auto;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .flex_point_wrap{
    margin-bottom: 40px;
  }
  .flex_point_wrap .item{
    width: 100%;
    aspect-ratio: 2.41421356 / 1;
  }
  .flex_point_wrap .item p{
    font-size: 15px;
  }
  .flex_point_wrap .item span{
    font-size: 12px;
  }
  .flex_point_wrap .item:not(:nth-of-type(1)) span{
    margin-top: 0;
  }
  .sec_point .desc{
    font-size: 12px;
  }
}
/*==================================================================

  $検査の流れ

==================================================================*/
/* フロー(胃カメラと大腸共通) */
.flex_flow_wrap .item{
  display: flex;
}
.flex_flow_wrap .item:not(:last-of-type){
  margin-bottom: 50px;
}
.flex_flow_wrap .item .num{
  position: relative;
  width: 100px;
  min-height: 100%;
  margin-right: 30px;
}
.flex_flow_wrap .item:not(:last-of-type) .num::after{
  content: "";
  position: absolute;
  top: 105px;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: calc(100% - 135px);
  min-height: 80px;
  max-height: 400px;
  background: linear-gradient(to Bottom,#c3e0c0,#7bae90);
}
.flex_flow_wrap .item .detail{
  width: calc(100% - 130px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.flex_flow_wrap .item .detail .desc{
  width: calc(100% - 390px);
  font-size: 16px;
  line-height: 2.1875;
  letter-spacing: 0.05em;
}
.flex_flow_wrap .item .detail .desc h3{
  text-align: left;
  color: #4e8053;
  font-size: 30px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.flex_flow_wrap .item .detail .desc h3 span{
  font-size: 80%;
}
.flex_flow_wrap .item .detail .desc > ul{
  margin-bottom: 25px;
}
.flex_flow_wrap .item .detail .desc > ul > li{
  display: flex;
}
.flex_flow_wrap .item .detail .desc > ul > li::before{
  content: "・";
}
.flex_flow_wrap .item .img{
  background: url(../images/bg_tex05.jpg);
  border-radius: 5px;
}
.flex_flow_wrap .item .img img{
  border-radius: 35px 5px 35px 5px;
}
.flex_flow_wrap .item .img_wrap .btn01{
  margin-top: 28px;
}

/* 胃カメラ検査 */
.sec_flow.gas{
  position: relative;
  z-index: 0;
  background: url(../images/bg_tex01.jpg);
  padding: 130px 0 120px;
}
.sec_flow.gas .top_inner{
  position: relative;
  z-index: 1;
}
.sec_flow.gas .bg_shape01{
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  max-width: 520px;
  width: 27.1%;
  height: 150px;
  border-radius: 0 0 40px 0;
  background: url(../images/bg_tex02.jpg);
}
.sec_flow.gas .bg_shape01::after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -40px;
  width: 40px;
  height: 40px;
  background: url(../images/bg_tex02.jpg);
  mask: url(../images/corner.svg) no-repeat center / cover;
}
.sec_flow.gas .acce_img01{
  position: absolute;
  z-index: -1;
  top: 0;
  left: 5.5%;
}
.sec_flow.gas .acce_img01 img{
  border-radius: 15px;
}
.sec_flow.gas hgroup{
  text-align: right;
  margin-bottom: 80px;
}
.sec_flow.gas hgroup p{
  text-transform: none;
}


/* 大腸カメラ検査 */
.sec_flow.col {
  position: relative;
  padding: 100px 0 160px;
}
.sec_flow.col .bg_shape{
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  max-width: 362px;
  width: 18.9%;
  height: 150px;
  border-radius: 0 0 0 40px;
  background: url(../images/bg_tex01.jpg);
}
.sec_flow.col .bg_shape::after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -40px;
  width: 40px;
  height: 40px;
  transform: rotate(90deg);
  background: url(../images/bg_tex01.jpg);
  mask: url(../images/corner.svg) no-repeat center / cover;
}
.sec_flow.col hgroup{
  text-align: left;
  margin-bottom: 80px;
}
.sec_flow.col hgroup p{
  text-transform: none;
}
.sec_flow.col .flex_flow_wrap .item:not(:last-of-type) .num::after{
  background: linear-gradient(to Bottom,#e0d6c0,#ae9f7b);
}
.sec_flow.col .flex_flow_wrap .item .img{
  background: url(../images/bg_tex06.jpg);
  border-radius: 5px;
}
.sec_flow.col .flex_flow_wrap .item .detail .desc h3{
  color: var(--sub-color);
}

/* 下部装飾 */
.sec_coope .acce_img02{
  position: relative;
  margin-top: -20px;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  height: 630px;
}
.sec_coope .acce_img02 img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.sec_coope .acce_img02 .bg_shape02{
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  max-width: 1400px;
  width: 72.9%;
  height: 150px;
  background: url(../images/bg_tex01.jpg);
  border-radius: 0 0 0 40px;
}
.sec_coope .acce_img02 .bg_shape02::before{
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 40px;
  height: 40px;
  transform: rotate(90deg);
  background: url(../images/bg_tex01.jpg);
  mask: url(../images/corner.svg) no-repeat center / cover;
}


@media screen and (max-width: 640px) {
  /* フロー */
  .flex_flow_wrap .item .num{
    width: 50px;
    margin-right: 15px;
  }
  .flex_flow_wrap .item:not(:last-of-type) .num::after{
    top: 60px;
    max-height: unset;
    height: calc(100% - 50px);
  }
  .flex_flow_wrap .item .img{
    width: 100%;
    height: 130px;
    overflow: hidden;
  }
  .flex_flow_wrap .item .img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 20px 5px 20px 5px;
  }
  .flex_flow_wrap .item .detail{
    flex-flow: column wrap;
    width: calc(100% - 65px);
  }
  .flex_flow_wrap .item .detail .desc{
    padding: 15px 0 30px;
    width: 100%;
    font-size: 12px;
  }
  .flex_flow_wrap .item .detail .desc .img{
    margin-bottom: 20px;
  }
  .flex_flow_wrap .item .detail .desc h3{
    font-size: 16px;
    line-height: 1.5;
  }
  .flex_flow_wrap .item .detail .desc h3 span{
    display: inline-block;
  }
  .flex_flow_wrap .item .detail .desc .relation p:nth-of-type(1){
    margin-right: 0.5em;
  }
  .flex_flow_wrap .item .detail .desc .btn01{
    margin-top: 20px;
  }

  /* 胃カメラ */
  .sec_flow.gas{
    padding: 140px 0 50px;
  }
  .sec_flow.gas .bg_shape01{
    width: 50%;
    height: 80px;
  }
  .sec_flow.gas .acce_img01{
    width: 120px;
  }
  .sec_flow.gas hgroup{
    text-align: center;
    margin-bottom: 40px;
  }

  /* 大腸カメラ */
  .sec_flow.col {
    padding: 100px 0 50px;
  }
  .sec_flow.col .bg_shape{
    height: 80px;
  }
  .sec_flow.col hgroup{
    text-align: center;
    margin-bottom: 40px;
  }
}
/*==================================================================

  $検査費用

==================================================================*/
.sec_price {
  padding: 340px 0 0;
  position: relative;
  background: url(../images/bg_tex02.jpg);
}
.sec_price .top_inner{
  padding: 0 0 100px;
}
.sec_price hgroup{
  text-align: center;
  margin-bottom: 40px;
}
.sec_price .desc{
  font-size: 17px;
  font-family: var(--shi);
  font-weight: 500;
  line-height: 2.647;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 60px;
}

/* 上部装飾 */
.sec_price .bg_shape01{
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  max-width: 1400px;
  width: 72.9%;
  height: 150px;
  background: #fff;
  border-radius: 0 0 40px 0;
}
.sec_price .bg_shape01::before{
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 40px;
  background: #fff;
  mask: url(../images/corner.svg) no-repeat center / cover;
}
.sec_price .acce_img01{
  position: absolute;
  top: -80px;
  left: 0;
  max-width: 1100px;
  width: 57.3%;
  height: 350px;
}
.sec_price .acce_img01 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

/* 下部装飾 */
.sec_price .bg_shape02{
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  max-width: 520px;
  width: 27.1%;
  height: 150px;
  background: url(../images/bg_tex02.jpg);
  border-radius: 0 0 40px 0;
}
.sec_price .bg_shape02::before{
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 40px;
  background: url(../images/bg_tex02.jpg);
  mask: url(../images/corner.svg) no-repeat center / cover;
}
.sec_price .acce_img02{
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  height: 630px;
}
.sec_price .acce_img02 > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 料金表 */
.flex_price_wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 39px;
}
.flex_price_wrap .item p{
  text-align: right;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.flex_price_wrap .item:nth-of-type(1),
.flex_price_wrap .item:nth-of-type(2){
  max-width: 620px;
  width: 100%;
}
.flex_price_wrap .item:nth-of-type(3){
  width: 100%;
}

/* テーブル共通 */
.flex_price_wrap table{
  width: 100%;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.flex_price_wrap table thead{
  position: relative;
  color: #fff;
}
.flex_price_wrap table thead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.flex_price_wrap table thead :is(th,td){
  position: relative;
  z-index: 1;
  background: transparent;
}
.flex_price_wrap table thead th{
  font-size: 18px;
  height: 60px;
  padding-left: 20px;
}
.flex_price_wrap table thead td{
  font-size: 17px;
  text-align: center;
}
/* .flex_price_wrap table tbody tr{
  background: #fff;
}
.flex_price_wrap table tbody tr:nth-of-type(odd){
  background: #faf9f7;
} */
.flex_price_wrap table tbody tr th,
.flex_price_wrap table tbody tr td{
  background: #fff;
}
.flex_price_wrap table tbody tr:nth-of-type(odd) th,
.flex_price_wrap table tbody tr:nth-of-type(odd) td{
  background: #faf9f7;
}
.flex_price_wrap table tbody td{
  height: 70px;
  font-size: 14px;
  line-height: 1.47;
  text-align: center;
}
.flex_price_wrap table tbody td span{
  font-size: 121.4%;
}
.flex_price_wrap table tbody td:first-of-type{
  font-size: 16px;
  padding: 0 0 0 20px;
  text-align: left;
}

/* 個別 */
/* 胃カメラ */
.flex_price_wrap .green thead::before{
  /* background: linear-gradient( 135deg, #6a9b6e 0%, #4d7f52 100%); */
}
.flex_price_wrap .green thead th,
.flex_price_wrap .green thead td{
  background: #558659;
}
.flex_price_wrap .green span{
  color: #087713;
  margin: 0 0.25em;
}

/* 大腸カメラ */
.flex_price_wrap .brown thead::before{
  /* background: linear-gradient( 135deg, #938567 0%, #8d7e5c 100%); */
}
.flex_price_wrap .brown span{
  color: #ad6a00;
  margin: 0 0.25em;
}
.flex_price_wrap .brown thead th,
.flex_price_wrap .brown thead td{
  background: #8f805f;
}

/* がんドック */
.flex_price_wrap .blue thead::before{
  /* background: linear-gradient( 135deg, #6a889b 0%, #4d6d7f 100%); */
}
.flex_price_wrap .blue thead th,
.flex_price_wrap .blue thead td{
  background: #58778a;
}

.flex_price_wrap .blue span{
  color: #1273ae;
  font-size: 100%;
}
.flex_price_wrap .blue tbody td{
  font-size: 17px;
  line-height: 2.353;
  text-align: left;
}
.flex_price_wrap .blue tbody td:first-of-type{
  font-size: 17px;
}
.flex_price_wrap .blue tbody td:last-of-type{
  text-align: center;
}
.flex_price_wrap .blue tbody tr:last-of-type td{
  padding: 20px 0;
}
@media screen and (max-width: 640px) {
  .sec_price {
    padding: 150px 0 0;
  }
  .sec_price .top_inner{
    padding: 0 0 50px;
  }
  .sec_price .bg_shape01{
    height: 80px;
  }
  .sec_price .acce_img01{
    top: -30px;
    width: 60%;
    height: 150px;
  }
  .sec_price .desc{
    font-size: 12px;
    margin-bottom: 20px;
  }
  .sec_price .acce_img02{
    margin-top: 0;
    height: 200px;
  }
  .sec_price .bg_shape02{
    height: 80px;
  }
  
  /* 料金表 */
  .flex_price_wrap{
    gap: 30px 20px;
  }
  .flex_price_wrap .item h3{
    font-size: 15px;
    font-family: var(--shi);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 20px;
  }
  .flex_price_wrap .item:nth-of-type(1) h3{
    color: #346839;
  }
  .flex_price_wrap .item:nth-of-type(2) h3{
    color: var(--sub-color);
  }
  .flex_price_wrap .item:nth-of-type(3) h3{
    color: var(--main-color);
  }
  .flex_price_wrap .item p{
    display: flex;
    text-align: left;
    font-size: 11px;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .flex_price_wrap .item p::before{
    content: "※";
  }
  .flex_price_wrap table{
    margin-bottom: 20px;
  }
  .flex_price_wrap table:has(+ p) {
    margin-bottom: 5px;
  }
  .flex_price_wrap table thead *{
    font-size: 14px!important;
  }
  .flex_price_wrap table tbody *{
    font-size: 12px!important;
  }
  .flex_price_wrap table tbody td:first-of-type{
    width: 60%;
    padding-left: 10px;
  }
  .flex_price_wrap .blue tbody td{
    padding: 10px;
    line-height: 1.5;
  }
  .flex_price_wrap .blue tbody tr:last-of-type td{
    padding: 10px;
  }
}
/*==================================================================

  $がん予防外来

==================================================================*/
.sec_pre{
  padding: 120px 0 0;
  background: url(../images/bg_prev_text.png) no-repeat left 20px bottom -135px,url(../images/bg_tex01.jpg);
}
.sec_pre .top_inner{
  position: relative;
  z-index: 1;
}
.sec_pre h2{
  text-align: center;
  color: #316938;
  font-size: 40px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 55px;
  padding-top: 65px;
  background: url(../images/tit_pre.png) no-repeat center top;
}
.flex_pre_wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 40px 85px;
  justify-content: center;
}
.flex_pre_wrap .detail{
  max-width: 584px;
  width: 100%;
}
.flex_pre_wrap .detail h3{
  color: #316938;
  font-size: 28px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.964;
  margin-bottom: 30px;
}
.flex_pre_wrap .detail h3 span{
  display: block;
  font-size: 75%;
}
.flex_pre_wrap .detail p{
  font-size: 17px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.647;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .sec_pre{
    padding: 60px 0 80px;
    background-size: 640px auto,auto;
    background-position: left bottom -42px,center;
  }
  .sec_pre h2{
    padding-top: 10px;
    background-size: auto 25px;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .flex_pre_wrap .detail h3{
    font-size: 15px;
    margin-bottom: 10px;
  }
  .flex_pre_wrap .detail p{
    font-size: 11px;
  }
  .flex_pre_wrap .detail .btn01{
    text-align: center;
  }
}

/*==================================================================

  $ご挨拶

==================================================================*/
.sec_greet{
  margin-top: -54px;
  position: relative;
  padding: 210px 0 90px;
  background: url(../images/bg_tex02.jpg);
}
.sec_greet .bg_shape{
  position: absolute;
  top: 0;
  left: 0;
  max-width: 1300px;
  width: 67.7%;
  height: 150px;
  background: url(../images/bg_prev_text.png) no-repeat left 20px bottom -39px,url(../images/bg_tex01.jpg);
  border-radius: 0 0 40px 0;
}
.sec_greet .bg_shape::after{
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 40px;
  background: url(../images/bg_tex01.jpg);
  mask: url(../images/corner.svg) no-repeat center / cover;
}
.sec_greet hgroup{
  text-align: center;
  margin-bottom: 60px;
}
.flex_greet{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.flex_greet .img{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.flex_greet .img .name{
  color: #fff;
  font-family: var(--shi);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #4d7f52;
  border-radius: 0 13px 0 0;
  padding: 31px 32px;
}
.flex_greet .img .name span{
  font-size: 70%;
}
.flex_greet .detail{
  max-width: 640px;
  width: 100%;
  margin-top: 40px;
}
.flex_greet .detail h3{
  color: #4d7f52;
  font-size: 28px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.flex_greet .detail p{
  font-size: 17px;
  font-family: var(--shi);
  font-weight: 500;
  line-height: 2.647;
  letter-spacing: 0.05em;
  margin-bottom: 70px;
}
.flex_greet .detail .btn01{
  text-align: right;
}

@media screen and (max-width: 640px) {
  .sec_greet{
    margin-top: 0;
    padding: 110px 0 20px;
  }
  .sec_greet .bg_shape{
    height: 80px;
    background-size: 640px auto,auto;
    background-position: left top -60px,center;
  }
  .sec_greet hgroup{
    align-items: center;
    margin-bottom: 40px;
  }
  .flex_greet{
    justify-content: center;
  }
  .flex_greet .img{
    max-width: 320px;
  }
  .flex_greet .img .name{
    padding: 20px 10px;
    font-size: 15px;
  }
  .flex_greet .img .name span{
    font-size: 11px;
  }
  .flex_greet .detail{
    margin-top: 20px;
  }
  .flex_greet .detail h3{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .flex_greet .detail p{
    font-size: 11px;
    margin-bottom: 50px;
  }
}


/*==================================================================

  $よくある質問

==================================================================*/
.sec_faq{
  margin-top: -54px;
  position: relative;
  padding: 210px 0 20px;
  background: url(../images/bg_faq_logo.png) no-repeat left bottom -150px,url(../images/bg_tex01.jpg);
}

.sec_faq .bg_shape {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 1640px;
  width: 85.4%;
  height: 150px;
  background: url(../images/bg_tex02.jpg);
  border-radius: 0 0 40px 0;
}

.sec_faq .bg_shape::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 40px;
  background: url(../images/bg_tex02.jpg);
  mask: url(../images/corner.svg) no-repeat center / cover;
}

.sec_faq hgroup{
  text-align: center;
  margin-bottom: 60px;
}

.accordion{
  max-width: 980px;
  margin: 0 auto;
}
.accordion dl:not(:last-of-type){
  margin-bottom: 50px;
}

.accordion_tit {
  color: #665133;
  font-size: 22px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.005em;
  background: url(../images/bg_tex02.jpg);
  padding: 16.5px 50px 16.5px 90px;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
}
.accordion_tit::before,
.accordion_tit::after {
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  right: 20px;
  top: 50%;
  transition: transform 0.3s, opacity 0.3s;
}
.accordion_tit::before {
  transform: rotate(90deg);
}
@media (hover: hover) {
  .accordion_tit {
    transition: filter 0.3s;
  }
  .accordion_tit:hover {
    filter: brightness(0.9);
  }
}
.accordion_tit.open {
  color: #fff;
  background: var(--main-color);
}
.accordion_tit.open::before {
  opacity: 0;
  transform: rotate(180deg);
}
.accordion_tit.open::after {
  background: #fff;
}

.accordion_text {
  display: none;
  padding: 20px 30px;
  font-size: 17px;
  font-family: var(--shi);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.647;
}

/* Q&A */
.accordion.accordion-qa .accordion_tit,
.accordion.accordion-qa .accordion_text {
  padding-left: 90px;
  position: relative;
}
.accordion.accordion-qa .accordion_tit > *:before,
.accordion.accordion-qa .accordion_text:before {
  font-family: var(--cor);
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  position: absolute;
  left: 34px;
}
.accordion.accordion-qa .accordion_tit > *:before {
  color: #5e9063;
  content: "Q";
  top: 11px;
  transition: color 0.2s;
}
.accordion.accordion-qa .accordion_tit.open > *:before {
  color: #fff;
}
.accordion.accordion-qa .accordion_text:before {
  color: #d79626;
  content: "A";
  top: 11px;
}

@media screen and (max-width: 640px) {
  .sec_faq{
    margin-top: 0;
    padding: 110px 0 20px;
    background-size: 200px auto,auto;
    background-position: left bottom -80px,center;
  }
  .sec_faq .bg_shape {
    height: 80px;
	background-size: 200px auto, auto;
    background-position: left top -100px, center;
  }
  .sec_faq hgroup{
    margin-bottom: 40px;
  }
  .accordion dl:not(:last-of-type){
    margin-bottom: 20px;
  }
  .accordion_tit{
    font-size: 100%;
  }
  .accordion_text{
    font-size: 12px;
    padding: 10px 30px;
  }
  .accordion.accordion-qa .accordion_tit,
  .accordion.accordion-qa .accordion_text{
    padding-left: 50px;
  }
  .accordion.accordion-qa .accordion_tit > *:before,
  .accordion.accordion-qa .accordion_text:before{
    font-size: 30px;
    left: 15px;
  }
}

/*==================================================================

  $お問い合わせ

==================================================================*/
.sec_contact{
  color: #fff;
  position: relative;
  z-index: 0;
  background: url(../images/bg_tex03.jpg);
  padding: 95px 0 0;
}
.sec_contact::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,#fff,#72aa75);
  opacity: 0.2;
}
.sec_contact hgroup{
  text-align: center;
  margin-bottom: 60px;
}
.sec_contact hgroup p{
  font-size: 80px;
  line-height: 1.33;
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color:unset;
  padding: 0;
}
.sec_contact hgroup h2{
  color: #fff;
  font-size: 32px;
}

.list_contact{
  display: flex;
  width: 100%;
}
.list_contact li {
  text-align: center;
  font-family: var(--shi);
  font-weight: 500;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: calc(50% - 0.5px);
  padding: 90px 0 100px;
}
.list_contact li:first-of-type{
  border-right: 1px solid #fff;
}

.list_contact li .btn01 a{
  min-width: 260px;
}
.list_contact li .title{
  font-size: 26px;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.list_contact li .desc{
  margin-bottom: 50px;
  line-height: 2.133;
  letter-spacing: 0.05em;
  font-size: 16px;
}

@media screen and (max-width: 640px) {
  .sec_contact{
    padding: 60px 0 0;
  }
  .sec_contact hgroup{
    margin-bottom: 40px;
  }
  .sec_contact hgroup p{
    font-size: 30px;
  }
  .sec_contact hgroup h2{
    font-size: 15px;
    margin-top: 0;
  }
  .list_contact li{
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 2.5% 30px;
  }
  .list_contact li .title{
    font-size: 15px;
    margin-bottom: 15px;
  }
  .list_contact li .desc{
    font-size: 11px;
    margin-bottom: 20px;
  }
  .list_contact li .btn01{
    margin: auto auto 0;
    width: 100%;
  }
  .list_contact li .btn01 a{
    display: block;
    min-width: unset;
    padding: 15px 30px 15px 20px;
  }
  .list_contact li .btn01 a::after{
    right: 15px;
  }
}

/* FAQ下のコンタクト */
.sec_contact02{
  padding: 230px 0 0;
}
.sec_contact02 .bg_shape{
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  max-width: 1640px;
  width: 85.4%;
  height: 150px;
  background: url(../images/bg_faq_logo.png) no-repeat left top -280px,url(../images/bg_tex01.jpg);
  border-radius: 0 0 40px 0;
}
.sec_contact02 .bg_shape::before{
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 40px;
  height: 40px;
  background: url(../images/bg_tex01.jpg);
  mask: url(../images/corner.svg) no-repeat center / cover;
}
@media screen and (max-width: 640px) {
  .sec_contact02 {
    padding: 100px 0 0;
  }
  .sec_contact02 .bg_shape{
    height: 80px;
    background-size: 200px auto, auto;
    background-position: left top -100px, center;
  }
}
/*==================================================================

  CSSアニメーション

==================================================================*/
/* フェードイン */
.fadeIn{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeIn{
  animation: fadeIn 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* フェードイン（下→上） */
.fadeInUp{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInUp{
  animation: fadeInUp 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フェードイン（右→左） */
.fadeInRight{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInRight{
  animation: fadeInRight 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フェードイン（左→右） */
.fadeInLeft{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInLeft{
  animation: fadeInLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フリップ（右回転） */
.flipRight{
  opacity: 0;
  visibility: visible;
}
.is-visible.flipRight{
  animation: flipRight 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  transform: rotateY(-180deg);
}
@keyframes flipRight {
  0% {
    opacity: 0;
    transform: rotateY(-180deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* フリップ（左回転） */
.flipLeft{
  opacity: 0;
  visibility: visible;
  transform: rotateY(180deg);
}
.is-visible.flipLeft{
  animation: flipLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes flipLeft {
  0% {
    opacity: 0;
    transform: rotateY(180deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* 恒常的に動くアニメーション */

/* ゆっくり回転（右回転） */
.rotateRight{
  animation: rotateRight 20s linear infinite;
}
@keyframes rotateRight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: rotate(360deg);
  }
}

/* ゆっくり回転（左回転） */
.rotateLeft{
  animation: rotateLeft 20s linear infinite;
}
@keyframes rotateLeft {
  0% {
    transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: rotate(-360deg);
  }
}

/* 浮遊（基準点から上） */
.floatingUp{
  animation: floatingUp 10s ease-in-out infinite;
}
@keyframes floatingUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}

/* 浮遊（基準点から下） */
.floatingDown{
  animation: floatingDown 10s ease-in-out infinite;
}
@keyframes floatingDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}

/* 生き物が跳ねる（鳥、リスなど） */
.jumping{
  position: relative;
  animation: jumping 1s ease-in-out infinite;
}
@keyframes jumping{
  0% {
    top: 0;
  }
  10% {
    top: -5px;
  }
  20% {
    top: 0px;
  }
  30% {
    top: -5px;
  }
  40% {
    top: 0px;
  }
  100% {
    top: 0px;
  }
}

/*============================================================================

  common

============================================================================*/
.pc_inline{display:inline!important}.sp_inline{display:none!important}.sp_inline_ip{display:none!important}.pc_table{display:none!important}.sp_table{display:none!important}.w010par{width:10%!important}.w020par{width:20%!important}.w025par{width:25%!important}.w050par{width:50%!important}.w075par{width:75%!important}.w100par{width:100%!important}.w010{width:10px!important}.w020{width:20px!important}.w030{width:30px!important}.w040{width:40px!important}.w050{width:50px!important}.w060{width:60px!important}.w070{width:70px!important}.w080{width:80px!important}.w090{width:90px!important}.w100{width:100px!important}.w110{width:110px!important}.w120{width:120px!important}.w130{width:130px!important}.w140{width:140px!important}.w150{width:150px!important}.w160{width:160px!important}.w170{width:170px!important}.w180{width:180px!important}.w190{width:190px!important}.w200{width:200px!important}.w210{width:210px!important}.w220{width:220px!important}.w230{width:230px!important}.w240{width:240px!important}.w250{width:250px!important}.w255{width:255px!important}.w260{width:260px!important}.w270{width:270px!important}.w280{width:280px!important}.w290{width:290px!important}.w300{width:300px!important}.w305{width:305px!important}.w310{width:310px!important}.w320{width:320px!important}.w330{width:330px!important}.w340{width:340px!important}.w350{width:350px!important}.w360{width:360px!important}.w365{width:365px!important}.w370{width:370px!important}.w380{width:380px!important}.w390{width:390px!important}.w400{width:400px!important}.w410{width:400px!important}.w415{width:415px!important}.w420{width:420px!important}.w430{width:430px!important}.w435{width:435px!important}.w440{width:440px!important}.w450{width:450px!important}.w460{width:460px!important}.w470{width:470px!important}.w480{width:480px!important}.w490{width:490px!important}.w500{width:500px!important}.w510{width:510px!important}.w520{width:520px!important}.w530{width:530px!important}.w540{width:540px!important}.w550{width:550px!important}.w560{width:560px!important}.w570{width:570px!important}.w580{width:580px!important}.w590{width:590px!important}.w600{width:600px!important}.w610{width:610px!important}.w620{width:620px!important}.w630{width:630px!important}.w640{width:640px!important}.w650{width:650px!important}.w660{width:660px!important}.w670{width:670px!important}.w680{width:680px!important}.w690{width:690px!important}.w700{width:700px!important}.w710{width:710px!important}.w720{width:720px!important}.w730{width:730px!important}.w740{width:740px!important}.w750{width:750px!important}.w760{width:760px!important}.w765{width:765px!important}.w960{width:960px!important}.w980{width:980px!important}.h030{height:30px!important}.h180{height:180px!important}.h190{height:190px!important}.h200{height:200px!important}.h240{height:240px!important}.h250{height:250px!important}.h280{height:280px!important}.h300{height:300px!important}.h350{height:350px!important}.mt00{margin-top:0!important}.mt01{margin-top:1px!important}.mt02{margin-top:2px!important}.mt03{margin-top:3px!important}.mt04{margin-top:4px!important}.mt05{margin-top:5px!important}.mt06{margin-top:6px!important}.mt07{margin-top:7px!important}.mt08{margin-top:8px!important}.mt09{margin-top:9px!important}.mt10{margin-top:10px!important}.mt15{margin-top:15px!important}.mt20{margin-top:20px!important}.mt25{margin-top:25px!important}.mt30{margin-top:30px!important}.mt35{margin-top:35px!important}.mt40{margin-top:40px!important}.mt45{margin-top:45px!important}.mt50{margin-top:50px!important}.mt60{margin-top:60px!important}.mt70{margin-top:70px!important}.mt80{margin-top:80px!important}.mt90{margin-top:90px!important}.mt100{margin-top:100px!important}.mt110{margin-top:110px!important}.mt120{margin-top:120px!important}.mr00{margin-right:0!important}.mr01{margin-right:1px!important}.mr02{margin-right:2px!important}.mr03{margin-right:3px!important}.mr04{margin-right:4px!important}.mr05{margin-right:5px!important}.mr06{margin-right:6px!important}.mr07{margin-right:7px!important}.mr08{margin-right:8px!important}.mr09{margin-right:9px!important}.mr10{margin-right:10px!important}.mr15{margin-right:15px!important}.mr20{margin-right:20px!important}.mr25{margin-right:25px!important}.mr30{margin-right:30px!important}.mr35{margin-right:35px!important}.mr40{margin-right:40px!important}.mr45{margin-right:45px!important}.mr50{margin-right:50px!important}.mr60{margin-right:60px!important}.mr70{margin-right:70px!important}.mr80{margin-right:80px!important}.mr90{margin-right:90px!important}.mr100{margin-right:100px!important}.mb00{margin-bottom:0!important}.mb01{margin-bottom:1px!important}.mb02{margin-bottom:2px!important}.mb03{margin-bottom:3px!important}.mb04{margin-bottom:4px!important}.mb05{margin-bottom:5px!important}.mb06{margin-bottom:6px!important}.mb07{margin-bottom:7px!important}.mb08{margin-bottom:8px!important}.mb09{margin-bottom:9px!important}.mb10{margin-bottom:10px!important}.mb15{margin-bottom:15px!important}.mb20{margin-bottom:20px!important}.mb25{margin-bottom:25px!important}.mb30{margin-bottom:30px!important}.mb35{margin-bottom:35px!important}.mb40{margin-bottom:40px!important}.mb45{margin-bottom:45px!important}.mb50{margin-bottom:50px!important}.mb60{margin-bottom:60px!important}.mb70{margin-bottom:70px!important}.mb80{margin-bottom:80px!important}.mb90{margin-bottom:90px!important}.mb100{margin-bottom:100px!important}.ml00{margin-left:0!important}.ml01{margin-left:1px!important}.ml02{margin-left:2px!important}.ml03{margin-left:3px!important}.ml04{margin-left:4px!important}.ml05{margin-left:5px!important}.ml06{margin-left:6px!important}.ml07{margin-left:7px!important}.ml08{margin-left:8px!important}.ml09{margin-left:9px!important}.ml10{margin-left:10px!important}.ml12{margin-left:12px!important}.ml15{margin-left:15px!important}.ml20{margin-left:20px!important}.ml25{margin-left:25px!important}.ml30{margin-left:30px!important}.ml35{margin-left:35px!important}.ml40{margin-left:40px!important}.ml45{margin-left:45px!important}.ml50{margin-left:50px!important}.ml60{margin-left:60px!important}.ml70{margin-left:70px!important}.ml80{margin-left:80px!important}.ml90{margin-left:90px!important}.ml100{margin-left:100px!important}.ml140{margin-left:140px!important}.ml160{margin-left:160px!important}.ma10{margin:10px!important}.ma15{margin:15px!important}.ma_auto{margin-left:auto;margin-right:auto!important}.pt00{padding-top:0!important}.pt01{padding-top:1px!important}.pt02{padding-top:2px!important}.pt03{padding-top:3px!important}.pt04{padding-top:4px!important}.pt05{padding-top:5px!important}.pt06{padding-top:6px!important}.pt07{padding-top:7px!important}.pt08{padding-top:8px!important}.pt09{padding-top:9px!important}.pt10{padding-top:10px!important}.pt15{padding-top:15px!important}.pt20{padding-top:20px!important}.pt25{padding-top:25px!important}.pt30{padding-top:30px!important}.pt35{padding-top:35px!important}.pt40{padding-top:40px!important}.pt45{padding-top:45px!important}.pt50{padding-top:50px!important}.pt60{padding-top:60px!important}.pt70{padding-top:70px!important}.pt80{padding-top:80px!important}.pt90{padding-top:90px!important}.pt100{padding-top:100px!important}.pt120{padding-top:120px!important}.pr00{padding-right:0!important}.pr01{padding-right:1px!important}.pr02{padding-right:2px!important}.pr03{padding-right:3px!important}.pr04{padding-right:4px!important}.pr05{padding-right:5px!important}.pr06{padding-right:6px!important}.pr07{padding-right:7px!important}.pr08{padding-right:8px!important}.pr09{padding-right:9px!important}.pr10{padding-right:10px!important}.pr15{padding-right:15px!important}.pr20{padding-right:20px!important}.pr25{padding-right:25px!important}.pr30{padding-right:30px!important}.pr35{padding-right:35px!important}.pr40{padding-right:40px!important}.pr45{padding-right:45px!important}.pr50{padding-right:50px!important}.pr60{padding-right:60px!important}.pr70{padding-right:70px!important}.pr80{padding-right:80px!important}.pr90{padding-right:90px!important}.pr100{padding-right:100px!important}.pb00{padding-bottom:0!important}.pb01{padding-bottom:1px!important}.pb02{padding-bottom:2px!important}.pb03{padding-bottom:3px!important}.pb04{padding-bottom:4px!important}.pb05{padding-bottom:5px!important}.pb06{padding-bottom:6px!important}.pb07{padding-bottom:7px!important}.pb08{padding-bottom:8px!important}.pb09{padding-bottom:9px!important}.pb10{padding-bottom:10px!important}.pb15{padding-bottom:15px!important}.pb20{padding-bottom:20px!important}.pb25{padding-bottom:25px!important}.pb30{padding-bottom:30px!important}.pb35{padding-bottom:35px!important}.pb40{padding-bottom:40px!important}.pb45{padding-bottom:45px!important}.pb50{padding-bottom:50px!important}.pb60{padding-bottom:60px!important}.pb70{padding-bottom:70px!important}.pb80{padding-bottom:80px!important}.pb90{padding-bottom:90px!important}.pb100{padding-bottom:100px!important}.pl00{padding-left:0!important}.pl01{padding-left:1px!important}.pl02{padding-left:2px!important}.pl03{padding-left:3px!important}.pl04{padding-left:4px!important}.pl05{padding-left:5px!important}.pl06{padding-left:6px!important}.pl07{padding-left:7px!important}.pl08{padding-left:8px!important}.pl09{padding-left:9px!important}.pl10{padding-left:10px!important}.pl15{padding-left:15px!important}.pl20{padding-left:20px!important}.pl25{padding-left:25px!important}.pl30{padding-left:30px!important}.pl35{padding-left:35px!important}.pl40{padding-left:40px!important}.pl45{padding-left:45px!important}.pl50{padding-left:50px!important}.pl60{padding-left:60px!important}.pl70{padding-left:70px!important}.pl80{padding-left:80px!important}.pl90{padding-left:90px!important}.pl100{padding-left:100px!important}.pa01{padding:1px!important}.pa02{padding:2px!important}.pa03{padding:3px!important}.pa04{padding:4px!important}.pa05{padding:5px!important}.pa10{padding:10px!important}.pa15{padding:15px!important}.fr{float:right!important}.fl{float:left!important}.fr10{float:right;margin-left:10px!important}.fr15{float:right;margin-left:15px!important}.fr30{float:right;margin-left:15px!important}.fl10{float:left;margin-right:10px!important}.fl15{float:left;margin-right:15px!important}.fl30{float:left;margin-right:30px!important}.txt10{font-size:10px!important}.txt11{font-size:11px!important}.txt12{font-size:12px!important}.txt13{font-size:13px!important}.txt14{font-size:14px!important}.txt15{font-size:15px!important}.txt16{font-size:16px!important}.txt17{font-size:17px!important}.txt18{font-size:18px!important}.txt19{font-size:19px!important}.txt20{font-size:20px!important}.txt21{font-size:21px!important}.txt22{font-size:22px!important}.txt23{font-size:23px!important}.txt24{font-size:24px!important}.txt25{font-size:25px!important}.txt26{font-size:26px!important}.txt27{font-size:27px!important}.txt28{font-size:28px!important}.txt29{font-size:29px!important}.txt30{font-size:30px!important}.txt31{font-size:31px!important}.txt32{font-size:32px!important}.txt33{font-size:33px!important}.txt34{font-size:34px!important}.txt35{font-size:35px!important}.txt36{font-size:36px!important}.txt37{font-size:37px!important}.txt38{font-size:38px!important}.txt39{font-size:39px!important}.txt40{font-size:40px!important}.bold{font-weight:700!important}.left{text-align:left!important}.center{text-align:center!important}.right{text-align:right!important}.clear{clear:both!important}.v_top{vertical-align:top!important}.v_mid{vertical-align:middle!important}.v_btm{vertical-align:bottom!important}.color_red{color:#f33!important}.color_pink{color:#ed8c96!important}.color_blue{color:#00408f!important}.color_green{color:#479f9d!important}.color_orange{color:#ff8327!important}.color_yellow{color:#ffeb8b!important}.color_beige{color:#dac58b!important}.color_brown{color:#9b8052!important}.color_navy{color:#1f2774!important}.color_black{color:#333!important}.ls_0{letter-spacing:0!important}.ls_1{letter-spacing:1px!important}.indent{margin-left:1em!important;text-indent:-1em!important}.line_h_2{line-height:2!important}.clearfix:after{display:block!important;clear:both!important;content:""!important}.sp{display:none!important}

@media screen and (max-width: 640px) {
  .pc{display:none!important}.sp{display:block!important}.pc_inline{display:none!important}.sp_inline{display:inline!important}.pc_table{display:table!important}.sp_table{display:table!important}.sp_mb00{margin-bottom:0!important}.sp_mr00{margin-right:0!important}.sp_ml00{margin-left:0!important}.sp_mt00{margin-top:0!important}.sp_pb00{padding-bottom:0!important}.sp_pr00{padding-right:0!important}.sp_pl00{padding-left:0!important}.sp_pt00{padding-top:0!important}.sp_center{text-align:center!important}
}