/*
Theme Name: テンプレート
Author: アルファージール
Version: 1
*/

/*==============================================*/
/*  PC  */
/*==============================================*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  	font-size: 17px;
    line-height: 1.9;
    font-feature-settings: 'palt' 1;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.1em;
}
@media (min-width: 960px) {.pc_hide {display: none !important;}}
@media (min-width: 560px) and (max-width: 959px) { .tb_hide {display: none !important;}}
@media (max-width: 559px) {.sp_hide {display: none !important;}}

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

body.lower {
	letter-spacing: 0.15em;
	overflow-x: hidden;
}
.lower main {
    width: 100%;
    max-width: 1180px;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 960px){
    .lower main {
        width: 90%;
    }
}
.lower .footer {
	font-family: 'Zen Antique', serif;
}
/*  ヘッダー  */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    z-index: 100;
    background: #fff;
    height: 65px;
    gap: 0 30px;
}
header nav ul {
    display: flex;
    gap: 0.5em;
}
header nav a {
    text-decoration: none;
    color: inherit;
}
.header__left {
    flex-basis: 340px;
}
.header__logo {
	height: 100px;
}
/*
@media(max-width: 959px){
	.header__logo {
		height: 100px;
	}
}
*/
@media(max-width: 959px){
	.header {
		height: 80px;
	}
	.header__left {
		flex-basis: 250px;
	}
	.header__logo {
		height: 60px;
	}
	.header__logo img {
/*
		margin-top: -5%;
		margin-left: -3%;
*/
	}
}
@media(max-width: 559px){
	.header {
		height: 60px;
	}
	.header__left {
		flex-basis: 220px;
	}
	.header__logo {
		height: 50px;
	}
	.header__logo img {
/*		margin-top: -4%;*/
	}
}
.header__tel {
	color: #7faae3;
	font-weight: bold;
	margin-right: 10px;
	font-size: 1.4em;
	display: inline-block;
	position: relative;
	padding: 20px 0 20px 1.3em;
	line-height: 1;
}
.header__tel::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1.2em;
	mask: url(img/common/ico_phone_pink.svg) 50% 50% / contain no-repeat;
  background: #7faae3;
}
@media(max-width: 959px){
	.header__tel {
		display: none !important;
	}
}
/*ハンバーガーメニュー*/
.h__hamburger  {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

/*3本線*/
.h__hamburger__icon,
.h__hamburger__icon::before,
.h__hamburger__icon::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 100;
    top:0;
    bottom:0;
    width: 32px;
    height: 3px;
    background: #7faae3;
    cursor: pointer;
    border-radius: 5px;
}
.h__hamburger__icon:before {
    top: 10px;
}
.h__hamburger__icon:after {
    top: 20px;
}

/*メニュー以外を暗くする*/
.h__nav__background {
    display: none;
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .7s ease-in-out;
}

/*中身*/
header nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    padding: 53px 16px 16px;
    background: #7faae3;
    overflow: auto;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
}

/*チェックボックスにチェックが入ったら表示*/
#h__hamburger__menu:checked ~ .h__hamburger .h__hamburger__icon{
    background: transparent;
}
#h__hamburger__menu:checked ~ .h__hamburger .h__hamburger__icon::before{
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top:10px;
    z-index:999;
    background: #fff;
}
#h__hamburger__menu:checked ~ .h__hamburger .h__hamburger__icon::after{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top:10px;
    z-index:999;
    background: #fff;
}
#h__hamburger__menu:checked ~ .h__nav__background {
    display: block;/*カバーを表示*/
    opacity: .8;
}
#h__hamburger__menu:checked ~ nav {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
.h__hamburger .h__hamburger__icon,
.h__hamburger .h__hamburger__icon::before,
.h__hamburger .h__hamburger__icon::after,
#h-menu_black,
nav{
    -webkit-transition: all .3s ;
    transition: all .3s ;}

header nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}
header nav ul li{
    border-bottom: solid 1px white;
}
header nav li a {
    display: block;
    color: white;
    font-size: 14px;
    padding: 24px;
    text-decoration: none;
    transition-duration: 0.2s;
}
header nav li a:hover {
    background: rgba(0,0,0,0.1)
}


/*  フッター  */

.footer__map,
.footer__map iframe {
    width: 100%;
    height: 300px;
}
.copyright {
    padding: 0.5em;
    font-size: 12px;
    text-align: center;
    width: 100%;
    display: block;
    background: #ccc;
}
/*  タイトル  */

/*  ブログ  */
.inner {
    width: 100%;
    max-width: 900px;
    margin: auto;
}
.single__page p {
    margin-bottom: 1em;
}
.single__page strong {
    font-weight: bold;
}
.single__page ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 1em;
}
.single__page ul > li > ul {
    list-style: circle;
    padding-left: 1.5em;
    margin-bottom: 1em;
}
.single__page ol {
    list-style: decimal;
    padding-left: 1.8em;
    margin-bottom: 1em;
}

.single__page .table__layout__01 th,
.single__page .table__layout__01 td {
    padding: 1em 2em;
    border: 1px solid var(--table__layout__01__border);
}
.single__page .table__layout__01 th {
    background: var(--table__layout__01__bg);
}
.single__page .table__layout__02 th,
.single__page .table__layout__02 td {
    padding: 1em 2em;
    border: 1px solid var(--table__layout__02__border);
}
.single__page .table__layout__02 thead th,
.single__page .table__layout__02 thead td {
    background: var(--table__layout__02__bg);
    text-align: center;
}

/*  固定ページ  */
.page p {
    margin-bottom: 1em;
}
.page strong {
    font-weight: bold;
}
.page ul:not(:[class]) {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 1em;
}
.page ul:not(:[class]) > li > ul {
    list-style: circle;
    padding-left: 1.5em;
    margin-bottom: 1em;
}
.page ol:not(:[class]) {
    list-style: decimal;
    padding-left: 1.8em;
    margin-bottom: 1em;
}

.page .table__layout__01 th,
.page .table__layout__01 td {
    padding: 1em 2em;
    border: 1px solid var(--table__layout__01__border);
}
.page .table__layout__01 th {
    background: var(--table__layout__01__bg);
}
.page .table__layout__02 th,
.page .table__layout__02 td {
    padding: 1em 2em;
    border: 1px solid var(--table__layout__02__border);
}
.page .table__layout__02 thead th,
.page .table__layout__02 thead td {
    background: var(--table__layout__02__bg);
}

/*  アーカイブページ  */

/*  カテゴリーページ  */

/*  iframe  */

.youtube_container,
.googlemap_container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.youtube_container iframe,
.youtube_container video,
.youtube_container video,
.googlemap_container iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/*  お問い合わせページ  */
.contact {
    width: 90%;
    margin: auto;
    max-width: 900px;
}
.contact__flex {
    display: flex;
    border-bottom: 1px solid #9ddeec;
    border-top-width: 0;
}
.contact__flex:first-of-type {
    border-top-width: 1px;
    border-top: 1px solid #9ddeec;
}
.contact__flex:nth-child(2n+1) {
  background: #e9f4f6;
}
.contact__flex__left {
    flex-basis: 30%;
    padding: 1em;
}
.contact__flex__right {
    flex-basis: 70%;
    padding: 1em;
}
.contact__flex__left__require {
    color: #f00;
}
.contact input[type="text"][size="60"]{
    width: 100%;
    padding: 0.5em;
}
.contact input[name^="your-zip"]{
    padding: 0.5em;
}
.contact select[name="your-todofuken"]{
    margin-top: 0.5em;
}
.contact input[name^="your-address"]{
    margin-top: 0.5em;
}
.contact select {
    padding: 0.4em;
}
.contact .mwform-checkbox-field input[type="checkbox"]{
    display: none;
}
.contact .mwform-checkbox-field-text{
    position: relative;
    display: inline-block;
    padding-left: 2em;
}
.contact .mwform-checkbox-field-text::after {
    content: "";
    position: absolute;
    width: 1.2em;
    height: 1.2em;
    border: 1px solid #000;
    left: 0;
}
.contact input[type="checkbox"]:checked + .mwform-checkbox-field-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0.5em;
    width: 0.3em;
    height: 0.8em;
    transform: translateY(-70%) rotate(225deg);
    border-left: 2px solid #000;
    border-top: 2px solid #000;
}
.contact .mwform-radio-field input[type="radio"]{
    display: none;
}
.contact .mwform-radio-field-text {
    position: relative;
    display: inline-block;
    padding-left: 2em;
}
.contact .mwform-radio-field-text::after {
    content: "";
    position: absolute;
    width: 1.2em;
    height: 1.2em;
    border: 1px solid #000;
    left: 0;
    top: 0;
    border-radius: 50%;
}
.contact input[type="radio"]:checked + .mwform-radio-field-text::before {
    content: "";
    position: absolute;
    width: 0.8em;
    height: 0.8em;
    top: 0.25em;
    left: 0.28em;
    background: #000;
    border-radius: 50%;
}
.mw_wp_form .horizontal-item {
    margin: 5px 10px 5px 0 !important;
    display: inline-block;
}
.contact_date_dl {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  gap: 2px;
}
.contact_date_dl dt::after {
    content: ":";
}
.contact_date_dl dd {
  flex-grow: 1;
}
.contact_date_dl dd input {
    width: 100%;
    padding: 0.5em;
    font-size: 16px;
}
.contact textarea {
    width: 100%;
    height: 10em;
    padding: 0.5em;
    border: 1px solid #000;
    outline: 0;
}
.submit__btn {
    margin: 2em;
    text-align: center;
}
.submit__btn button {
    background-color: #78cee2;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
    width: 10em;
    padding: 0.7em;
    cursor: pointer;
}
.reset__btn {
    margin: 3em 0 0;
    text-align: center;
}
.reset__btn button {
    background-color: #fff;;
    border: 1px solid #999;
    cursor: pointer;
    outline: none;
    appearance: none;
    width: 10em;
    padding: 0.7em;
    position: relative;
    cursor: pointer;
}
.submit__btn button:hover,
.reset__btn button:hover {
    opacity: 0.7;
}
/*  キービジュアル  */
.keyvisual {
    position: relative;
    overflow: hidden;
}
.keyvisual_title {
    display: none;
}
.keyvisual_img {
    object-fit: cover;
}
.keyvisual_img img {
    max-width: none;
}

/*==============================================*/
/*  タブレット  */
/*==============================================*/
@media (max-width: 959px) {

/*  ヘッダー  */


/*  フッター  */

/*  タイトル  */

/*  ブログ  */
.single__page .table__layout__01 th,
.single__page .table__layout__01 td {
    width: 100%;
    display: block;
    border-top-width: 0;
}
.single__page .table__layout__02 thead {
    display: none;
}
.single__page .table__layout__02 th,
.single__page .table__layout__02 td {
    display: block;
    border-top-width: 0;
}
.single__page .table__layout__02 tbody th {
    background: var(--table__layout__02__bg);
}
.single__page .table__layout__02 tbody td {
    position: relative;
    padding-left: 11em;
}
.single__page .table__layout__02 tbody td::before {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 2em;
    z-index: 2;
}
.single__page .table__layout__02 tbody td::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: var(--table__layout__02__bg);
    z-index: 1;
    width: 9em;
}

/*  固定ページ  */
.page .table__layout__01 th,
.page .table__layout__01 td {
    width: 100%;
    display: block;
    border-top-width: 0;
}

.page .table__layout__02 thead {
    display: none;
}
.page .table__layout__02 th,
.page .table__layout__02 td {
    display: block;
    border-top-width: 0;
}
.page .table__layout__02 tbody th {
    background: var(--table__layout__02__bg);

}
.page .table__layout__02 tbody td {
    position: relative;
    padding-left: 11em;
}
.page .table__layout__02 tbody td::before {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 2em;
    z-index: 2;
}
.page .table__layout__02 tbody td::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: var(--table__layout__02__bg);
    z-index: 1;
    width: 9em;
}

/*  アーカイブページ  */

/*  カテゴリーページ  */
    

/*  お問い合わせページ  */
.contact {
    width: 100%;
}
.contact__flex {
    display: block;
}
.contact__flex__left {
    background: #9ddeec;
}
.contact__flex__right {
    background: #fff;
}
.contact__flex input {
    font-size: 16px;
}
.contact_date_dl {
    display: block;
}
.contact_date_dl dt::after {
    content: none;
}

}

/*==============================================*/
/*  スマートフォン  */
/*==============================================*/
@media (max-width: 559px){

/*  ヘッダー  */

/*  フッター  */

/*  タイトル  */

/*  ブログ  */

/*  固定ページ  */

/*  アーカイブページ  */

/*  カテゴリーページ  */

}

/*==============================================*/
/*  カラー  */
/*==============================================*/


/* ロゴの文字色 */
.header_flex_left h1 a .logo_text {
  color: #fff;
}

/* 医院見学・歯科相談会の背景色 */
.top_box_01 {
  background: #dceff3;
}

/*  ご挨拶の背景のテキスト 右上  */
.bg_greeting::before {
/*
  content: "Greeting";
  color: #95deed;
  opacity: 0.12;
*/
}
/*  ご挨拶の背景のテキスト 左下  */
.bg_greeting::after {
/*
  content: "KAWAMAGARI \A FAMILY CLINIC \A ";
  color: #8ed9e9;
  opacity: 0.12;
*/
}
/*  経歴のタイトル 背景色と文字色  */
.career h3 {
  background: #95deed;
  color: #195A8B;
}
/*  経歴のリストの色  */
.career_table_block li {
  color: #3B4043;
}

/*  感染症対策の取り組みの背景色  */
.top_box_feature {
    background: #95deed;
}

/*  診療時間の背景色  */
.bg_time {
  background: #95deed;
}

/*  診療科目の背景色  */
.menu_list li {
  background: #95deed;
}

/*  マスクで口臭が気になりませんか？の変更  */
.frame_info {
  color: #fff;  /* 文字色 */
  background: #f5bbc8;  /* 背景色 */
}

/*  フッターの3種のボタンの背景色変更(インスタ、電話予約、WEB予約)  */
.footer_btn a {
  background: #95deed;
}

.mb30 {
  margin-bottom: 30px;
}
@media (min-width: 960px) {
  .pc_hide {
    display: none !important;
  }
}
@media (min-width: 560px) and (max-width: 959px) {
  .tb_hide {
    display: none !important;
  }
}
@media (max-width: 559px) {
  .sp_hide {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .tel {
    pointer-events: none;
  }
}
h2 {
  text-align: center;
}
.disIB {
  display: inline-block !important;
}
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

.main_image img {
  width: 100%;
}
.main_visual {
  text-align: center;
}
.main_visual img {
  width: 100%;
}
.wrap {
  /*
  min-height: 100vh;
  */
  position: relative;
}
.page_wrap {
  text-align: center;
}
.bg_gradient01 {
  padding: 100px 0;
  background-size: 200% 200%;
}
@media (max-width: 559px) {
  .bg_gradient01 {
    padding: 0;
  }
}
.bg_gradient02 {
  background: #DCEFF3;
  padding: 100px 0;
  background-size: 200% 200%;
  /*
  animation: bggradient 20s linear infinite;
  */
}
.bg_gradient03 {
  padding: 100px 0;
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bg_black {
  color: #fff;
}
.bg_green {
  background: rgba(83, 172, 184, 0.3);
  color: #fff;
}
.bg_white {
  background-color: #fff;
}
.bg_night {
  background: #000;
  background-image: linear-gradient(to top, #1e3c72 0%, #1e3c72 1%, #2a5298 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
}
.bg_night h2 {
  font-size: 40px;
  letter-spacing: 8px;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 40px;
  line-height: 1.2;
}
@media (max-width: 559px) {
  .bg_night h2 {
    font-size: 28px;
  }
}
.bg_night h2, .bg_night p {
  /*
    color: #B67B03;
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    */
}

.page,
.single__page {
  padding: 40px 0 0;
}
.inner {
  width: 1140px;
  max-width: 100%;
  padding: 0 18px;
  margin-left: auto;
  margin-right: auto;
}
.inner_w {
  width: 1360px;
  max-width: 100%;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.box {
  padding: 20px;
  display: inline-block;
  text-align: left;
}
.box h1 {
  text-align: center;
  margin-bottom: 20px;
}
.box p {
  margin-bottom: 20px;
}
.cLB {
  color: #fff;
}
.cLP {
  color: #fc88c2;
}
.main_image {
  position: relative;
}
.main_image img {
  display: block;
  width: 100%;
}
@media (max-width: 1440px) {
  .main_image .main_image_over img {
    width: 18vw;
  }
}
@media (max-width: 1220px) {
  .main_image .main_image_over {
    left: auto;
    right: 10px;
    transform: translate(0, 0);
    margin-top: -110px;
  }
}
.main_image_over {
  position: absolute;
  left: 50%;
  transform: translate(380px, -110px);
}
.main_image_over img {
  display: block;
}
.top_box_01 {
  text-align: center;
}
.top_box_01 .inner {
  padding-bottom: 5px;
}
.line_pc_box ul {
  display: flex;
  justify-content: center;
  margin: 0px auto 60px;
  width: 650px;
  font-weight: 700;
}
.line_pc_box ul li img {
  width: 200px;
}
.line_pc_box ul p {
  font-size: 24px;
  margin-bottom: 10px;
}
.line_pc_box ul .btn01 {
  background: #8CCBC3;
  color: #fff;
  padding: 7px 40px 9px;
  border-radius: 40px;
  display: inline-block;
  text-decoration: none;
  margin-top: 40px;
}
.line_box {
  margin-bottom: 50px;
  /*
  @media(max-width: 559px){
      margin-bottom: 10px;
  }
  */
}
.line_box a {
  display: inline-block;
  text-decoration: none;
  font-size: 28px;
}
.line_box img {
  width: 130px;
}
.top_text {
  text-align: center;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  letter-spacing: 1.26px;
  line-height: 1.2;
  padding: 70px 0 15px;
}
.top_text_image {
  display: block;
  margin-bottom: 55px;
}
@media (max-width: 959px) {
  .top_text {
    font-size: 5vw;
    padding-top: 40px;
  }
}
.top_box_frame {
  padding: 90px 0 60px;
  margin-bottom: 60px;
}
@media (max-width: 959px) {
  .top_box_frame {
    background: none;
    position: relative;
  }
  .top_box_frame::before, .top_box_frame::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 30px;
  }
  .top_box_frame::before {
    top: 0;
    background-position: 50% 0%;
  }
  .top_box_frame::after {
    bottom: 0;
    background-position: 50% 100%;
  }
}
@media (max-width: 559px) {
  .top_box_frame {
    padding: 60px 0 10px;
  }
}
.measures_box {
  border-radius: 20px 20px 0 0;
  background: #FEEAEA;
}
.measures_box_title {
  background: #95deed;
	color: #195A8B;
  font-size: 5vw;
  font-weight: bold;
  line-height: 1.4;
  margin: -10px 0 20px;
  padding: 10px 0;
  border-radius: 20px 20px 0 0;
}
.measures_box_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 10px;
}
@media (max-width: 559px) {
  .measures_box_list li {
    flex-basis: 30%;
  }
  .measures_box_list li:nth-child(2) {
    margin-left: 2.5%;
    margin-right: 2.5%;
  }
  .measures_box_list li:nth-child(4) {
    margin-right: 1.25%;
	  margin-top: 1.25%;
  }
  .measures_box_list li:nth-child(5) {
    margin-left: 1.25%;
	  margin-top: 1.25%;
  }
}
.top_box_frame_image_list {
  width: 778px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 50px;
}
@media (max-width: 959px) {
  .top_box_frame_image_list {
    flex-wrap: wrap;
    width: 420px;
  }
  .top_box_frame_image_list li {
    flex-basis: 32%;
  }
}
@media (max-width: 559px) {
  .top_box_frame_image_list {
    justify-content: center;
  }
  .top_box_frame_image_list li {
    flex-basis: 27%;
    margin: 0 2% 1%;
  }
}
.top_box_frame_date {
  font-size: 80px;
  color: #9B9F90;
  letter-spacing: 0;
}
@media (max-width: 559px) {
  .top_box_frame_date {
    font-size: 11vw;

  }
}
.top_box_frame_notice {
  font-size: 17px;
  color: #9B9F90;
  letter-spacing: 6.8px;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 4vw;
}
.top_box_frame_image {
  margin-bottom: 4vw;
}
.top_box_frame_last {
  font-size: 26px;
  color: #8FAEA0;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
.top_box_frame_last > span {
  display: inline-block;
  border-top: 1px solid #8FAEA0;
  border-bottom: 1px solid #8FAEA0;
  line-height: 1.4;
  padding: 5px 0;
}
@media (max-width: 559px) {
  .top_box_frame_last {
    font-size: 5vw;
  }
}
/*
.bg_greeting {
  background: #fff;
  padding: 5px 0;
  position: relative;
  overflow: hidden;
}
.bg_greeting::before {
  font-size: 305px;
  font-family: 'Yusei Magic', sans-serif;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  margin-left: 340px;
}
.bg_greeting .inner {
  position: relative;
}
@media (max-width: 959px) {
  .bg_greeting .inner {
    padding-bottom: 0;
  }
}
*/

.bg_greeting {
  background: #fff;
  background: #eee;
  /* padding: 5px 0; */
  padding-top: 30px;
  position: relative;
  overflow: hidden;
}
.bg_greeting::before {
  font-size: 305px;
  font-family: 'Yusei Magic', sans-serif;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  margin-left: 340px;
}
.bg_greeting .inner {
  position: relative;
  text-align: left;
}

.bg_greeting .inner::before {
  content: "";
  position: absolute;
  right: 0;
  top: 30px;
  bottom: 0;
  width: 280px;
  mask: url(https://sagami-stationdental.com/wp-content/uploads/2025/09/img_greeting_mask.png) 50% 100% / contain no-repeat;
  background: url(https://sagami-stationdental.com/wp-content/uploads/2025/09/img_greeting.jpg) 50% 100% / contain no-repeat;
}
@supports (background-image: url('image.webp')) {
  .bg_greeting .inner::before {
    background-image: url(https://sagami-stationdental.com/wp-content/uploads/2025/09/img_greeting_960.webp);
  }
}

@media (max-width: 959px){  
  .bg_greeting .inner {
        padding-bottom: 50vw;
  }
  .bg_greeting .inner::before {
    height: 50vw;
    right: 0;
    left: 0;
    bottom: 0;
    top: unset;
    width: 100%;
  }
}
@media (max-width: 559px){
  .bg_greeting .inner {
    padding-bottom: calc(75vw + 30px);
    background: #eee;
  }
  .bg_greeting .inner::before {
    height: 75vw;
  }
}

@media (min-width: 960px) {
  .bg_greeting .inner {
    padding: 20px 310px 20px 20px;
    background: #eee;
  }
}

.bg_greeting h2 {
  color: #195A8B;
  display: block;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 16px;
  line-height: 1.45;
  margin-bottom: 30px;
}
@media (max-width: 559px) {
  .bg_greeting h2 {
    font-size: 28px;
    letter-spacing: 0.2em;
  }
}

.greeting {
  color: #333;
  padding: 70px 0 75px;
  letter-spacing: 0.2px;
}
.greeting_box {
  display: flex;
  justify-content: space-between;
}
.greeting_img {
/*   width: 400px; */
	width: 380px;
}

.greeting_text_main {
  font-size: 30px;
  color: #195A8B;
  margin-bottom: 20px;
}
.greeting_text_main > span {
  display: inline-block;
  font-family: 'Zen Antique', serif;
}

.greeting_text {
  width: 700px;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
/*   margin-left: auto; */
	margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 960px) {
  .greeting_text {
/*     max-width: calc(100% - 420px); */
	  max-width: calc(100% - 400px);
  }
}
@media (max-width: 959px) {
  .greeting {
    width: 100%;
  }
}
@media (max-width: 959px) {
  .greeting {
    padding-top: 10%;
    padding-bottom: 0;
  }
  .greeting_box {
/*     flex-wrap: wrap; */
	  flex-direction: column-reverse;
  }
	
	.greeting_img {
		width: 90%;
		padding-top: 10px;
		padding-bottom: 20px;
        margin: auto;
	}
	.greeting_text {
		width: 100%;
	}
}
.greeting h2 {
  font-size: 40px;
  color: #95deed;
  color: #495456;
  letter-spacing: 8px;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 15px;
  font-family: 'Zen Antique Soft', serif;
}
@media (max-width: 559px) {
  .greeting h2 {
    text-align: center;
  }
}
.greeting .greeting_name {
  color: #000;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 5.6px;
  text-align: right;
  margin-top: 20px;
/*  margin-right: 55px;*/
}
@media (max-width: 959px) {
  .greeting .greeting_name {
    margin-right: 0;
  }
  .greeting .greeting_text_inner h3 {
    text-align: center;
    margin-bottom: 5px !important;
  }
    .greeting_text_main {
        font-size: min(30px,5.5vw);
    }
}
@media (max-width: 559px) {
    .greeting_text_main {
        font-size: min(30px,4.9vw);
        text-align: left;
        margin: 0 -10px;
    }
}
.top_box_feature {
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.feature .img_feature {
  margin-bottom: 92px;
}
.feature h1 {
  font-size: 58px;
  font-weight: 900;
  font-style: normal;
  line-height: 1.2;
}
.feature h1 + p {
  font-size: 34px;
  font-weight: 900;
  font-style: normal;
}
.feature .feature_cap {
  color: #8FAEA0;
  display: inline-block;
  font-size: 30px;
  font-family: 'Yusei Magic', sans-serif;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
  letter-spacing: 0.93px;
}
@media (max-width: 959px) {
  .feature h1 {
    font-size: 34px;
  }
  .feature h1 + p {
    font-size: 28px;
  }
  .feature .feature_cap {
    font-size: 4.1vw;
  }
}
@media (max-width: 559px) {
  .feature h1 {
    font-size: 6vw;
    margin: 0 -10px;
  }
  .feature h1 + p {
    font-size: 5vw;
  }
}
@media (min-width: 960px) {
  .feature_img_wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
  }
  .feature_img_wrap li {
    flex-basis: 20%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .feature_img_wrap li:nth-child(1) img {
    margin-left: 0;
    margin-right: -10px;
  }
  .feature_img_wrap li:nth-child(5) img {
    margin-left: -10px;
    margin-right: 0;
  }
  .feature_img_wrap li:nth-child(1), .feature_img_wrap li:nth-child(3), .feature_img_wrap li:nth-child(5) {
    flex-direction: column-reverse;
  }
  .feature_img_wrap li:nth-child(1) img, .feature_img_wrap li:nth-child(3) img, .feature_img_wrap li:nth-child(5) img {
    margin-bottom: 35px;
  }
  .feature_img_wrap li:nth-child(1) .feature_number, .feature_img_wrap li:nth-child(3) .feature_number, .feature_img_wrap li:nth-child(5) .feature_number {
    margin-top: -15px;
  }
}
@media (min-width: 1400px) {
  .feature_img_wrap img {
    width: 274px;
    max-width: unset;
    margin: 0 -5px;
    display: block;
  }
}
@media (max-width: 1399px) and (min-width: 960px) {
  .feature_img_wrap img {
    width: 103%;
    margin: 0 -1.5%;
  }
}
@media (max-width: 559px) {
  .feature_main_title {
    letter-spacing: -2px;
  }
}
.feature_number {
  color: #8FAEA0;
  font-family: 'Yusei Magic', sans-serif;
  font-size: 84px;
  letter-spacing: 1.68px;
  line-height: 1;
  margin-bottom: 5px;
  display: inline-block;
}
.feature_title {
  font-size: 20px;
  margin-bottom: 20px;
}
.feature_sub_title {
  font-size: 13px;
  display: block;
}
@media (max-width: 959px) {
  .feature_caption {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    width: 300px;
    max-width: 100%;
    margin: 0 auto 40px;
    text-align: left;
  }
  .feature_caption ::before {
    content: "";
    position: absolute;
    height: 45px;
    width: 1px;
    background: #fff;
    left: 72px;
    top: 50%;
    transform: translateY(-50%);
  }
  .feature_caption dt {
    width: 70px;
    flex-basis: 70px;
  }
  .feature_caption dd {
    width: calc(100% - 70px);
    flex-grow: 1;
    margin-bottom: 0;
    padding-left: 20px;
    font-size: 18px;
  }
  .feature_caption .feature_number {
    font-size: 52px;
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 1px;
  }
}
.bg_recruit {
  padding: 60px 0;
}
@media (max-width: 959px) {
  .bg_recruit {
    padding: 40px 0;
  }
}
.recruit_table {
  margin: 0 auto 40px;
}
.recruit_table tr:nth-child(2n+1) {
  background: #eee;
}
.recruit_table th, .recruit_table td {
  padding: 10px 20px;
}
.recruit_table th {
  border-right: 1px solid #000;
}
.recruit_table td {
  text-align: left;
}
@media (max-width: 959px) and (min-width: 560px) {
  .recruit_table th {
    width: 8em;
  }
}
@media (max-width: 559px) {
  .recruit_table th, .recruit_table td {
    display: block;
    font-size: 16px;
  }
  .recruit_table th {
    border-bottom: 1px solid #000;
    border-right: 0;
  }
}
.logo_mark {
  width: 40px;
}
.title {
  color: #95deed;
  display: block;
  line-height: 1.45;
  margin-bottom: 15px;
	font-weight: 600;
}
@media (max-width: 559px) {
  .title {
    letter-spacing: 0.2em;
  }
}
.sub_title {
  color: #95E2EF;
  font-size: 30px;
  margin-bottom: 20px;
}
.bg_time {
  padding: 60px 0 90px;
  text-align: center;
  color: #fff;
}
.time_table {
  max-width: 100%;
  margin: auto;
  font-size: 16px;
  margin-bottom: 20px;
	color: #195A8B;
}
.time_table th, .time_table td {
/*  border: 1px solid #195A8B;*/
  padding: 15px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #195A8B;
}
.time_table th {
  font-weight: 400;
}
.time_table td {
  font-weight: 100;
}
@media (max-width: 959px) {
  .time_table {
    width: 100%;
  }
  .time_table th, .time_table td {
    padding: 10px;
    font-size: 20px;
  }
}
@media (max-width: 559px) {
  .time_table th, .time_table td {
    padding: 5px;
    font-size: 16px;
  }
}
.time_table_rest {
  font-size: 20px;
  margin: 0 auto;
  text-align: left;
  width: 880px;
	color: #195A8B;
}
@media (max-width: 959px) {
  .time_table_rest {
    max-width: 100%;
    text-align: left;
  }
}
.time_table_notice {
  color: #fff;
  font-size: 28px;
  text-decoration: underline rgba(253, 232, 119, 0.35) 10px;
  text-underline-offset: -5px;
}
@media (max-width: 569px) {
	.time_table_rest th,
	.time_table_rest td {
	}
	.time_table_rest th {
		text-align: center;
		display: block;
		width: 100% !important;
		flex-basis: 100%;
		padding: 10px;
	}
	.time_table_rest tr {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.time_table_rest td {
		display: block;
		width: 50%;
		flex-basis: max(50%,11em);
		padding: 0 10px;
		text-align: center;
	}
	.time_table_rest tr::after {
		content: "";
		display: block;
		clear: both;
	}
	.time_table_rest td[colspan="3"] {
		flex-basis: 100%;
	}
}
.time_table_notice_strong {
  font-size: 46px;
}
@media (max-width: 959px) {
  .time_table_notice {
    font-size: 4.7vw;
  }
  .time_table_notice_strong {
    font-size: 46px;
    font-size: 7.9vw;
  }
}
.bg_menu .inner {
  padding-top: 100px;
  padding-bottom: 55px;
}
@media (max-width: 959px) {
  .bg_menu .inner {
  padding-top: 50px;
  padding-bottom: 50px;
  }
}
.bg_menu .img_menu {
  margin-bottom: 50px;
  display: block;
}

.frame_info {
  text-align: center;
  border-radius: 31px;
  padding: 35px 44px 44px;
  margin: 0 auto;
  font-size: 31px;
  font-weight: 500;
  font-style: normal;
  width: 910px;
  max-width: 100%;
}
.frame_info h2 {
  line-height: 1.4;
  margin-bottom: 28px;
  color: #fff;
	font-weight: 600;
}
.text__right {
	text-align: right;
}
@media (max-width: 959px) {
  .frame_info {
    font-size: 24px;
  }
	
	.text__right {
		font-size: .8em;
	}
}
@media (max-width: 559px) {
  .frame_info {
    padding: 7vw 5vw 7vw;
    font-size: 5vw;
  }
}
.menu_list {
  display: flex;
  justify-content: center;

  width: 1106px;
  max-width: 100%;
/*   margin: 0 auto 55px; */
	margin: 0 auto;
    gap: 0 15px;
}
@media (max-width: 959px) {
  .menu_list {
    flex-wrap: wrap;
/*     margin: 0 auto 30px; */
	  margin: 0 auto;
  }
}
.menu_list li {
  width: 263px;
  flex-basis: 263px;
  flex-basis: 23.7%;
  color: #195A8B;
  text-align: center;
  padding: 5px;
  font-size: 28px;
  font-weight: 600;
  border-radius: 10px;
}
@media (max-width: 959px) {
  .menu_list li {
    flex-basis: 48%;
    margin-bottom: 15px;
/*     margin-bottom: 4%; */
  }
}
@media (max-width: 450px) {
  .menu_list li {
    flex-basis: 100%;
  }
}
.tel_num {
  color: #fff;
  font-size: 49px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 35px;
  line-height: 1;
}
.tel_num a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
.tel_num span {
  display: inline-block;
  padding-left: 53px;
  position: relative;
}
.tel_num span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(img/ico_phone.png) 0 0/contain no-repeat;
  width: 50px;
  height: 100%;
  margin-top: 4px;
  image-rendering: -webkit-optimize-contrast;
}
@media (max-width: 600px) {
  .tel_num {
    font-size: 6vw;
    letter-spacing: 0.2em;
  }
  .tel_num span {
    padding-left: 7vw;
  }
}
/*
@media (max-width: 959px) {
    .tel_num a {
        border: 2px solid #fff;
        padding: 20px 30px;
        font-size: 30px;
        border-radius: 30px
    }
}
@media (max-width: 559px) {
    .tel_num a {
        padding: 10px;
        font-size: 18px;
    }
}
*/
.footer_address {
  font-size: 20px;
  color: #3B4043;
  letter-spacing: 8px;
  font-weight: 300;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 559px) {
  .footer_address {
    font-size: 3.5vw;
  }
}
.footer_copyright {
  font-size: 12px;
  letter-spacing: 4.8px;
  margin: 60px 0;
  text-align: center;
}
.btn {
  text-align: center;
}
.btn a {
  display: inline-block;
  background: #54acb8;
  color: #fff;
  padding: 20px 10px 20px 20px;
  width: 260px;
  max-width: 100%;
  font-size: 28px;
  border-radius: 10px;
  position: relative;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 10px;
  height: 10px;
  border: 4px solid #fff;
  border-bottom: 0;
  border-left: 0;
  transform: translateY(-50%) rotate(45deg);
}
.bg_contact {
  padding: 80px 0;
}
.contact_form table {
  width: 100%;
  margin-bottom: 40px;
}
.contact_form table tr:nth-child(2n+1) {
  background: #dceff3;
}
.contact_form table th, .contact_form table td {
  padding: 20px;
  border-bottom: 1px solid #fff;
}
.contact_form table td {
  text-align: left;
}
.contact_form table td p + p {
  margin-top: 10px;
}
.contact_form .form_btn {
  text-align: center;
}
@media (max-width: 959px) {
  .contact_form th, .contact_form td {
    display: block;
  }
}
.contact_form input[size="20"] {
  padding: 10px;
  width: 4em;
  font-size: 16px;
}
.contact_form input[size="10"] {
  padding: 10px;
  width: 50%;
  font-size: 16px;
}
.contact_form input[size="3"], .contact_form input[size="4"] {
  padding: 10px;
  font-size: 16px;
}
.contact_form input[size="3"] {
  width: 4em;
}
.contact_form input[size="4"] {
  width: 5em;
}
.contact_form select {
  padding: 10px;
  margin-bottom: 5px;
  margin-right: 2px;
  font-size: 16px;
}
.contact_form textarea {
  width: 100%;
  height: 120px;
  padding: 10px;
  font-size: 16px;
  font-family: unset;
}
.contact_form input[type="submit"] {
  -webkit-appearance: none;
  width: auto;
  padding: 12px 40px 15px;
  font-size: 18px;
  background: #fff;
  color: #54acb8;
  cursor: pointer;
  border: 2px solid #54acb8;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 5px;
}
.contact_form input[type="submit"]:hover {
  background: #54acb8;
  color: #fff;
  border: 2px solid #fff;
}
.contact_form input[type=radio] {
/*   display: none; */
	width: auto;
}
.contact_form input[type=radio] + span {
  display: inline-block;
/*   position: relative; */
/*   width: 1em;
  height: 0.6em; */
}
.contact_form input[type=radio] + span::before {
  font-size: 24px;
  top: 50%;
  transform: translate(0, -50%);
}
.mwform-checkbox-field label, .mwform-radio-field label {
	display: flex;
	align-items: center;
}
/*
.contact_form input[type=radio] + span::before, .contact_form input[type=radio] + span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.contact_form input[type=radio] + span::before {
  left: 0;
  width: 1em;
  height: 1em;
  background: #fff;
  line-height: 1;
}
.contact_form input[type=radio] + span::after {
  left: 0.25em;
  width: 0.7em;
  height: 0.7em;
  background: #54acb8;
  opacity: 0;
}
.contact_form input[type=radio]:checked + span::after {
  opacity: 1;
}
*/

.contact_form_radio {
	display: flex;
    flex-flow: column;
}

label[for="btn_toggle"] {
  display: block;
  position: relative;
  padding: 0 110px;
}
label[for="btn_toggle"]::before {
  content: "CLICK";
  position: absolute;
  top: 50%;
  right: 0;
  color: #8FAEA0;
  font-family: 'Yusei Magic', sans-serif;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  border: 1px solid #8FAEA0;
  padding: 10px;
  border-radius: 10px;
  transition-duration: 0.2s;
}
label[for="btn_toggle"]:hover::before {
  background: #8FAEA0;
  color: #fff;
}
@media (max-width: 559px) {
  label[for="btn_toggle"] {
    padding: 0 80px 0 0;
  }
  label[for="btn_toggle"]::before {
    font-size: 16px;
  }
}
.box_toggle {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: 1s;
}
#btn_toggle:checked ~ .box_toggle {
  height: auto;
  opacity: 1;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year,
.ui-datepicker-calendar {
    font-family: 'Noto Sans JP',"メイリオ", "Meiryo", Sans-Serif;
}
.bg_map {
  padding-top: 50px;
  padding-bottom: 50px;
}
.google_map {
  position: relative;
  padding-top: 500px;
  overflow: hidden;
  margin: 60px 0;
}
@media (max-width: 559px) {
  .google_map {
    padding-top: 450px;
  }
}
.google_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer_yoyaku {
  display: flex;
  justify-content: space-between;
  margin-top: -10px;
}
@media (min-width: 960px) {
  .footer_yoyaku {
    justify-content: flex-end;
  }
}
.footer_yoyaku li {
  flex-basis: 48%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 960px) {
  .footer_yoyaku .btn02 {
    margin-top: 10px;
  }
}
@media (max-width: 959px) {
  .footer_yoyaku {
    justify-content: center;
    margin: 30px 0 0;
  }
  .footer_yoyaku li {
    margin-bottom: 30px;
  }
}
@media (max-width: 559px) {
  .footer_yoyaku {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_yoyaku li {
    flex-basis: 300px;
  }
}
.line_qr_chord {
  width: 147px;
}
.footer_yoyaku_line {
  flex-basis: 220px;
}
.btn_line.btn02 a {
  background: #00b904;
  border: 1px solid #00b904;
  color: #fff;
  padding: 7px 20px 5px;
  display: inline-block;
  border-radius: 10px;
  transition: all .5s;
  text-decoration: none;
}
.copyright_border {
  border: 0;
  border-top: 1px solid #72766A;
  margin: 50px auto;
  width: 100%;
  max-width: 910px;
}
.feature h1 span {
  color: #8FAEA0;
}
.line_pc_box ul li {
  margin: 0 20px;
}
.time_title {
  color: #195A8B;
  display: block;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 16px;
  line-height: 1.45;
  margin-bottom: 30px;
}
@media (max-width: 559px) {
  .time_title {
    font-size: 28px;
    letter-spacing: 0.2em;
  }
}
.web_text {
  color: #8CCBC3;
}
.footer_br {
  display: none;
}
.footer {
  text-align: center;
  color: #72766A;
}
.footer > p {
  font-size: 16px;
  line-height: 1.7;
}
.footer_title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.footer_top_btn a {
  text-decoration: none;
  display: inline-block;
  padding: 10px 30px 12px 30px;
  background: #0b9dbd;
  margin-bottom: 40px;
  color: #fff;
  border-radius: 10px;
}

.top_box_frame_image_list {
  display: none;
}
.footer {
  text-align: center;
  color: #72766A;
}
.footer > p {
  font-size: 16px;
  line-height: 1.7;
}
.footer_title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.footer_title a {
    color: inherit;
    text-decoration: none;
}
.footer .footer_tel {
    margin-top: 0.5em;
    font-size: 200%;
}
@media (max-width: 959px) {
	.sp_footer_fixed {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 60px;
        z-index: 20;
/*		box-shadow: 0 0 5px #666;*/
	}
    .sp_footer_fixed_web,
	.sp_footer_fixed_tel {
        flex-grow: 1;
    }
    .sp_footer_fixed_web {
        background: hsl(200,81%,81%);
    }
	.sp_footer_fixed_tel {
		background: #f6b9a8;
    }
    .sp_footer_fixed_web a,
	.sp_footer_fixed_tel a {
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		font-size: 20px;
    }
    .sp_footer_fixed_web a {
        background: hsl(200,81%,81%);
        color: #fff;
    }
	.sp_footer_fixed_tel a {
		background: #f6b9a8;
		color: #fff;
	}
    .sp_footer_fixed_web a span,
    .sp_footer_fixed_tel a span {
        display: inline-block;
        position: relative;
        padding-left: 36px;
    }
    .sp_footer_fixed_web a span::before {
		content: "";
        width: 10vw;
        left: 0;
        height: 100%;
        position: absolute;
        -webkit-mask-image: url("./img/common/ico_pc.svg");
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: 0 0;
        -webkit-mask-size: contain;
        mask-image: url("./img/common/ico_pc.svg");
        mask-repeat: no-repeat;
        mask-position: 0 0;
        mask-size: contain;
        background: #fff;
        margin-top: 1px;
    }
    .sp_footer_fixed_tel a span::before {
		content: "";
        width: 10vw;
        left: 0;
        height: 100%;
        position: absolute;
        -webkit-mask-image: url("./img/common/ico_phone.svg");
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: 0 0;
        -webkit-mask-size: contain;
        mask-image: url("./img/common/ico_phone.svg");
        mask-repeat: no-repeat;
        mask-position: 0 0;
        mask-size: contain;
        background: #fff;
        margin-left: 6px;
        margin-top: 1px;
    }
	#page-top {
		bottom: 75px;
	}
}
@media (max-width: 559px) {
.page,
.single__page {
  padding: 0 0 0;
}
  .bg_gradient01 {
    background: #DCEFF3;
  }
  .footer {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .footer_br {
    display: block;
  }
  .footer_title {
    font-size: 26px;
  }
  .footer > p {
    font-size: 15px;
  }
  .footer_space {
    display: none;
  }
  .footer_copyright {
    font-size: 14px;
    padding: 40px 0;
  }
}
.top_box_frame_image_list {
  display: none;
}
.header_hamburger {
  width: 30px;
  height: 24px;
  cursor: pointer;
}
.header_hamburger span {
  width: 100%;
  height: 4px;
  background: #fff;
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
}
.header_hamburger span:nth-of-type(1) {
  margin-bottom: 6px;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.header_hamburger span:nth-of-type(2) {
  margin-bottom: 6px;
}
.header_hamburger span:nth-of-type(3) {
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.header_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}
.header_flex_left {
  height: 100%;
}
.header_flex_left h1 {
  height: 100%;
}
.header_flex_left h1 a {
  height: 100%;
  font-size: 18px;
  color: #72766A;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.header_flex_left h1 a img {
  height: 80%;
  width: auto;
}
.header_flex_left h1 a .logo_text {
/*   font-size: 16px; */
	padding-left: 5px;
	font-size: 18px;
	font-weight: 600;
}
.header_flex_right nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header_flex_right nav ul li {
  padding: 0 20px;
  height: 20px;
}
.header_flex_right nav ul li a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  display: block;
}
.header_flex_right nav ul li:last-child {
  padding-right: 0;
}
.header_flex_right nav ul li:not(:last-child) {
  border-right: 1px solid #fff;
}
.header_icon {
  flex-grow: 1;
  text-align: right;
  padding: 10px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media(max-width: 559px) {
  .header_icon {
    padding: 10px;
  }
}
.header_icon a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header_icon img {
  max-height: 100%;
  width: auto;
}
.blog_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.blog_flex_left {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
}
.blog_flex_left_bottom {
  text-align: right;
  margin-top: 18px;
}
.blog_flex_left_bottom a {
  font-size: 18px;
  text-decoration: none;
  color: #8CCBC3;
  font-weight: 600;
}
.blog_flex_left h3 {
  font-weight: 400;
  color: #8CCBC3;
  text-align: center;
  font-size: 26px;
  padding-bottom: 18px;
  letter-spacing: 0.15em;
}
.blog_flex_left ul li {
  border-top: 1px solid #8CCBC3;
}
.blog_flex_left ul li a {
  color: #3B4043;
  text-decoration: none;
  padding: 23px 18px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog_flex_left ul li a div {
  width: 120px;
  height: 80px;
  overflow: hidden;
}
.blog_flex_left ul li a div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .3s;
  transition: .3s;
}
.blog_flex_left ul li a div img:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.blog_flex_left ul li a p {
  font-size: 15px;
  padding: 5px 0;
  padding-left: 10px;
  width: calc(100% - 120px);
}
.blog_flex_left ul li a p:hover {
  text-decoration: underline;
}
.blog_flex_left ul li:last-child {
  border-bottom: 1px solid #8CCBC3;
}
.blog_flex_right {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
}
.blog_flex_right_bottom {
  text-align: right;
  margin-top: 18px;
}
.blog_flex_right_bottom a {
  font-size: 18px;
  text-decoration: none;
  color: #8CCBC3;
  font-weight: 600;
}
.blog_flex_right h3 {
  font-weight: 400;
  color: #8CCBC3;
  text-align: center;
  font-size: 26px;
  padding-bottom: 18px;
  letter-spacing: 0.15em;
}
.blog_flex_right ul li {
  border-top: 1px solid #8CCBC3;
}
.blog_flex_right ul li a {
  color: #3B4043;
  text-decoration: none;
  padding: 23px 18px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog_flex_right ul li a div {
  width: 120px;
  height: 80px;
  overflow: hidden;
}
.blog_flex_right ul li a div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .3s;
  transition: .3s;
}
.blog_flex_right ul li a div img:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.blog_flex_right ul li a p {
  font-size: 15px;
  padding: 5px 0;
  padding-left: 10px;
  width: calc(100% - 120px);
}
.blog_flex_right ul li a p:hover {
  text-decoration: underline;
}
.blog_flex_right ul li:last-child {
  border-bottom: 1px solid #8CCBC3;
}
.back {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
}
.slide_menu {
  height: 100vh;
  width: 90%;
  max-width: 340px;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  z-index: 10000000000;
  overflow: scroll;
}
.slide_menu_form {
  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;
  width: 100%;
  height: 39px;
}
.slide_menu_form input[type="text"] {
  width: calc(100% - 39px);
  height: 100%;
  border-radius: none;
  border: 2px solid #d8d8d8;
  border-right: none;
  font-size: 15px;
  padding: 10px;
}
.slide_menu_form input[type="submit"] {
  width: 39px;
  height: 100%;
  border: 2px solid #d8d8d8;
  background: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  font-size: 15px;
}
.slide_menu_block {
  width: 100%;
  padding-bottom: 15px;
}
.slide_menu_top {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  border-bottom: 2px solid #95deed;
  margin-bottom: 45px;
}
.slide_menu_top p {
  color: #95deed;
  font-size: 20px;
  font-weight: bold;
  padding-left: 5px;
}
.slide_menu h2 {
  background: #95deed;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  text-align: left;
  display: block;
  margin-bottom: 20px;
  color: #195A8B;
	font-weight: 600;
}
.slide_menu_content {
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.slide_menu_content nav ul li a {
  background: #dceff3;
  color: #fff;
  font-size: 14px;
}
.slide_menu_content nav ul li a::before {
  content: '\f138';
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #fff;
  font-size: 14px;
  margin-right: 7px;
}
.slide_menu_content nav ul li a:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.slide_menu_content_box {
  width: 100%;
  display: block;
  text-decoration: none;
}
.slide_menu_content_box_img {
  width: 100%;
  height: 44vw;
  max-height: 175px;
  margin-bottom: 10px;
  overflow: hidden;
}
.slide_menu_content_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .3s;
  transition: .3s;
}
.slide_menu_content_box_img img:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.slide_menu_content_box h4 {
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
  color: #3B4043;
}
.slide_menu_content_box h3:hover {
  text-decoration: underline;
}
.slide_menu_content_box:not(:last-child) {
  padding-bottom: 20px;
}
.slide_menu_content:not(:last-child) {
  margin-bottom: 45px;
}
.slide_menu.show {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.slide_menu nav ul li a {
  display: block;
  border-bottom: 1px dotted #fff;
  color: #333;
  text-decoration: none;
  padding: 18px;
  font-size: 15px;
}
.fixed {
  overflow: hidden;
}
.blogs_inner {
  width: 940px;
  max-width: 100%;
  padding: 0 18px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 55px;
}
.blogs_box_img {
  width: 100%;
  height: 290px;
  overflow: hidden;
}
.blogs_box_img img {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .3s;
  transition: .3s;
}
.blogs_box_img img:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.blogs_box_bottom {
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.blogs_box_bottom h3 {
  color: #8CCBC3;
  padding-bottom: 18px;
  font-size: 21px;
}
.blogs_box_bottom h3:hover {
  text-decoration: underline;
}
.blogs_box_bottom p {
  color: #3B4043;
  font-size: 15px;
}
.blogs_box_bottom p:hover {
  text-decoration: underline;
}
.blogs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blogs ul li {
  width: 48.5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 40px;
}
.blogs ul li a {
  text-decoration: none;
  border: 1px solid #d8d8d8;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  display: block;
}
.contact_form {
  width: 100%;
  width: 75%;
  margin: auto;
}

.contact_form table {
  width: 100%;
  margin-bottom: 20px;
}

.contact_form th {
	font-weight: 600;
	position: relative;
}

.contact_form th,
.contact_form td {
  padding: 10px;
  border-top: 1px solid #dceff3;
}

.contact_form tr:last-child th,
.contact_form tr:last-child td {
  border-bottom: 1px solid #dceff3;
}

/*
.contact_form tr:nth-child(2n+1) th,
.contact_form tr:nth-child(2n+1) td {
	background: rgba(83,172,193, 0.2);
}
*/
.contact_form tr:nth-child(2n+0) th,
.contact_form tr:nth-child(2n+0) td {
  background: rgba(255, 255, 255, 0.2);
}

.contact_form th {
  width: 40%;
  text-align: left;
  vertical-align: middle;
}

.contact_form input,
.contact_form select,
.contact_form textarea {
  width: 100%;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #6ba3b1;
}

.contact_form input[type=checkbox] {
  width: auto;
/*   display: none; */
}

.mwform-checkbox-field-text {
/*   padding-left: 35px; */
  position: relative;
  min-height: 25px;
  display: flex;
  align-items: center;
}

.contact_form_two input:last-of-type {
	display: inline-block;
	margin-top: 5%;
}

/* .mwform-checkbox-field-text::before {
  content: "\f096";
  font-family: FontAwesome;
  font-size: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  color: #47CDDB;
  line-height: 1;
  transform: translateY(-50%);
  margin-top: 3px;
} */

/* input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
  content: "\f046";
} */

.contact_form textarea {
  height: 100px;
  max-width: 100% !important;
  width: 100% !important;
}

.contact_form .rq,
.contact_form .no_rq {
  font-size: 60%;
  vertical-align: top;
  display: inline-block;
  color: #fff;
  padding: 3px 7px 5px;
  float: right;
/*   margin-top: 2%; */
  line-height: 1;
	position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
}

.contact_form .rq {
  background: #f00;
}

.contact_form .no_rq {
  background: #00b7ca;
}

.contact_form .wpcf7-not-valid-tip {
  margin-top: 5px;
  display: inline-block;
}

.submit_btn {
  text-align: center;
  margin: 30px 0;
}

.submit_btn > span {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

.submit_btn > span::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 192px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #ffffff transparent;
}

.submit_btn button {
  width: 240px;
  padding: 10px;
  margin: 10px auto 0;
  -webkit-appearance: none;
  background: #f3afbe;
  border: 0;
  color: #5a091b;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  border-radius: 10px;
  outline: 0;
  position: relative;
  display: block;
}

.submit_btn button[name="submitBack"] {
  width: 180px;
  border: 1px solid #f3afbe;
  background: none;
  color: #f3afbe;
  margin-top: 20px;
}

/*
button[name="submitBack"]::before,
button[name="submitSend"]::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: -2em;
}
button[name="submitBack"]::before {
  content: "\f0e2";
	font-weight: 900;
}

button[name="submitSend"]::before {
  content: "\f003";
	font-weight: 900;
}
*/
.submit_btn button:hover {
  opacity: .7;
}
.contact_form_flex {
  display: flex;
  border: 1px solid #72766A;
  border-top: none;
}
.contact_form_left {
  width: 30%;
  padding: 15px;
  background: #8CCBC3;
  color: #fff;
  font-weight: 600;
  text-align: left;
  border-right: 1px solid #72766A;
}
.contact_form_right {
  width: 70%;
  padding: 15px;
}
@media (max-width: 559px) {
  .contact_form_flex {
    flex-wrap: wrap;
  }
  .contact_form_left, .contact_form_right {
    width: 100%;
  }
  .contact_form_left {
    border-right: 0;
  }
}
.contact_form_right input, .contact_form_right textarea {
  width: 100%;
  padding: 3px;
  box-sizing: border-box;
}
.salary_table_right_flex_height {
  height: 79px;
}
.wpcf7-submit {
  margin: 0 auto;
  display: block;
  margin-top: 25px;
  padding: 13px 35px;
  border-radius: 5px;
  border: 2px solid #8CCBC3;
  color: #8CCBC3;
  background: #fff;
}
.wpcf7-exclusive-checkbox {
  display: flex;
  flex-flow: column;
}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.wpcf7-checkbox label input {
  width: auto;
}
.wpcf7-list-item {
  margin: 0;
}
.salary_table_right {
  display: none;
}
@media screen and (max-width: 1237px) {
  .salary_table_right_flex_height {
    height: 96px;
  }
}
@media screen and (max-width: 959px) {
  .header {
    padding: 0 15px;
  }
.contact_form .rq,
.contact_form .no_rq {
	right: 20px;
}
  .header_flex_left h1 a img {
    height: 70%;
  }
  .header_flex_left h1 a {
    font-size: 16px;
  }
  .blog_flex {
    display: block;
  }
  .blog_flex_left {
    margin: 0 auto;
    width: 100%;
    max-width: 550px;
    padding: 10px;
    margin-bottom: 15px;
  }
  .blog_flex_right {
    margin: 0 auto;
    width: 100%;
    max-width: 550px;
    padding: 10px;
  }
  .blogs_box_img {
    height: 58vw;
    max-height: 300px;
  }
  .blogs_inner {
    max-width: 550px;
    width: 95%;
  }
  .blogs ul li {
    width: 100%;
  }
}
.bg_banner .inner {
  padding-top: 55px;
  padding-bottom: 55px;
}
.bg_banner + .bg_banner .inner {
  padding-top: 0;
  padding-bottom: 110px;
}
@media screen and (max-width: 959px) {
  .bg_banner .inner {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
  .bg_banner + .bg_banner .inner {
    padding-top: 0vw;
    padding-bottom: 8vw;
  }
}
@media screen and (max-width: 559px) {
  .blog_flex_left h3 {
    font-size: 21px;
    padding-bottom: 8px;
  }
  .blog_flex_left ul li a {
    padding: 21px 7px;
  }
  .blog_flex_left ul li a div {
    width: 110px;
    height: 70px;
  }
  .blog_flex_left ul li a p {
    width: calc(100% - 110px);
    padding: 0;
    padding-left: 10px;
    font-size: 14px;
  }
  .blog_flex_right h3 {
    font-size: 21px;
    padding-bottom: 8px;
  }
  .blog_flex_right ul li a {
    padding: 21px 7px;
  }
  .blog_flex_right ul li a div {
    width: 110px;
    height: 70px;
  }
  .blog_flex_right ul li a p {
    width: calc(100% - 110px);
    padding: 0;
    padding-left: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .blog_flex_left ul li {
    font-size: 14px;
  }
  .blog_flex_right ul li {
    font-size: 14px;
  }
  .header_flex_left h1 a {
    font-size: 3.5vw;
  }
  .blogs_box_bottom {
    padding: 16px;
  }
  .blogs_box_bottom h3 {
    font-size: 18px;
    padding-bottom: 14px;
  }
  .blogs_box_bottom p {
    font-size: 14px;
  }
}
.blog_page p {
  margin-bottom: 20px;
}
.career {
  width: 1140px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 18px;
}
.career h3 {
  border-radius: 30px;
  padding: 7px 20px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  text-indent: 16px;
}
.bg_greeting::after {
  position: absolute;
  font-size: 146px;
  font-family: 'Yusei Magic', sans-serif;
  bottom: 0px;
  left: 0;
  white-space: pre;
  text-align: left;
  line-height: 1.0;
  pointer-events: none;
}
.career_table {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
.career_table_block {
/*   width: 48%; */
/* 	width: 52%; */
	width: 535px;
  box-sizing: border-box;
  padding: 0 15px;
  text-align: left;
  line-height: 1.7;
}
.career_table_block li {
  font-size: 17px;
  text-align: left;
  padding-left: 23px;
  position: relative;
}
/*
.career_table_block li:not(:last-of-type) {
  margin-bottom: 5px;
}
*/
.career_table_block li::before {
  content: '';
  display: block;
  border-radius: 50%;
  background: #95deed;
  height: 15px;
  width: 15px;
  position: absolute;
  left: 0;
  top: 5px;
}
.career_list_inner {
  position: relative;
/*   padding-left: 6.5em; */
    /*
	padding-left: 10em;
    */
}
.career_list_inner_date {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 959px) {
  .career {
    padding: 38px 10px;
  }
  .career_table {
    display: block;
  }
  .career_table_block {
    width: 100%;
    padding: 28px 0 0 0;
  }
}
@media screen and (max-width: 559px) {
  .career_list_inner {
      padding-left: 0;
  }
  .career_list_inner_date {
      position: static;
      display: block;
  }
}
.blog_page {
  text-align: left;
}
.blog_page h3 {
  color: #8FAEA0;
  margin-bottom: 20px;
  font-size: 30px;
}
.blog_page h4 {
  color: #8FAEA0;
  margin-bottom: 15px;
  font-size: 24px;
}
.recruitment_table {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.recruitment_table tr {
  border-bottom: 2px dotted #8CCBC3;
}
.recruitment_table th {
  width: 20%;
  text-align: left;
  padding: 15px;
}
.recruitment_table td {
  width: 80%;
  padding: 15px;
  text-align: left;
}
.recruitment_table td p {
  padding: 0 !important;
}
.recruitment_table td a {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #889B7B;
}
.recruitment_table td p:last-child {
  margin: 0;
}
.recruitment_table_flex {
  display: flex;
}
.contact_form_right input {
  font-size: 16px;
}
.contact_form_right {
  display: flex;
  align-items: center;
}
.contact_form_right .size_mini {
  width: 3em;
  margin-right: 0.5em;
}
.contact_form_left_size_mini.contact_form_right {
  width: auto !important;
}
.wpcf7-date, .wpcf7-form-control-wrap {
  width: 100% !important;
}
.recruitment_table_flex_left {
  padding-right: 10px;
}
.recruitment_table_flex_left_nowrap {
  white-space: nowrap;
}

h3 {
  color: hsl(13,81%,66%);
  display: block;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 16px;
  line-height: 1.45;
  margin-bottom: 15px !important;
  font-family: 'Zen Antique', serif;
}
h4 {
  color: #195A8B;
  display: block;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.45;
  margin-bottom: 15px !important;
  font-family: 'Zen Antique', serif;
}
.page_wrap {
/*   padding-top: 50px; */
  width: 92%;
  margin: auto;
}
.recruitment_table_week {
  display: block;
  font-weight: bold;
}
.recruitment_table_week_bottom {
  margin-top: 15px;
}
.salary_table_price {
  text-align: right;
}
.salary_title {
  color: #8CCBC3;
  display: block;
  font-size: 20px;
  font-weight: 400;
  padding: 10px 0;
  text-align: center;
}
.salary_table {
  display: flex;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.salary_block {
  margin-bottom: 35px;
}
.salary_table_left {
  width: 65%;
  border-right: none;
  border-top: 1px solid #72766A;
  border-left: 1px solid #72766A;
  margin: 0 auto;
}
.salary_table_left_flex_block {
  width: 50%;
  border-right: 1px solid #72766A;
  border-bottom: 1px solid #72766A;
  padding: 10px;
  box-sizing: border-box;
}
.salary_table_right {
  width: 50%;
  border-top: 1px solid #72766A;
}
.salary_table_left_flex {
  display: flex;
  width: 100%;
}
.salary_table_right_flex {
  display: flex;
  width: 100%;
}
.salary_table_left_flex_th {
  text-align: center;
  background: #8CCBC3;
  color: #fff;
  font-weight: 600;
}
.salary_table_right_flex_block {
  width: 50%;
  border-right: 1px solid #72766A;
  border-bottom: 1px solid #72766A;
  padding: 10px;
  box-sizing: border-box;
}
.salary_table_left_flex_block_text {
  text-align: left;
  font-size: 11px;
}
.salary_bottom {
  text-align: center;
  font-size: 13px;
  margin: 0 auto;
}
.career_table_block ul {
  padding: 0 15px;
}
@media screen and (max-width: 959px) {
  .recruitment_table th {
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
  .recruitment_table td {
    display: block;
    width: 100%;
    padding-top: 5px;
  }
}
@media screen and (max-width: 600px) {
  .salary_table {
    display: block;
  }
  .salary_bottom {
    width: 100%;
  }
  .salary_table_left {
    width: 100%;
  }
  .salary_table_right {
    width: 100%;
    border-left: 1px solid #72766A;
    margin-top: 15px;
  }
  .salary_table_right_flex_height {
    height: auto;
  }
}
.must {
  color: red;
  margin-right: 5px;
}
.contact_form_right {
  text-align: left;
}
input[type="submit"], input[type="button"] {
  border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 16px;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  font-size: 16px;
}
input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}

.text_privacy {
    text-align: center;
    margin: 20px 0 10px;
}
.checkbox_privacy {
    text-align: center;
}


.slide_menu input {
  border-radius: 0 !important;
}

/* ここから追加 */
.footer_sns {
  display: block;
  width: 50px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.sidebar_sns {
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 15px;
  width: 45px;
}
.main_image {
  margin-top: 65px;
}
.footer_nav {
  margin-top: 20px;
}
.footer_nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_nav li a {
  color: #72766A;
  display: inline-block;
  padding: 0 10px;
  text-decoration: none;
}
.footer_nav li:not(:last-of-type) a {
  border-right: 1px solid #72766A;
}
.footer_nav li {
  line-height: 1.2;
}
.footer_btn {
  margin: 25px auto 0;
  padding: 0 3.75%;
  width: 910px;
  max-width: 100%;
}
.footer_btn ul {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.footer_btn li {
  flex: 1 1 30%;
}
.footer_btn a {
  display: block;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
}
.footer_btn .ico_insta, .footer_btn .ico_tel, .footer_btn .ico_web,.footer_btn .ico_fb  {
  padding: 20px 0;
  position: relative;
  display: inline-block;
  padding-left: 60px;
}
.footer_btn .ico_insta {
  background: url(../../uploads/2023/01/ico_link_insta_white.png) 0 50% / 40px auto no-repeat;
}
.footer_btn .ico_tel {
  background: url(../../uploads/2023/01/ico_tel.png) 0 50% / 40px auto no-repeat;
}
.footer_btn .ico_web {
  background: url(../../uploads/2023/01/ico_web.png) 0 50% / 40px auto no-repeat;
}
.footer_btn .ico_fb {
  background: url(../../uploads/2023/01/f_logo_RGB-White_144.png) 0 50% / 40px auto no-repeat;
}
@media (max-width: 559px) {
  .footer_btn ul {
    display: block;
  }
  .footer_btn li {
    margin-bottom: 20px;
  }
}
article h2 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #7faae3;
/*  font-family: 'Zen Antique', serif;*/
  margin-bottom: 30px;
}
@media (max-width: 559px){
	article h2 {
		font-size: 8vw;
	}
}
body.lower article h2 {
  font-family: 'Zen Antique', serif;
}
article h3 {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-align: center;
}
@media (max-width: 559px){
	article h3 {
		font-size: 6.5vw;
	}
}
body.lower article h3 {
  font-family: 'Zen Antique', serif;
}
.post_custom_content p {
  margin-bottom: 1em;
}
.post_custom_content {
  text-align: left;
}
.inner h2 {
  font-size: 40px;
  margin-bottom: 30px;
}


@media screen and (max-width: 959px) {
  .inner h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.googlemap_container {
  position: relative;
  height: 0;
  padding-top: 30%;
}
.googlemap_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flex_row {
  margin: 20px 0;
}

.page_top {
  position: fixed;
  right: 2%;
  bottom: 2%;
  z-index: 50;
}

.page_top a {
  width: auto;
  display: inline-block;
  text-align: center;
  background: #fff;
  color: #95deed;
	text-decoration: none;
  line-height: 1.3;
  padding: 20px 10px 10px;
  border: 1px solid #95deed;
  border-radius: 10px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
}

.page_top a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  border-top: 2px solid #95deed;
  border-left: 2px solid #95deed;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
}

.page_top a:hover {
  opacity: .7;
}

.slide img {
    width: 100%;
}

.slider {
	padding-top: 5%;
}

.menu_text {
	text-align: center;
	padding-top: 30px;
}

.menu_text p {
	display: inline-block;
}

.greeting_img img {
	width: 100%;
	height: auto;
}


.owner__name {
  font-family: "sicyubi-mohitsugyosho", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 150%;
}


@media screen and (max-width: 959px) {
  .salary_table_sp_block .salary_table_left {
    width: 100%;
    max-width: 600px;
  }
  .salary_table_price {
    text-align: left;
  }
	
	.contact_form th {
		width: 100%;
	}
	
	.menu_text p {
		font-size: 17px;
		text-align: left;
	}
	
	.menu_text {
		padding: 30px 20px 0 20px;
	}
}
@media screen and (max-width: 599px) {
  .salary_table_left_flex {
    display: block;
  }
  .salary_table_left_flex_block {
    width: 100%;
  }
	
	.contact_form {
		width: 100%;
	}
	
	.menu_text {
		padding: 30px 0 0 0;
	}
}


.order_change {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: row;
}

.order_change > div {
  flex-basis: 100vw;
  max-width: 100%;
}

@media screen and (min-width: 960px) {
    .top_box_feature {
        order: 1;
    }
    .bg_time {
        order: 2;
    }
    .bg_menu {
        order: 3;
    }
}

.dental_view_list {
  display: flex;
  
}
.dental_view_list li {
  flex-grow: 1;
}
.dental_view_list li img {
  width: 100%;
}
@media screen and (min-width: 560px) {
    .dental_view_list li.dental_view_pc_order1 {
        order: 1;
    }
    .dental_view_list li.dental_view_pc_order2 {
        order: 2;
    }
    .dental_view_list li.dental_view_pc_order3 {
        order: 3;
    }
    .dental_view_list li.dental_view_pc_order4 {
        order: 4;
    }
}
@media screen and (max-width: 559px) {
    .dental_view_list {
        flex-wrap: wrap;
    }
    .dental_view_list li {
        flex-basis: 50%;
    }
}

.philosophy {
    font-family: 'Zen Antique', serif;
    margin: 20px 0 40px;
}
@media screen and (max-width: 959px) {
    .philosophy {
        margin: 40px 0;
    }
}

.concept {
    font-family: 'Zen Antique', serif;
  font-size: 24px;
}

.insta_album_box_title {
    font-size: 24px;
    margin-bottom: 20px;
}

.insta_album_box_wrap {
  width: 900px;
  margin: 40px auto 80px;
  position: relative;
  max-width: 90%;
}
.insta_album_box_wrap::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 50px;
  bottom: -40px;
  right: -60px;
  background: #eee;
  z-index: -1;
  max-width: 100vw;
}

.insta_album_box_wrap .slick-next:before,
.insta_album_box_wrap .slick-prev:before {
    font-size: 40px;
}
.insta_album_box_wrap .slick-prev {
    left: -40px;
}
.insta_album_box_wrap .slick-dotted.slick-slider {
    padding-bottom: 30px;
}
.insta_album_item_img {
  padding: 50px 0 40px;
  box-shadow: 0 -1px 10px 0 #ccc;
  margin:  20px;
  position: relative;
    background: #fff;
}
.insta_album_item_img::before,
.insta_album_item_img::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
}
.insta_album_item_img::before {
    top: 0;
    height: 50px;
    background: url(img/common/ico_insta_grey.png) 10px center / 30px auto no-repeat,
    url(img/common/ico_heart.png) calc( 100% - 10px) center / 30px auto no-repeat;
}
.insta_album_item_img::after {
    bottom: 0;
    height: 40px;
    background: url(img/common/ico_heart.png) 10px center / 20px auto no-repeat,
    url(img/common/ico_comment.png) 40px center / 20px auto no-repeat,
    url(img/common/ico_kamihikouki.png) 70px center / 20px auto no-repeat;
}
.insta_album_item_comments {
    text-align: left;
    padding: 0 25px;
}
@media(max-width: 959px){
    .insta_album_box_wrap::before {
        left: 0;
        right: 0;
        
    }
    .insta_album_item_img {
        margin: 10px;
    }
}
@media(max-width: 559px){
    .insta_album_box_wrap .slick-next,
    .insta_album_box_wrap .slick-prev {
        display: none !important;
    }
}





.mainvisual01 {
    padding: 1.6vw 0 2vw;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    background: url(../../uploads/2023/02/bg_main_visual_pc-1.png) 50% 50% / contain no-repeat;
}

.mainvisual01_logo {
/* width: 30%;
*/
    margin: auto;
}
.mainvisual01_logo img {
    /*
  width: 35%;
  margin-bottom: 5%;
    */
  margin: auto;
  display: block;
    width: 15%;
}
.mainvisual01_logo_jp {
/*    font-size: 2.5vw;*/
    font-size: 3.5vw;
    letter-spacing: 0.05em;
    text-align: center;
    color: #807f80;
    font-weight: bold;
}
.mainvisual01_logo_en {
/*    font-size: 1.2vw;*/
    font-size: 1.6vw;
    letter-spacing: 0.2em;
    text-align: center;
    color: #807f80;
    line-height: 1.2;
    font-weight: bold;
}
.mainvisual01_text {
    color: #20578b;
    text-align: center;
    font-size: 4vw;
    padding-top: 2vw;
    font-weight: 900;
    letter-spacing: 0;
}

.mainvisual01_circle {
  position: absolute;
  right: 2vw;
  width: 14vw;
  height: 14vw;
  display: flex;
  align-items: center;
  bottom: 2vw;
  color: #fff;
  border-radius: 50%;
  background: #feaace;
  justify-content: center;
  text-align: center;
  font-size: 1.5vw;
  line-height: 1.3;
}
.mainvisual01_text_mini {
  font-size: 55%;
}

.yellow_pen {
  background: linear-gradient(180deg, rgba(246,255,150,0) 0%, rgba(246,255,150,0) 60%, rgba(246,255,150,1) 60%,rgba(246,255,150,1) 100%);
}
@media (max-width: 959px){
    .mainvisual01 {
        padding: 2vw 2vw 55vw;
        padding: 2vw 2vw 15vw;
        background: url(../../uploads/2023/02/bg_mainvisual_sp.png)  50% 50% / contain no-repeat;
    }
    .mainvisual01_logo {
        width: 90%;
        margin-bottom:  3%;
    }
    .mainvisual01_text {
        font-size: 8.5vw;
    }
    .mainvisual01_circle {
        left: 50%;
        bottom: 11%;
        width: 35vw;
        height: 35vw;
        font-size: 4.2vw;
        transform: translateX(-50%);
    }
    
    .mainvisual01_logo_jp {
        font-size: 6.5vw;
    }
    .mainvisual01_logo_en {
        font-size: 2.8vw;
    }
}




.top_dentalview_notice {
  background: #f0fafd;
}

.top_dentalview_notice {
  background: #f0fafd;
  padding: 50px 0;
  border-radius: 50px;
}


.top_dentalview_notice_box_title {
  font-size: 85px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #eb99ae;
}
.top_dentalview_notice_box_title_mini {
  font-size: 50%
}
.top_dentalview_notice_box_text {
  font-size: 24px;
  font-weight: bold;
  margin:20px 0 40px;
  color: #9b9c9c;
}

.top_dentalview_notice_box_rebon {
  /* background: #a8e1ee; */
  /* color: #2a5788; */
  width: 85%;
  margin:  auto;
}
.top_dentalview_notice_box_rebon_text {
/*
	background: #a1e1ef;
	color: #1a5887;
	font-weight: bold;
	font-size: 260%;
	width: 86%;
*/
	margin: -40px auto 40px;
	position: relative;
	height: 90px;
}
.top_dentalview_notice_box_text01 {
  font-size: 32px;
  font-weight: bold;
  margin:20px 0 40px;
  color: #9b9c9c;
  line-height: 1.4;
}
.top_dentalview_notice_box_rebon_text svg {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}
@media (max-width: 959px){
	.top_dentalview_notice_box_rebon_text {
		margin: -40px auto 20px;
		padding-top: 15%;
		height: 0;
	}
}
/*
.top_dentalview_notice_box_rebon_text::before {
	content: "";
	position: absolute;
	clip-path: url(./rebon.svg);
	background: #a1e1ef;
}
*/
@media (min-width: 960px){
    .top_dentalview_notice_box_menu_wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 850px;
        margin: 70px auto 30px;
        grid-gap: 20px;
    }
}

.top_dentalview_notice_box_menu {
  background: #fff;
  font-size: 40px;
  font-weight: bold;
/*  margin: 0 auto 20px;*/
  min-width: 300px;
  display: block;
  padding: 10px 40px 12px;
  box-shadow: inset 0 0 0 7px  #fff,inset 0 0 0 8px #eb99ae;
  color: #eb99ae;
/*  margin-top: -10px;*/
}
.top_dentalview_notice_box_last {
  font-size: 26px;
  font-weight: bold;
  width: 64%;
  border-top: 1px solid #eb99ae;
  border-bottom: 1px solid #eb99ae;
  padding: 15px 0;
  margin: auto;
  color: #eb99ae;
}

@media (max-width: 1079px){
    .top_dentalview_notice_box_title {
    font-size: 9vw;

    }
    .sp_no {
        display: none;
    }
    .sp_block{
/*        display: block;*/
        font-size: 90%;
    }
    .sp_block2 {
        display: inline-block;
        margin-bottom: 2%;
    }
    .top_dentalview_notice_box_text {
    font-size: 3vw;
    }
    .top_dentalview_notice_box_text01 {
    font-size: 3.2vw;
    }
    .top_dentalview_notice_box_menu {
    font-size: 5vw;
/*
    margin: -0.5vw auto 5vw;
    width: 36vw;
    padding: 0.8vw 2ve 1vw;
*/
        margin: 0 2vw 2vw;
    }
    .top_dentalview_notice_box_last {
    font-size: 2.5vw;
    width: 85%;
    padding: 1.5vw 0 1.7vw;
    }
}
@media (max-width: 559px){
	.top_dentalview_notice_box_menu {
		min-width: unset;
		width: 90%;
	}
}


/*.top_dentalview_notice_box_rebon  {
  position: relative;
}
.top_dentalview_notice_box_rebon > span {
  transform-origin: bottom center;
  position: absolute;
  width: 2em;
  left: 380px;
  height: 300px;
}
.top_dentalview_notice_box_rebon > span:nth-child(1) {transform: rotate(-1deg) translateX(-10em);}
.top_dentalview_notice_box_rebon > span:nth-child(2) { transform: rotate(-16deg) translateX(-150%); }
.top_dentalview_notice_box_rebon > span:nth-child(3) { transform: rotate(-15deg) translateX(-100%); }
.top_dentalview_notice_box_rebon > span:nth-child(4) { transform: rotate(-15deg) translateX(-50%); }
.top_dentalview_notice_box_rebon > span:nth-child(5) { transform: rotate(-9deg); }
.top_dentalview_notice_box_rebon > span:nth-child(6) { transform: rotate(-2.5deg) translatex(-6.0em); }
.top_dentalview_notice_box_rebon > span:nth-child(7) { transform: rotate(-2deg) translatex(-5.1em); }
.top_dentalview_notice_box_rebon > span:nth-child(8) { transform: rotate(-1.5deg) translatex(-4.5em);  }
.top_dentalview_notice_box_rebon > span:nth-child(9) { transform: rotate(-1deg) translatex(-3.9em); }
.top_dentalview_notice_box_rebon > span:nth-child(10){ transform: rotate(0) translatex(-3.3em); }
.top_dentalview_notice_box_rebon > span:nth-child(11) { transform: rotate(0) translatex(-2.2em); }
.top_dentalview_notice_box_rebon > span:nth-child(12) { transform: rotate(0) translatex(-1.1em); }
.top_dentalview_notice_box_rebon > span:nth-child(13) { transform: rotate(0); }
.top_dentalview_notice_box_rebon > span:nth-child(14) { transform: rotate(40deg); }
.top_dentalview_notice_box_rebon > span:nth-child(15) { transform: rotate(40deg); }
.top_dentalview_notice_box_rebon > span:nth-child(16) { transform: rotate(40deg); }
.top_dentalview_notice_box_rebon > span:nth-child(17) { transform: rotate(40deg); }
.top_dentalview_notice_box_rebon > span:nth-child(18) { transform: rotate(40deg); }
.top_dentalview_notice_box_rebon > span:nth-child(19) { transform: rotate(40deg); }
.top_dentalview_notice_box_rebon > span:nth-child(20) { transform: rotate(40deg); }
.top_dentalview_notice_box_rebon > span:nth-child(21) { transform: rotate(40deg); }
.top_dentalview_notice_box_rebon > span:nth-child(22) { transform: rotate(40deg); }
.top_dentalview_notice_box_rebon > span:nth-child(23) { transform: rotate(40deg); }
*/

.table_ct {
    border: 2px #fff solid;
    width: 100%;
    border-collapse: collapse;
	width: 43em;
	margin: 0 auto 1.5em;
}

.table_ct th{
    border: 1px #f6b9a7 solid;
    background-color: #fcfcfc;
    padding: 13px;
    text-align: left;
	width: 13em;
}
.table_ct td{
    border: 1px #f6b9a7 solid;
    background-color:#fff;
    padding: 10px;
    text-align: left;
}
@media (max-width: 959px){
	.table_ct {
		width: 100%;
	}
	.table_ct th {
		width: 100%;
        display: block;
        border-bottom: 0;
	}
	.table_ct tr:not(:first-of-type) th  {
        border-top: 0;
    }
	.table_ct td {
		width: 100%;
        display: block;
	}
}

.day-calendar > h3 + p {
	font-size: 120%;
}
.booking-timelink {
	text-decoration: none;
}
.calender_shortcord .monthly-calendar {
	display: none;
}
.calender_shortcord .day-calendar ~ .calender {
	display: none;
}
.calender {
	display: flex;
    justify-content: center;
    gap: 20px;
    margin: auto;
}
.calender_btn a {
	display: inline-block;
	padding: 20px 60px 20px 40px;
	text-decoration: none;
	background: #f6b9a8;
	color: #fff;
	border-radius: 20px;
	position: relative;
}
.calender_btn a::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 15px;
	border-color: transparent transparent transparent #ffffff;
	transform: translateY(-50%);
}
.calender_btn02 a {
	background: hsl(200,81%,81%);
}
@media (max-width: 559px){
	.calender {
		display: block;
		text-align: center;
	}
	.calender_btn {
		margin-bottom: 20px;
	}
}

.footer_topback {
	margin-bottom: 30px;
}
.footer_topback a {
	display: inline-block;
	margin-bottom: 20px;
	background: #7faae3;
	color: #fff;
	padding: 20px 40px;
	text-decoration: none;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    cursor: pointer;
    border-radius: 12px;
}


.table01 {
	width: auto;
	margin: 0 auto 20px;
}
.table01 th,
.table01 td {
	border-top: 1px solid #7faae3;
	border-bottom: 1px solid #7faae3;
	padding: 15px 50px;
  vertical-align: middle;
}
.table01 th {
	background: #c6dfff;
}
@media (max-width: 559px){
	.table01 th,
	.table01 td {
		width: 100% !important;
        display: block;
	}
}


/* ================================================
ヒントテーブル
================================================ */
.hint_table {
	width: 40em;
	margin: 62px auto 40px;
	position: relative;
    background: #eee;
    border-radius: 10px;
    box-shadow: inset 0 0 0 8px #000;
}
.hint_table th {
	padding: 20px 10px 5px;
    color: #d7835e;
	font-weight: bold;
	text-align: center;
	font-size: 120%;
	position: relative;
}
.hint_table th::before {
    content: 'Point\A!';
    white-space: pre;
    position: absolute;
    background: #d7835e;
    color: #fff;
    left: -1em;
    top: -1em;
    z-index: 2;
    width: 3.5em;
    height: 3.5em;
    padding-top: 0.8em;
    box-sizing: border-box;
    border-radius: 50%;
    line-height: 1.2;
}
.hint_table th::after {
    content: "";
    bottom: 0;
    position: absolute;
    left: 30px;
    right: 30px;
	border-bottom: 2px dotted #d7835e;
}
.hint_table tbody td:nth-child(2n+1) {
	padding: 10px 10px 25px 30px;
}
/*
.hint_table tbody td:nth-child(2n+0) {
	padding: 10px 30px 25px 10px;
}
.hint_table tbody td:only-child {
	padding: 10px 30px 25px 30px;
}
*/
.hint_table tbody td:nth-child(2n+1){
	padding: 10px 30px 0;
	display: block;
}
.hint_table tbody td:nth-child(2n+0),
.hint_table tbody td:only-child {
	padding: 0 30px 20px;
	display: block;
}
.hint_table td:first-child::before {
	content: "";
	position: absolute;
	left: -55px;
	top: -55px;
	-webkit-mask-image: url("./ico_hint.svg?");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url("./ico_hint.svg");
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	background: #d7835e;
	width: 50px;
	height: 50px;
}

.hint_table::before {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    top: 2px;
    bottom: 2px;
    border: 6px solid #fff;
    border-radius: 7px;
	pointer-events: none;
}
.hint_table::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    top: 7px;
    bottom: 7px;
    border: 2px solid #000;
    border-radius: 7px;
	pointer-events: none;
}
@media (max-width: 959px){	
	.hint_table {
		width: 90%;
		margin: 60px 20px 40px 60px;
		width: calc(100% - 80px);
	}
}

@media (max-width: 559px){	
	.hint_table {
		margin: 60px 20px 40px 20px;
		width: calc(100% - 40px);
	}
	.hint_table tbody td:nth-child(2n+1){
		padding: 10px 30px 0;
		display: block;
	}
	.hint_table tbody td:nth-child(2n+0),
	.hint_table tbody td:only-child {
		padding: 0 30px 20px;
		display: block;
	}
	.hint_table td:first-child::before {
		content: "";
		position: absolute;
		left: 40px;
		transform: rotate(90deg);
	}
}


/* ================================================
Q&A
================================================ */
.qa_box dl {
	margin-bottom: 1em;
	position: relative;
}
.qa_box dt {
	position: relative;
	padding: 0.5em 2em 0.5em 2em;
	border-bottom: 1px solid;
}
.qa_box dd {
	position: relative;
	padding: 0.8em 2em 0.5em 2em;
}

.qa_box dl::before {
	content: "Q";
	position: absolute;
	font-size: 200%;
    left: 0;
    top: 0;
    line-height: 1;
}
.qa_box dt::before,
.qa_box dt::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
}
.qa_box dt::before {
	border-top: 5px solid #666;
    margin-top: 10px;
}
.qa_box dt::after {
	border-right: 5px solid #666;
    margin-right: 8px;
}
.qa_box dl.active dt::after {
	display: none;
}

.qa_box dd::before {
	content: "A";
	position: absolute;
	font-size: 200%;
    left: 0;
    top: 0.2em;
    line-height: 1;
	margin-left: 0.1em;
}
.qa_box dl:nth-child(2n+1) dt {
	border-color: #f4b191;
}
.qa_box dl:nth-child(2n+0) dt {
	border-color: #aad179;
}
.qa_box dl:nth-child(2n+1)::before {
	color: #f4b191;
}
.qa_box dl:nth-child(2n+1) dd::before {
	color: #f4b191;
}
.qa_box dl:nth-child(2n+0)::before {
	color: #aad179;
}
.qa_box dl:nth-child(2n+0) dd::before {
	color: #aad179;
}


.greeting_contents {
    position: relative;
    line-height: 2;
    padding: 40px 0;
    min-height: 840px;
}
.greeting_contents::before {
    content: "";
    position: absolute;
    left:0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: url(../../uploads/2023/05/mari_namura.jpg) 0 0 / 1200px auto no-repeat;
    z-index: -1;
}
@media (max-width: 1300px) and (min-width: 960px){
	.greeting_contents::before {
        background-position: 0 100%;
        background-size: 1200px auto; 
		top: 100px;
		left: -10vw;
	}
	.greeting_contents .post_custom_content {
		width: min(560px,60%);
	}
}
@media (max-width: 959px){
	
	.greeting_contents {
		padding: 0;
	}
	.greeting_contents::before {
		content: none;
	}
	.greeting_contents .post_custom_content {
		padding-top: 104%;
		position: relative;
	}
	.greeting_contents .post_custom_content::before {
		content: "";
		position: absolute;
		left:0;
		top: 0;
		height: 100%;
		width: 100%;
		background: url(../../uploads/2023/05/mari_namura.jpg) 0 0 / 150% auto no-repeat;
		z-index: -1;
	}
}
.chirashi {
    display: flex;
    gap: 0 20px;
    padding: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}
@media(max-width: 559px){
    .chirashi {
        flex-wrap: wrap;
    }
    .chirashi > div {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}



/*
.table_price {
	width: 100%;
	max-width: 660px;
    margin: 0 auto 20px;
}
.table_price td:nth-child(2) {
	text-align: right;
}
.table_price th,
.table_price td {
	padding: 20px;
	width: 50%;
	border-top: 1px solid rgba(244,177,145,1);
	border-bottom: 1px solid rgba(244,177,145,1);
}
.table_price th {
	background: rgba(244,177,145,0.5);
}
.table_price td {
	background: rgba(255,255,255,1);
}
*/


.table_price_02_title {
	text-align: center;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 18px;
}
.table_price_02_title > span {
	display: inline-block;
	padding-left: 24px;
	position: relative;
}
.table_price_02_title > span::before {
	content: "■";
	color: rgb(115, 139, 26);
	position: absolute;
	left: 0;
	font-size: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.table_price_02 {
	max-width: 900px;
	width: 100%;
	margin: 0 auto 50px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 16px;
	color: #382714;
}
.table_price_02 + .table_price_02_note {
	max-width: 900px;
	width: 100%;
	text-align: right;
	margin: -35px auto 40px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.table_price_02 th,
.table_price_02 td {
	padding: 20px 20px;
	width: 50%;
	border-top: 1px solid #382714;
	border-bottom: 1px solid #382714;
}
.table_price_02 th {
	background: #e3e8d1;
	text-align: left;
	font-weight: 700;
	vertical-align: middle;
}
.table_price_02 td {
	font-size: 18px;
	background: #fff;
	text-align: right;
	font-weight: 700;
	vertical-align: middle;
}
.table_price_02 td p:last-child {
	margin-bottom: 0;
}
.table_price_02_tax {
	font-size: 12px;
	vertical-align: bottom;
}
.table_price_02_small {
	font-weight: 400;
	font-size: 14px;
} 
@media (max-width: 559px){
	.table_price_02 th,
	.table_price_02 td {
		display: block;
    	width: 100%;
	    padding: 14px;
	}
	.table_price_02 tr th {
		text-align: center;
		border-bottom: 0;
	}
	.table_price_02 tr td {
		text-align: center;
		border-top: 0;
	}
	.table_price_02 tr:not(:first-child) th {
		border-top: 0;
	}
	.table_price_02 tr:not(:last-child) td {
/*		border-bottom: 0;*/
	}
}




.table_price_title {
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 18px;
}
.table_price_title_inner {
	display: inline-block;
	padding-left: 24px;
	position: relative;
    font-family: 'Shippori Mincho', serif;
}

.table_price {
	max-width: 900px;
	width: 100%;
	margin: 0 auto 50px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 16px;
	color: #382714;
}
.table_price + .table_price_note {
	max-width: 900px;
	width: 100%;
	text-align: right;
	margin: -35px auto 40px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.table_price th,
.table_price td {
	padding: 20px 20px;
	width: 50%;
	border-top: 1px solid #382714;
	border-bottom: 1px solid #382714;
}
.table_price th {
	text-align: left;
	font-weight: 500;
	vertical-align: middle;
    font-family: 'Shippori Mincho', serif;
}
.table_price td {
	font-size: 18px;
	background: #fff;
	text-align: right;
	font-weight: 700;
	vertical-align: middle;
}
.table_price td p:last-child {
	margin-bottom: 0;
}
.table_price_tax {
	font-size: 12px;
	vertical-align: bottom;
}
.table_price_small {
	font-weight: 400;
	font-size: 14px;
} 
@media (max-width: 559px){
	.table_price_title {
		color: #303030;
	}
	.table_price th,
	.table_price td {
		display: block;
    	width: 100%;
	    padding: 14px;
		color: #303030;
	}
	.table_price tr th {
		text-align: center;
		border-bottom: 0;
	}
	.table_price tr td {
		text-align: center;
		border-top: 0;
	}
	.table_price tr:not(:first-child) th {
		border-top: 0;
	}
}
.table_price_title > span::before {
	position: absolute;
	left: 0;
	font-size: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.table_price_03_title > span::before {
	content: "■";
	color: #eb99ae;
}
.table_price_03 th {
	background: rgb(235,153,174,0.5);
}

.table_price_04_title > span::before {
	content: "\002605";
	color: #1a5888;
}
.table_price_04 th {
	background: #95deed;
}

.title_color_pink > h2 {
	color: #eb99ae;
}



.table_price_05_title > span::before {
	content: "■";
	color: rgba(153,169,235,0.7);
}
.table_price_05 th {
	background: rgba(153,169,235,0.3);
}
.frame_r {
	text-align: center;
	position: relative;
	padding: 60px 40px;
/*	background: rgba(153,169,235,0.3);*/
}
.frame_r::before {
	content: "";
	position: absolute;
	width: 100vw;
	left: calc(50% - 50vw);
	top: 0;
	bottom: 0;
	background: rgba(153,169,235,0.3);
	z-index: 1;
	pointer-events: none;
}
.frame_r_inner {
	display: inline-block;
	padding: 30px;
	background: #fff;
	border-radius: 2px;
	text-align: left;
	font-weight: 500;
    line-height: 1.7;
    font-size: 120%;
    font-family: 'Shippori Mincho', serif;
	position: relative;
	z-index: 2;
}
.frame_r_inner p:last-child {
	margin-bottom: 0;
}
.frame_r_tel_num {
	font-size: 150%;
}
@media (max-width: 959px){
	.frame_r {
		padding: 30px 20px;
	}
	.frame_r_inner {
		padding: 20px;
		font-size: 110%;
	}
}
@media (max-width: 559px){
	.frame_r {
		padding: 30px 10px;
	}
	.frame_r_inner {
		text-align: center;
    	font-size: 100%;
	}
}

.page_title_main {
	font-family: 'Playfair Display', serif;
	font-weight: 400;
    font-style: normal;
    font-display: swap;
    color: #442b2b;
    line-height: 1;
    letter-spacing: .04em;
	font-size: 32px;
    padding-left: 7px;
	position: relative;
	margin-bottom: 5px;
}
.page_title_sub {
	font-family: 'Shippori Mincho', serif;
	color: #442b2b;
    line-height: 1;
    letter-spacing: .15em;
	font-size: 16px;
    padding-left: 25px;
	position: relative;
	margin-bottom: 35px;
	
}
.page_title_sub::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 13px;
	width: 4px;
	height: 4px;
	background: rgb(215, 21, 24);
	border-radius: 10px;
}



.page_flow_title {
	font-family: orpheuspro,YuGothic,游ゴシック,Hiragino Kaku Gothic ProN,Hiragino Sans,Noto Sans JP,Meiryo,sans-serif;
	font-family: 'Playfair Display', serif;
	font-weight: 400;
    font-style: normal;
    font-display: swap;
    color: #442b2b;
    line-height: 1;
    letter-spacing: .04em;
	font-size: 32px;
    padding-left: 7px;
	position: relative;
	margin-bottom: 5px;
}
.page_flow_subTitle {
	font-family: YuMincho,游明朝,Times New Roman,Hiragino Mincho ProN,"Noto Serif JP",HGS明朝B,ＭＳ Ｐ明朝,serif;
	font-family: 'Shippori Mincho', serif;
	color: #442b2b;
    line-height: 1;
    letter-spacing: .15em;
	font-size: 16px;
    padding-left: 25px;
	position: relative;
}
.page_flow_subTitle::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 13px;
	width: 4px;
	height: 4px;
	background: rgb(215, 21, 24);
	border-radius: 10px;
}
.page_flow_box {
	margin-top: 35px;
	padding: 60px 81px;
	background: #f6f6f6;
	margin-right: 0vw;
	text-align: center;
}
.page_flow_box .flow_list {
	padding: 0;
	margin: 0;
    display: inline-block;
    text-align: left;
}
.page_flow_box .flow_list > li {
	display: flex;
	padding-bottom: 50px;
	position: relative;
}
.page_flow_box .flow_list > li:last-child {
	padding-bottom: 0;
}
.flow_number {
	font-size: 20px;
	color: #d71518;
	letter-spacing: 0.1px;
	width: 101px;
	padding: 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-family: 'Agdasima', sans-serif;
	position: relative;
}
.flow_number::before {
	content: "";
	position: absolute;
	left: -0.6em;
	top: 0.6em;
	width: 4px;
	height: 4px;
	background: rgb(215, 21, 24);
	border-radius: 10px;
}
.flow_item {
	max-width: calc(100% - 4em);
}
.flow_item_title {
	margin-bottom: 20px;
	font-size: 22px;
	font-family: 'Shippori Mincho', serif;
}
.flow_item_contents {
    font-size: 18px;
}
.flow_item_contents p:last-child {
	margin-bottom: 0;
}

.page_flow_box .flow_list > li::before {
	content: "";
	position: absolute;
	left: 1.2em;
	top: 2em;
	bottom: 0.5em;
	border-left: 1px solid rgb(167, 156, 156);
}
.page_flow_box .flow_list > li:last-child::before {
	content: none;
}
@media (max-width: 559px){
	.page_flow_box{
		padding: 30px 15px 30px 30px;
	}
	.flow_item_title {
		font-size: 20px;
	}
}

@media (max-width: 559px){
	.flow_sp_list li {
		list-style: disc;
	}
	.page .flow_sp_list {
		padding: 0 0 0 1.1em ;
	}
	.flow_number {
		width: 69px;
	}
}
@media (min-width: 560px){
	.page .flow_sp_list {
		padding: 0;
		list-style: none;
		margin-bottom: 0;
	}
	.flow_sp_list::before {
		content: "（";
	}
	.flow_sp_list::after {
		content: "）";
	}
	.flow_sp_list li {
		display: inline-block;
	}
	.flow_sp_list li::after{
		content: "、";
	}
}


.page_prevention_title {
	font-family: 'Playfair Display', serif;
	font-weight: 400;
    font-style: normal;
    font-display: swap;
    color: #442b2b;
    line-height: 1;
    letter-spacing: .04em;
	font-size: 32px;
	position: relative;
	margin-bottom: 5px;
	line-height: 1.7;
}
.page_prevention_subTitle {
	font-family: 'Shippori Mincho', serif;
	color: #442b2b;
    line-height: 1;
    letter-spacing: .15em;
	font-size: 16px;
    padding-left: 25px;
	position: relative;
}
.page_prevention_subTitle::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 13px;
	width: 4px;
	height: 4px;
	background: rgb(215, 21, 24);
	border-radius: 10px;
}
.page_prevention_box ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
	padding: 0;
	margin: 30px 0 0;
}
.page_prevention_box li {
	padding: 20px;
	background: #f6f6f6;
}
.page_prevention_box li.grid_colume_2 {
	grid-column: 1/3;
}
.prevention_title {
	margin-bottom: 20px;
	font-size: 20px;
	color: #d71518;
	font-family: 'Shippori Mincho', serif;
}
.prevention_title_name {
/*	font-family: 'BIZ UDPGothic', sans-serif;*/
}
.prevention_contents {
    font-size: 18px;
}
.prevention_contents p:last-child {
	margin-bottom: 0;
}
.prevention_title_small {
	font-size: 80%;
}
.page_prevention_box li.not_ortho {
	background: rgba(215,21,24,0.07);
}
.page_prevention_box .mark_en {
	font-size: 80%;
}
.prevention_time {
	font-size: 70%;
	display: inline-block;
}
.prevention_price {
	display: inline-block;
}
/*

.page_flow_box ul li::before {
	content: "";
	position: absolute;
	left: 1.2em;
	top: 2em;
	bottom: 0.5em;
	border-left: 1px solid rgb(167, 156, 156);
}
.page_flow_box ul li:last-child::before {
	content: none;
}
*/
@media (max-width: 559px){
	.page_prevention_box{
		padding: 15px;
	}
	.page_prevention_title {
		font-size: 20px;
	}
	.page_prevention_box ul {
		grid-template-columns: 1fr;
	}
	.page_prevention_box li.grid_colume_2 {
		grid-column: unset;
	}
}

.bnr_recruit {
  position: relative;
  max-width: fit-content;
  margin: 40px auto;
  /* container-type: inline-size; */
}
.bnr_recruit_btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% -20%;
}
@media (max-width: 1089px) {
  .bnr_recruit_btn {
    max-width: 40.18%;
  }
}
@media (max-width: 959px) {
  .bnr_recruit {
    margin-bottom: 0;
  }
}