@charset "utf-8";
/* CSS Document */
*,
::before,
::after{
  box-sizing: border-box;
  /* ↓↓debug code↓↓ */
  /* outline: 1px solid red; */
}
body {
  font-family:"游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color:#3e3a3a;
  font-size:17px;
  font-weight:400;
  line-height:1.75;
  letter-spacing:0.05em;
  text-align:justify;
}
/* @font-face {
        src: url("webfonts/NotoSansJP-Regular.woff") format("woff"), url("webfonts/NotoSansJP-Medium.woff") format("woff"), url("webfonts/NotoSansJP-bold.woff") format("woff");
        font-family: "Noto Sans JP";
        font-style: normal;
        font-display: swap;
        font-weight:400 500 700;
} */
a {
  color: #0823a3;
  text-decoration: none;
}
a:hover {
  color:#16A18C;
}
/*tel*/
[href^="tel"]:hover {
  cursor: default;
}
a[href="tel:準備中"] {
  pointer-events: none;
} 

::selection{
  background-color:#99C1DA;
}
::-moz-selection{
  background-color:#99C1DA;
}
body,
.nav_wrap
.nav_wrap.fixed,
#mainvisual,
header,
footer{
  min-width:1340px;
}
@media print{
html {
  -webkit-print-color-adjust: exact;
}
body {
  zoom: 80%;
}
.fixed {
  position: inherit !important;
}
}

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


body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
p,
dt,
dd,
form,
select,
option,
address,
pre {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

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


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

  *ヘッダー

==================================================================================================================================*/
header {
  position:absolute;
  width:100%;
}
header .inner{
  position:relative;
  width:1300px;
  height: inherit;
  margin:auto;
  padding-top:40px;
}
/* ロゴ */
header .header_logo{
  position:absolute;
  top:35px;
  left:0;
  z-index: 11;
}
header .header_logo img{
  width:290px;
}
.header_logo a p{
  font-size:20px;
  text-align:center;
  font-weight:bold;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
  color:#02b1a0;
  padding:0 40px 0 0;
}

/* 住所 */
.header_info{
  float:right;
  margin-right:40px;
  text-align:right;
}

/* ご予約・お問合せ */
.header_tel{
  float:right;
  text-align:right;
  line-height: 1.4;
}
.header_tel a{
  color:#1F2774;
  position:relative;
  padding-left:25px;
  font-size:24.7px;
  letter-spacing:0.1em;
}
.header_tel a:before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:15px;
  height:21.8px;
  margin:auto;
  background-image:url(../images/header_tel.svg);
  background-repeat:no-repeat;
  content:"";
}


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

  nav

============================================================================*/
@media print, screen and (min-width: 641px) {
  .nav_wrap{
    position: absolute;
    z-index: 10;
    top: 47px;
    width: 100%;
  }
  .tgl_menu_list{
    width: 1300px;
    margin: 0 auto;
  }
  .tgl_menu_list ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap:30px;
  }
  .tgl_menu_list ul:first-child{
    margin:0 0 20px;
  }
  .tgl_menu_list ul.tgl_btn_flex{
    display:none;
  }
  .tgl_menu_list ul li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* リンクテキスト */
  .tgl_menu_list ul li a{
    position: relative;
    color: #444;
    line-height: 1;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size:16px;
    font-weight:bold;
  }
  
  .tgl_menu_list ul li p{
    position: relative;
    color: #444;
    line-height: 1.4;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size:16px;
    font-weight:bold;
  }
  
  .tgl_menu_list ul li.btn a{
    display:flex;
    gap:6px;
    justify-content: center;
    align-items: center;
    height:auto;
    padding:15px 20px;
    border-radius:25px;
    /* background:#0823a3; */
    color:#fff;
    min-width:140px;
    text-align:center;
    letter-spacing: 0.1em;
    line-height:1;
    font-size:16px;
    font-weight:bold;
  }
  .tgl_menu_list ul li.btn a::before,.tgl_menu_list ul li.btn a::after{
    content:none;
  }
  .tgl_menu_list ul li.btn.btn_document a{
    width:auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: 0.2s ease-in-out;
  }
  .tgl_menu_list ul li.btn.btn_document a img{
    width:16px;
  }
  .tgl_menu_list ul li.btn.btn_contact a{
    width:auto;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transition: 0.2s ease-in-out;
  }
  .tgl_menu_list ul li.btn.btn_contact a img{
    width:24px;
  }
  
  /* ホバーエフェクト */
  .tgl_menu_list ul li a:hover{
    transform:translate(0,2px);
    transition:0.2s ease-in-out;
  }
  .tgl_menu_list ul li.btn.btn_document a:hover,.tgl_menu_list ul li.btn.btn_contact a:hover{
    box-shadow:0 0 0 rgba(0,0,0,0.2);
  }
  
  /* 追従時の設定 */
  .nav_wrap.fixed{
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background:#fff;
    padding:10px 0;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
  }

  .nav_wrap.fixed .tgl_menu_list nav{
    display:flex;
    flex-direction: row-reverse;
    gap:30px;
  }
  .nav_wrap.fixed .tgl_menu_list ul{
    justify-content: center;
    gap:50px;
  }
  .nav_wrap.fixed .tgl_menu_list ul:first-child{
    margin:0;
  }
}

/*----------ホバーで表示されるナビ----------*/
nav ul li div {
  position: absolute;
  display: none;
  /*1列にしたい場合はwidthを300px前後にしてください*/
  top: 105%;
  left: 0%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  box-shadow:0 0 20px rgba(48 133 196 / 30%);
}
nav ul li div.w265{
  width:265px;
}
nav ul li div.w170{
  width:170px;
}

nav ul li.nav_slidebtm:hover div {
  display: flex;
  flex-wrap: wrap;
}
nav ul li.nav_slidebtm:focus-within > div{
  /* display: flex;
  flex-wrap: wrap; */
}
nav ul li div.child_menu a {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  position: relative;
  padding: 13px 10px;
  border-bottom: 1px solid var(--border-color);
  line-height: 1.4;
  text-align: left;
  font-size: 14px;
  margin: 0 !important;
  /*1列にする場合はwidth不要*/
  width:100%;
}

nav ul li div a:nth-child(even) {
  /*1列にする場合は不要*/
  border-right: 1px solid var(--border-color);
}

nav ul li div a::after,
nav ul li div a::before {
  display: none;
}

nav ul li div.child_menu a{
  font-size:14px;
}
nav ul li div.child_menu a:not(:last-child){
  border-bottom:1px solid #eee;
}

nav ul li div.child_menu a:hover {
  background-color: #00b1a0;
  transform:none;
  color:#fff;
}

.sp_under_nav {
  display: none;
}

/* ------- メガメニュー ------- */
nav ul li.is_mega{
  position: static;
}
nav ul li.is_mega div{
  width: 100%;
}

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

  #mainvisual

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

/* TOP下層共通 */
#mainvisual{
  display:block;
  position:relative;
  background:url(images/mv_bg.jpg);
  background-position: center;
  padding:150px 0 0;
  height:950px;
}
#mainvisual.sub_mainvisual{
  height:320px;
  padding:120px 0 0;
}
#mainvisual.sub_mainvisual::before{
  content:none;
}
#mainvisual .inner{
  position:relative;
  height: inherit;
  width:1300px;
  margin: 0 auto;
  z-index:1;
}
.mainvisual_catch{
  margin:0 0 110px;
  width:560px;
}
.mainvisual_catch p{
  font-weight:bold;
  letter-spacing: 0.05em;
  margin:0 0 10px;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.mainvisual_catch p.sub{
  font-size:49px;
  letter-spacing: 0;
}
.mainvisual_catch p.catch{
  font-size:33px;
  background:linear-gradient(to right ,#00b09f,#5db46c);
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
  color:#fff;
  letter-spacing: 0.07em;
  padding:0 0 0 15px;
}
.mainvisual_catch p.catch small{
  font-size:26px;
  font-weight: 700;
  font-style: normal;
}
.mainvisual_catch p.main{
  font-size:47px;
  line-height:1;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  background: linear-gradient(to right ,#00b09f,#5db46c); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mv_price{
  margin:59px 0 0;
  width:400px;
}
.mv_price p{
  margin:5px 0 0;
  font-size:10px;
  font-weight:normal;
}

.mv_img{
  position:absolute;
  width:800px;
  right:0;
  top:158px;
  display:flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap:20px;
}
.mv_img01{
  width:290px;
}
.mv_img02{
  width:342px;
}
.mv_img03{
  width:250px;
}

.mv_batch{
  position:absolute;
  right:0;
  top:0;
}

.mv_batch ul{
  display:flex;
  gap:20px;
}

.mv_batch ul li{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap:10px;
  width:116px;
  height:116px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 10px rgba(0,0,0,0.1);
  text-align:center;
  font-weight:bold;
  padding:5px 0 0;
}
.mv_batch ul li p{
  font-size:14px;
  line-height:1.2;
  color:#969696;
}
.mv_batch ul li figure{
  height:34px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.mv_batch ul li figure img{
  transform:scale(0.5);
}

.mv_btn ul{
  display:flex;
  justify-content: center;
  gap:60px;
}
.mv_btn a{
  display:flex;
  align-items: center;
  width:320px;
  height:100px;
  padding:0 25px;
  font-size:20px;
  line-height:1.2;
  font-weight:bold;
  color:#fff;
  border:2px solid #fff;
  box-shadow:2px 2px 4px rgba(0,0,0,0.2);
  background:url(images/mv_btn01.jpg);
  background-size:cover;
  border-radius:10px;
}
.mv_btn li:nth-child(2) a{
  background:url(images/mv_btn02.jpg);
  background-size:cover;
}
.mv_btn a:hover{
  box-shadow:none;
  transform:translateY(2px);
  transition:.2s;
}

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

  #contents

==================================================================*/
main{
  display:block;
}
#container{
  padding-top:100px;
}

#contents{
  position:relative;
  padding-top:150px;
  padding-bottom: 40px;
  width:1300px;
  margin:0 auto;
}

.text {
	position:relative;
	margin-bottom:50px;
}
.text.text_bgw {
    padding: 5% 6%;
    background-color: #fff;
}
.text p {
    font-size: 16px;
    line-height: 2;
	margin-bottom:1em;
}

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

  $footer

============================================================================*/
footer {
  position:relative;
  width:100%;
}

.top-bnr{
	width:300px;
	position:fixed;
	bottom:10px;
	right:10px;
	box-shadow:0 0 10px rgba(0,0,0,0.2);
	z-index:100;
	border:4px solid #03afed;
	display:block;
}
.top-bnr.is-close{
  display:none;
}
.top-bnr__close{
	position:absolute;
	top:-12px;
	right:-12px;
	width:24px;
}
@media screen and (max-width: 641px) {
	.top-bnr{
    display:none;
		bottom:60px;
		width:260px;
	}
	.top-bnr__close{
		width:20px;
		top:-14px;
		right:-10px;
	}
}

.footer_info{
  width:1300px;
  margin:0 auto;
  padding:40px 0;
  display:flex;
  justify-content: space-between;
}

.footer_logo{
  max-width:280px;
}


.footer_navi ul{
  display:flex;
  gap:50px;
}

.footer_navi li a{
  font-size:16px;
  letter-spacing: 0.1em;
  color:#333;
}
.footer_navi li a:hover{
  color:#16A18C
}

.footer__office {
	width: 100%;
	border-top: 1px solid rgba(68, 68, 68, 0.2);
	border-bottom: 1px solid rgba(68, 68, 68, 0.2);
}
.footer__office-inner {
	display: flex;
	justify-content: space-between;
	width: 1300px;
	margin: auto;
	padding: 37px 120px 40px 64px;
	box-sizing: border-box;
}
.footer__office-list {
	font-size: 13px;
	/* color: rgba(255, 255, 255, 0.7); */
	letter-spacing: 0.1em;
	line-height: 1.846;
}
.footer__office-list dd {
	margin-bottom: 8px;
}
.footer__office-list dd [href^="tel"] {
	color:#16A18C;
}
.footer__office-title {
	margin-bottom: 24px;
	/* color: #ffffff; */
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1;
}


/* コピーライト */
.copy{
  padding:45px 0;
  text-align: center;
}
.copy small{
  line-height:1;
  font-size:13px;
  letter-spacing:0.2em;
}
.copy a{
  color:#333;
  display:inline-block;
  margin:0 0 0 20px;
  font-size:13px;
}
.copy a:hover{
  color:#16A18C;
  transition: .2s;
}

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

  *ホーム（共通設定）

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

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

  .lineup

==================================================================*/
.lineup{
  padding:0 0 50px;
}
.lineup_flex{
  display:flex;
  justify-content: space-between;
  gap:40px;
}
.lineup_item{
  width:100%;
  background:#D8EFE3;
  padding:30px;
  border-radius:30px;
}
.lineup_item h3{
  text-align:center;
  line-height:1.3;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-size:36px;
  margin:0 0 30px;
}
.lineup_item h3 small{
  font-size:20px;
  display:block;
}
.lineup_img{
  border-radius:25px;
  background:#fff;
  height:380px;
  width:100%;
  margin:0 0 20px;
  padding:30px;
}
.lineup_img figure{
  height:100%;
  width:100%;
  display:flex;
  justify-content: center;
  align-items: center;
}
.full .lineup_img img{
  width:244px;
  height:auto;
}
.semi .lineup_img img{
  width:510px;
  height:auto;
}
.lineup_info h4{
  position:relative;
  margin:0 0 15px;
  font-size:24px;
  font-weight:bold;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  color:#00b1a0;
  text-align:center;
  letter-spacing: 0.1em;
}
.lineup_info p{
  font-size:20px;
  font-weight:bold;
  letter-spacing: 0.1em;
  line-height:1.5;
}
.lineup_item .btn01 a{
  width:320px;
  height:60px;
  margin:30px auto 0;
  font-size:20px;
}


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

  .trouble

==================================================================*/
.trouble{
  position:relative;
  padding:60px 0 80px;
  background:linear-gradient(to bottom, #fff 78%, transparent 78%);
}
.trouble::before{
  position:absolute;
  top:0;
  width:100%;
  height:500px;
  background:#fff;
  content:"";
}
.trouble::after{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:185px;
  background:#fff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  content:"";
}
.trouble_flex{
  position:relative;
  display:flex;
  justify-content: center;
  gap:57px;
  margin:0 0 116px;
}
.trouble_flex::before{
  position:absolute;
  left:0;
  right:0;
  bottom:-88px;
  margin:auto;
  width:38px;
  height:22px;
  background:url(images/trouble_arr.png);
  background-size:cover;
  content:"";
}
.trouble_item{
  position:relative;
  width:570px;
  border-radius:20px;
  box-shadow:0 3px 6px rgba(0,0,0,0.16);
  line-height:1.6;
  background:#def5f3;
  padding:28px 44px;
  border-radius:20px;
  border:6px solid #ace6e1;
}
.trouble_item::before{
  position:absolute;
  bottom:-30px;
  right:15px;
  width:114px;
  height:113px;
  background:url(images/trouble_icon01.png);
  background-size:cover;
  content:"";
}
.trouble_item.trouble_item02{
  background:#e5f2d7;
  border:6px solid #cde6b2;
}
.trouble_item.trouble_item02::before{
  width:110px;
  height:114px;
  background:url(images/trouble_icon02.png);
  background-size:cover;
}
.trouble_item_tit{
  position:relative;
  color:#00b1a0;
  text-align:center;
  padding:0 0 5px;
  margin:0 0 20px;
  font-size:32px;
  border-radius:20px 0 0 20px;
  font-weight:bold;
}
.trouble_item_tit::before{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:27px;
  background:url(images/trouble_tit_line01.png);
  background-size:cover;
  content:"";
}
.trouble_item02 .trouble_item_tit{
  color:#90c854;
}
.trouble_item02 .trouble_item_tit::before{
  background:url(images/trouble_tit_line02.png);
  background-size:cover;
}
.trouble_item ul{
  padding:20px 0 0;
  flex:1;
}
.trouble_item ul li{
  position:relative;
  font-size:18px;
  line-height:1.2;
  padding:0 0 0 24px;
  letter-spacing: 0.1em;
}
.trouble_item ul li:not(:first-child){
  margin:10px 0 0;
}
.trouble_item ul li::before{
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  font-weight:900;
  top:0;
  left:0;
  color:#00b1a0;
}
.trouble_item.trouble_item02 ul li::before{
  color:#90c854;
}
.trouble_future_text{
  position:relative;
  display:table;
  margin:0 auto 40px;
  font-size:26px;
  color:#00b1a0;
  font-weight:bold;
}
.trouble_future{
  display:flex;
  justify-content: center;
  gap:40px;
  margin:0 0 50px;
}
.trouble_future_item{
  width:580px;
  display:flex;
  justify-content: center;
  gap:10px;
}
.trouble_future_item p{
  background:#646464;
  color:#fff;
  text-align:center;
  font-size:20px;
  width:240px;
  line-height:50px;
}

.trouble_img{
  width:540px;
  margin:0 auto;
}


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

  .resolution

==================================================================*/
.resolution{
  position:relative;
  padding:238px 0 157px;
  margin:-130px 0 0;
}
.resolution h2{
  font-size:52px;
}
.resolution:before{
  position:absolute;
  top:-100px;
  width:100%;
  height:1150px;
  background:linear-gradient(to right,#00b09f,#5db46c);
  z-index:-1;
  content:"";
}
.resolution .tit_wrap{
  margin:0 0 80px;
  color:#fff;
}
.resolution .tit_en{
  color:#fff;
}
.resolution .tit_en::before,.resolution .tit_en::after{
  background:#fff;
}
.resolution_info{
  display:flex;
  justify-content: center;
  align-items: center;
  gap:60px;
  margin:0 0 84px;
}
.resolution_info_text{
  width:600px;
  color:#fff;
}
.resolution_info_text h3{
  font-size:26px;
  line-height:1.3;
  letter-spacing: 0.05em;
  margin:0 0 30px;
  font-weight:600;
}
.resolution_info p{
  font-size:18px;
  letter-spacing: 0.05em;
  line-height:1.4;
}
.resolution_img{
  width:400px;
}
.resolution_list{
  display:flex;
  justify-content: space-between;
  margin:0 0 112px;
}
.resolution_list li{
  width:280px;
  text-align:center;
}
.resolution_list li figure{
  margin:0 0 18px;
}
.resolution_list li img{
  border-radius:20px;
  box-shadow:0 0 10px rgba(0,0,0,0.1);
}
.resolution_list li h3{
  font-size:20px;
  font-weight:bold;
  line-height:1.2;
}
.resolution_flow{
  position:relative;
  margin:0 0 104px;
}
.resolution_flow::before{
  position:absolute;
  bottom:-82px;
  width:100%;
  height:31px;
  background:url(images/support_arr.png);
  background-size:cover;
  background-position: center;
  content:"";
}
.resolution_flow h3{
  text-align:center;
  font-size:42px;
  letter-spacing: 0.05em;
  line-height:1.2;
  margin:0 0 55px;
  font-weight:bold;
}
.resolution_flow_box{
  position:relative;
  display:flex;
  gap:20px;
  justify-content: center;
}
.resolution_flow_box::before{
  position:absolute;
  top:135px;
  left:0;
  right:0;
  margin:auto;
  width:970px;
  height:2px;
  background:linear-gradient(to right,#6bd2c8,#a8d47a);
  content:"";
}
.resolution_flow_item{
  padding:30px;
  background:#def5f3;
}
.resolution_flow_box .resolution_flow_item02{
  background:#e5f2d7;
}
.resolution_flow_box h4{
  width:100%;
  height:70px;
  display:flex;
  justify-content: center;
  align-items: center;
  text-align:center;
  color:#fff;
  background:#6bd2c8;
  font-size:26px;
  letter-spacing: 0.05em;
  font-weight:bold;
  margin:0 0 68px;
  border-radius:10px;
}
.resolution_flow_box .resolution_flow_item02 h4{
  background:#a8d47a;
}
.resolution_flow_box ul{
  display:flex;
  justify-content: space-between;
  gap:15px;
}
.resolution_flow_box li{
  width:165px;
  text-align:center;
}
.resolution_flow_box li figure{
  position:relative;
  margin:0 0 20px;
  height:80px;
}
.resolution_flow_box li figure::before{
  position:absolute;
  left:0;
  right:0;
  top:-40px;
  margin:auto;
  width:16px;
  height:16px;
  background:#6bd2c8;
  border-radius:8px;
  content:"";
}
.resolution_flow_box .resolution_flow_item02 li figure::before{
  background:#a8d47a;
}
.resolution_flow_box li figure img{
  width:auto;
  height:100%;
}
.resolution_flow_box li p{
  display:flex;
  justify-content: center;
  align-items: center;
  width:100%;
  height:100px;
  background:#6bd2c8;
  color:#fff;
  line-height:1.2;
  font-size:20px;
  font-weight:bold;
  border-radius:10px;
}
.resolution_flow_box .resolution_flow_item02 li p{
  background:#a8d47a;
}
.resolution_conclusion{
  text-align:center;
}
.resolution_conclusion h3{
  font-size:42px;
  font-weight:bold;
  margin:0 0 37px;
  letter-spacing: 0.05em;
  line-height:1;
}
.resolution_conclusion p{
  font-size:18px;
  line-height:1.5;
  letter-spacing: 0.05em;
}


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

  .cta

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

.cta{
  position:relative;
  padding:68px 0 75px;
  background:linear-gradient(to right,#00b09f,#5db46c);
}
.cta h2{
  font-size:42px;
  line-height:1.3;
  color:#fff;
  margin:0 0 69px;
}
.cta h2 span{
  font-size:32px;
  color:#fff;
}
.cta::before{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  /* background:url(images/mediregi-text.png); */
  width:1004px;
  height:163px;
  background-size:cover;
  background-position:center;
  content:"";
}

.cta .box{
  position:relative;
  padding:0 45px;
}

.cta h2 span.or{
  color:#DA620F;
}
.cta h2 span.bl{
  color:#0923A4;
}
.cta_flex{
  display:flex;
  justify-content: center;
  align-items: center;
  gap:20px;
}
.cta_item{
  /* width:500px; */
  text-align:center;
}
.cta_item p{
  position:relative;
  display:table;
  margin:0 auto 10px;
  color:#fff;
  font-size:18px;
  letter-spacing: 0.05em;
  font-weight:bold;
  line-height:1;
}
.cta_item p::before{
  position:absolute;
  top:-5px;
  left:-14px;
  height:24px;
  width:6px;
  border-left:1.5px solid #fff;
  border-right:1.5px solid #fff;
  transform: rotate(-14deg);
  content:"";
}
.cta_item p::after{
  position:absolute;
  top:-5px;
  right:-14px;
  height:24px;
  width:6px;
  border-left:1.5px solid #fff;
  border-right:1.5px solid #fff;
  transform: rotate(14deg);
  content:"";
}
.cta_tel{
  position:relative;
  width:350px;
  margin:0 auto;
}
.cta_tel p{
  position:absolute;
  left:0;
  right:0;
  top:-44px;
  margin:auto;
  width:250px;
  line-height:50px;
  border-radius:50px;
  border:3px solid #502E0B;
  color:#DA620F;
  background:#fff;
  font-sizE:16px;
  text-align:center;
  letter-spacing: 0.1em;
}
.cta_tel p::before{
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  margin:auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 6px solid #502E0B;
  border-bottom: 0;
  content:"";
}
.cta_tel a{
  display:flex;
  align-items: center;
  gap:22px;
  padding:0 20px;
  width:350px;
  height:80px;
  border-radius:50px;
  background:#fff;
  box-shadow:0 6px 10px rgba(0,0,0,0.2);
  font-size:28px;
  font-weight:bold;
  color:#502E0B;
  letter-spacing: 0.1em;
}



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

  .reason

==================================================================*/
.reason{
  padding:160px 0 144px;
  overflow: hidden;
}
.reason .tit_wrap{
  margin:0 0 100px;
}
.reason_item{
  position:relative;
  display:flex;
  align-items: flex-start;
  justify-content: space-between;
  gap:76px;
  margin:0 0 137px;
}
.reason_item:nth-child(even){
  flex-direction: row-reverse;
}
.reason_item:last-child{
  margin:0;
}
.reason_img{
  position:absolute;
  top:-60px;
  right:0;
  width:740px;
}
.reason_item:nth-child(3) .reason_img{
  top:60px;
  width:590px;
}
.reason_item:nth-child(even) .reason_img{
  left:0;
}
.reason_img picture img{
  border-radius:30px;
}
.reason_item:first-child .reason_img picture img{
  box-shadow:2px 2px 4px rgba(0,0,0,0.2);
}
.reason_item:nth-child(3) .reason_img picture img{
  box-shadow:none;
  border-radius:0;
}
.reason_item:nth-child(odd)::before{
  position:absolute;
  top:0;
  left:calc(50% + 10px);
  width:950px;
  height:450px;
  background:#def5f3;
  content:"";
  z-index:-1;
}
.reason_item:nth-child(3)::before{
  top:-30px;
}
.reason_item:nth-child(even)::before{
  position:absolute;
  top:0;
  right:calc(50% + 10px);
  width:950px;
  height:450px;
  background:#e5f2d7;
  content:"";
  z-index:-1;
}
.reason_img_item{
  position:absolute;
  bottom:-30px;
  right:50px;
  text-align:center;
  width:320px;
}
.reason_img_item img{
  width:260px;
}
.reason_img_item p{
  color:#fff;
  background:#f29600;
  padding:5px 10px;
  font-size:16px;
  font-weight:bold;
  font-family:"m-plus-2p", sans-serif;
  letter-spacing: 0;
  margin:0 0 5px;
  border-radius:20px;
}
.reason_text{
  position:relative;
  width:605px;
  z-index:1;
}
.reason_text p{
  font-size:18px;
  line-height:1.5;
  letter-spacing: 0.05em;
  max-width:600px;
}
.reason_text p.num{
  position:relative;
  color:#f29600;
  font-size:18px;
  font-family:"m-plus-2p", sans-serif;
  font-weight:400;
  line-height:1;
  margin:0 0 20px;
  padding:0 0 0 30px;
}
.reason_text p.num::before{
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  margin:auto;
  background:url(images/feature_icon.png);
  background-size:cover;
  width:21px;
  height:24px;
  content:"";
}
.reason_text p small{
  font-size:14px;
  color:#666;
  display:block;
}
.reason_text h3{
  position:relative;
  font-size:42px;
  font-weight:600;
  line-height:1.2;
  margin:0 0 30px;
  padding:0 0 20px;
  border-bottom:2px solid rgba(0,177,160,0.3);
  letter-spacing: 0;
  color:#00b1a0;
}
.reason_item:nth-child(even) h3{
  color:#90c854;
  border-bottom:2px solid rgba(144,200,84,0.3);
}
.reason_item_list{
  display:flex;
  flex-wrap: wrap;
  gap:10px;
  margin:20px 0 0;
}
.reason_item_list li{
  padding:5px 20px;
  background:#6bd2c8;
  color:#fff;
  letter-spacing: 0.03em;
  font-size:18px;
  font-weight:bold;
  border-radius:40px;
  box-shadow:0 0 5px rgba(0,0,0,0.2);
}
.reason_item:nth-child(even) .reason_item_list li{
  background:#90c854;
}

.reason_child{
  position:relative;
  display:flex;
  justify-content: space-between;
}
.reason_child::before{
  position:absolute;
  bottom:-60px;
  right:60px;
  width:1550px;
  height:500px;
  background:#e5f2d7;
  content:"";
}
.reason_child_item{
  position:relative;
  width:393px;
  background:#fff;
  border-radius:20px;
  box-shadow:2px 2px 4px rgba(0,0,0,0.2);
}
.reason_child_item figure{
  width:100%;
}
.reason_child_item img{
  border-radius:20px 20px 0 0;
}
.reason_child_info {
  padding:30px 28px;
}
.reason_child_info h3{
  color:#90c854;
  padding:0 0 10px;
  margin:0 0 20px;
  text-align:center;
  border-bottom:2px solid rgba(144,200,84,0.3);
}
.reason_child_info p{
  font-size:18px;
  line-height:1.7;
} 


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

  $comparison

==================================================================*/
.comparison{
  position:relative;
  padding:100px 0 80px;
}
.comparison::before{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-size: auto auto;
  background-color: rgba(232, 244, 244, 1);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 7px, rgba(224, 239, 240, 1) 7px, rgba(224, 239, 240, 1) 10px);
  content:"";
}
.comparison::after{
  position:absolute;
  bottom:0;
  right:0;
  width:84%;
  height:300px;
  background:#fff;
  content:"";
}
.comparison_table{
  display:flex;
  justify-content: center;
  align-items: flex-end;
}
.comparison_table .dl{
  box-shadow:0 0 10px rgba(0,0,0,0.1);
}
.comparison_table .dl1{
  width:270px;
}
.comparison_table .dl2{
  width:400px;
  margin:0 40px 0 0;
}
.comparison_table .dl3{
  position:relative;
  width:400px;
}
.comparison_table .dl3::before{
  position:absolute;
  top:50%;
  left:50%;
  width:calc(100% + 12px);
  height:calc(100% + 12px);
  background:rgba(0,177,160,0.5);
  z-index:-1;
  transform: translate(-50%,-50%);
  content:"";
}
.comparison_table .dt{
  height:70px;
  color:#fff;
  text-align:center;
  font-size:26px;
  font-weight:bold;
}
.comparison_table .dl2 .dt{
  background:#969696;
}
.comparison_table .dl3 .dt{
  background:#16A18C;
}
.comparison_table .dt{
  display:flex;
  justify-content: center;
  align-items: center;
}
.comparison_table .dd{
  display:flex;
  align-items: center;
}
.comparison_table .dd{
  position:relative;
  height:100px;
  padding:0 0 0 80px;
  border-bottom:1px solid #c8c8c8;
  background:#fff;
  font-size:18px;
}
.comparison_table .dd:last-child{
  border-bottom:none;
}
.comparison_table .dl1 .dd{
  background:#d6bd86;
  color:#fff;
  padding:0 0 0 20px;
  border-bottom:1px solid #fff;
  font-size:20px;
  font-weight:bold;
}
.comparison_table .dl1 .dd:last-child{
  border:none;
}
.comparison_table .dd span{
  font-weight:bold;
}
.comparison_table .dl3 .dd span{
  color:#16A18C;
}

.comparison_table .dd1::before{
  position:absolute;
  top:0;
  bottom:0;
  left:30px;
  margin:auto;
  background:url(images/maru.svg);
  background-repeat: no-repeat;
  width:27px;
  height:27px;
  content:"";
}
.comparison_table .dd2::before{
  position:absolute;
  top:0;
  bottom:0;
  left:30px;
  margin:auto;
  background:url(images/sankaku.svg);
  background-repeat: no-repeat;
  width:29px;
  height:24px;
  content:"";
}
.comparison_table .dd3::before{
  position:absolute;
  top:0;
  bottom:0;
  left:33px;
  margin:auto;
  background:url(images/batsu.svg);
  background-repeat: no-repeat;
  width:22px;
  height:22px;
  content:"";
}


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

  $screen

==================================================================*/
.screen{
  padding:42px 0 160px;
}
.screen_tab{
  width:100%;
  margin:0 auto;
  padding:0 50px;
}
.screen_cate_tab{
  width:80%;
  margin:0 auto;
  display:flex;
  justify-content: center;
  gap:20px;
}
.screen_cate{
  width:100%;
  background:#dcdcdc;
  color:#969696;
  font-size:26px;
  border-radius:20px 20px 0 0;
  text-align:center;
  font-weight:bold;
  padding:15px 0 10px;
  box-shadow:0 -3px 10px rgba(0,0,0,0.05);
  cursor: pointer;
}
.screen_cate.active{
  background:#def5f3;
  color:#00b1a0;
  cursor: inherit;
}
.screen_list{
  padding:60px 0;
  margin:0 0 30px;
  border-radius:30px;
  background:#def5f3;
  box-shadow:0 0 10px rgba(0,0,0,0.1);
}
.screen_item{
  display:none;
}
.screen_item.showing{
  display:block;
}

.splide {
  width: 100%;
  margin: 0 auto;
}
.splide__arrows{
  position:absolute;
  left:0;
  right:0;
  margin:auto;
  width:90%;
  height:100%;
}
.splide__track {
  width:70%;
  margin:0 auto;
}

.splide__slide {
  position:relative;
  /* height: 200px; */
}
.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splide__slide p{
  position:absolute;
  bottom:0;
  right:0;
  padding:5px 10px;
  font-size:20px;
  font-weight:600;
  background:#def5f3;
  letter-spacing: 0.05em;
  color:#333;
}
.splide__arrow{
  background-color:#fff !important;
  width:70px;
  height:70px;
  opacity:1;
}
.splide__arrow--prev{
  background:url(images/screen_arr01.svg);
  background-size:cover;
}
.splide__arrow--next{
  background:url(images/screen_arr02.svg);
  background-size:cover;
}

.showroom_access{
  width:70%;
  margin:30px auto 0;
}
.showroom_access h3{
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.showroom_access h3 span{
  font-size:80%;
}
.showroom_access iframe{
  width:100%;
  height:300px;
}

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

  $support

==================================================================*/
.support{
  position:relative;
  padding:160px 0 160px;
}
.support::before{
  position:absolute;
  left:0;
  top:0;
  height:600px;
  width:84%;
  background-size: auto auto;
  background-color: rgba(232, 244, 244, 1);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 7px, rgba(224, 239, 240, 1) 7px, rgba(224, 239, 240, 1) 10px);
  content:"";
}
.support h2{
  position:relative;
}
.support_list{
  position:relative;
  display:flex;
  justify-content: center;
  gap:30px;
  margin:0 0 100px;
}
.support_list::before{
  position:absolute;
  bottom:-70px;
  left:0;
  width:100%;
  height:31px;
  background:url(images/support_arr.svg);
  background-size:cover;
  background-position: center;
  content:"";
}
.support_item{
  position:relative;
  width:360px;
  height:548px;
  padding:35px 30px 0;
  box-shadow:0 0 10px rgba(0,0,0,0.15);
  border-radius:20px;
  background:#fff;
}
.support_item::before{
  position:absolute;
  top:0;
  left:0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: #16A18C transparent transparent transparent;
  content:"";
}
.support_img{
  margin:0 auto 35px;
  height:170px;
  text-align:center;
}
.support_img img{
  width:auto;
  height:100%;
}
.support_text h3{
  font-size:26px;
  font-weight:600;
  color:#16A18C;
  letter-spacing: 0.1em;
  line-height:1.15;
  margin:0 0 20px;
  text-align:center;
  height:61px;
}
.support_text p{
  line-height:1.66;
  font-size:18px;
}

.support_plan h3{
  font-size:26px;
  text-align:center;
  line-height:1.4;
}
.support_plan_list{
  display:flex;
  justify-content: space-between;
}
.support_plan_item{
  position:relative;
  width:320px;
  height:320px;
  background:#fff;
  box-shadow:0 0 10px rgba(0,0,0,0.1);
}
.support_plan_item:first-child::before{
  position:absolute;
  top:0;
  bottom:0;
  right:-49px;
  margin:auto;
  width:30px;
  height:45px;
  line-height:1;
  font-size:40px;
  font-weight:bold;
  color:#00b1a0;
  content:"+";
}
.support_plan_item:nth-child(2)::before{
  position:absolute;
  top:0;
  bottom:0;
  right:-56px;
  margin:auto;
  width:41px;
  height:45px;
  line-height:1;
  font-size:40px;
  color:#4e64ad;
  content:"or";
}
/* .support_plan_item:not(:first-child){
  background:#eef0f7;
} */
.support_plan_item h4{
  width:100%;
  padding:10px 0;
  text-align:center;
  color:#fff;
  background:#00b1a0;
  font-weight:bold;
  font-size:20px;
}
.support_plan_item:not(:first-child) h4{
  background:#4e64ad;
}
.support_plan_item h4 small{
  font-size:14px;
  font-weight:bold;
}
.support_content{
  padding:30px 20px;
}
.support_content .price{
  position:relative;
  font-size:36px;
  color:#00b1a0;
  text-align:center;
  padding:0 0 20px;
  font-weight:bold;
  line-height:1;
}
.support_plan_item:not(:first-child) .support_content .price{
  color:#4e64ad;
}
.support_content .price::before{
  position:absolute;
  bottom:0;
  left:0;
  height:2px;
  width:286px;
  background:url(images/support_item_line01.svg);
  background-size:cover;
  content:"";
}
.support_plan_item:not(:first-child) .support_content .price::before{
  background:url(images/support_item_line02.svg);
  background-size:cover;
}
.support_content .price small{
  font-size:16px;
  font-weight:bold;
}
.support_content ul{
  padding:20px 0 0;
}
.support_content li{
  position:relative;
  font-size:18px;
  line-height:1.6;
  padding:0 0 0 20px;
  margin:0 0 10px;
  letter-spacing: 0.05em;
}
.support_content li::before{
  position:absolute;
  top:10px;
  left:6px;
  width:7px;
  height:7px;
  background:#00b1a0;
  border-radius:50%;
  content:"";
}
.support_plan_item:not(:first-child) .support_content li::before{
  background:#4e64ad;
}
.support_content li span{
  display:block;
  color:#00b1a0;
  font-weight:bold;
}
.support_plan_item:not(:first-child) .support_content li span{
  color:#4e64ad;
}

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

  .plan

==================================================================*/
.plan{
  padding:0 0 160px;
}
.plan_top_text{
  text-align:center;
  font-size:26px;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin:0 0 30px;
}
.plan_top_text span{
  color:#00b1a0;
}

.plan_list{
  display:flex;
  justify-content: space-between;
  margin:0 0 60px;
}
.plan_item{
  width:620px;
  background:linear-gradient(-135deg,#73be80,#40c4b7);
  border-radius:20px;
  box-shadow:2px 2px 4px rgba(0,0,0,0.2);
}
.plan_item:nth-child(2){
  background:linear-gradient(-135deg,#f9c820,#f4aa30);
}
.plan_item h3{
  text-align:center;
  background:#00b1a0;
  color:#fff;
  font-size:32px;
  padding:20px 0;
  border-radius:20px 20px 0 0;
}
.plan_item:nth-child(2) h3{
  background: #f29600;
}
.plan_item h3 span{
  position:relative;
  display:inline-block;
  color:#fff;
}
.plan_item h3 span::before{
  position:absolute;
  top:0;
  left:0;
  right:0;
  margin:auto;
  width:5px;
  height:5px;
  border-radius:5px;
  background:#fff;
  content:"";
}
.plan_info{
  position:relative;
  padding:50px;
}
.plan_fukidashi{
  position:absolute;
  top:-30px;
  right:-10px;
  width:184px;
  height:128px;
  padding:39px 0 0;
  font-size:18px;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
  color:#00b1a0;
  text-align:center;
  background:url(images/plan_fukidashi01.png);
  background-size:cover;
  line-height:1.2;
}
.plan_item:nth-child(2) .plan_fukidashi{
  color:#f29600;
  background:url(images/plan_fukidashi02.png);
  background-size:cover;
}
.plan_item_price{
  background:#fff;
  border-radius:15px;
  padding:40px 30px;
  margin:0 0 30px;
}
.plan_item:nth-child(2) .plan_item_price{
  padding:40px 30px 7px;
}
.plan_item_price p{
  margin:7px 0 0;
  font-size:10px;
  line-height:1.2;
}
.plan_item_price dl{
  position:relative;
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding:0 36px 0 0;
}
.plan_item_price dl:first-child{
  margin:0 0 60px;
}
.plan_item_price dl:first-child::before{
  position:absolute;
  left:0;
  bottom:-29px;
  width:100%;
  height:2px;
  background:url(images/plan_price_dot.svg);
  content:"";
}
.plan_item_price dt{
  color:#fff;
  background:#00b1a0;
  width:122px;
  text-align:center;
  font-size:18px;
  letter-spacing: 0.03em;
  padding:12px 0;
  border-radius:20px;
  line-height:1;
}
.plan_item:nth-child(2) .plan_item_price dt{
  background: #f29600;
}
.plan_item_price dd{
  font-size:18px;
  line-height:1;
  font-weight:bold;
}
.plan_item_price dd span{
  font-size:38px;
}

.plan_item_support{
  background:#fff;
  border-radius:15px;
}
.plan_item_support h4{
  text-align:center;
  background:#00b1a0;
  color:#fff;
  font-size:26px;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.03em;
  border-radius:15px 15px 0 0;
}
.plan_item:nth-child(2) .plan_item_support h4{
  background: #f29600;
}
.plan_item_support_info{
  padding:20px 30px;
}
.plan_item_support_info p{
  position:relative;
  font-weight:bold;
  font-size:20px;
  letter-spacing: 0.03em;
  color:#00b1a0;
  padding:0 0 0 16px;
}
.plan_item_support_info p::before{
  position:absolute;
  left:0;
  content:"・";
}
.plan_item:nth-child(2) .plan_item_support_info p{
  color:#f29600;
}
.plan_item_support_info ul{
  padding:0 0 0 30px;
}
.plan_item_support_info li{
  letter-spacing: 0.03em;
  font-size:18px;
}
.plan_item_support_info li::before{
  content:"-";
  margin:0 8px 0 0;
}
.device_support{
  border-radius:20px;
  box-shadow:2px 2px 4px rgba(0,0,0,0.2);
}
.device_support h3{
  font-size:32px;
  text-align:center;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height:1;
  padding:20px 0;
  color:#fff;
  background:#969696;
  border-radius:20px 20px 0 0;
}
.device_support_info{
  padding:50px;
  display:flex;
  justify-content: space-between;
}
.device_support_item {
  position:relative;
  width:calc(50% - 80px);
}
.device_support_item:first-child::before{
  position:absolute;
  top:0;
  right:-300px;
  width:220px;
  height:2px;
  background:url(images/plan_price_dot.svg);
  background-repeat: repeat;
  transform:rotate(90deg);
  transform-origin: 0 0;
  content:"";
}
.device_support_item dl{
  display:flex;
  gap:25px;
  align-items: center;
  margin:0 0 25px;
}
.device_support_item dt{
  font-size:18px;
  color:#fff;
  background:#969696;
  padding:5px 20px;
  border-radius:20px;
}
.device_support_item dd{
  font-size:18px;
  font-weight:bold;
}
.device_support_item dd span{
  font-size:38px;
}
.device_support_item li{
  position:relative;
  font-size:18px;
  padding:0 0 0 20px;
}
.device_support_item li::before{
  position:absolute;
  top:13px;
  left:0;
  width:7px;
  height:7px;
  border-radius:7px;
  background:#333;
  content:"";
}
.device_support_item li span{
  font-size:20px;
  font-weight:bold;
  display:block;
}

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

  .flow

==================================================================*/
.flow{
  position:relative;
  padding:160px 0 160px;
  background-size: auto auto;
  background-color: rgba(232, 244, 244, 1);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 7px, rgba(224, 239, 240, 1) 7px, rgba(224, 239, 240, 1) 10px );
}
.flow:before{
  position:absolute;
  top:0;
  right:0;
  width:30%;
  height:100%;
  background:#daeeed;
  content:"";
}
.flow h2{
  position:relative;
}

.flow_item{
  position:relative;
  display:flex;
  align-items: center;
  gap:34px;
  width:1100px;
  margin:0 auto 40px;
}
.flow_item:not(:last-child)::before{
  position:absolute;
  top:50%;
  left:56px;
  width:4px;
  height:100%;
  background:#00b1a0;
  content:"";
}
.flow_item:last-child{
  margin:0 auto;
}
.flow_item .num{
  position:relative;
  width:116px;
  height:116px;
  border-radius:50%;
  background:linear-gradient(#5db46c,#00b09f);
  color:#fff;
  font-size:42px;
  font-weight:600;
  display:flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  letter-spacing: 0.05em;
  line-height:1;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.flow_item .num span{
  display:block;
  font-size:18px;
}
.flow_info{
  display:flex;
  gap:90px;
  padding:30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background:#fff;
  border-radius:30px;
  flex:1;
}
.flow_img{
  position:relative;
  width:156px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.flow_img::before{
  position:absolute;
  bottom: 0;
  right: -30px;
  height: 100%;
  width: 2px;
  background: url(images/flow_info_line.svg);
  background-size: cover;
  content:"";
}
.flow_text{
  flex:1;
  letter-spacing: 0.1em;
}
.flow_text h3{
  font-size:26px;
  font-weight:600;
  letter-spacing: 0.05em;
  margin:0 0 12px;
  color:#00b1a0;
}

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

  $qa

==================================================================*/
.qa{
  padding:160px 0 160px;
}
.qa h2{
  position:relative;
}
.qa1{
  width:960px;
  margin:0 auto;
}
.qa1 dl{
  margin-bottom:20px;
  background:#e7f8f7;
  border-radius:20px;
  padding:30px;
  cursor: pointer;
}
.qa1 dl dt{
  position:relative;
  padding:0 50px 0 60px;
  font-weight:bold;
  font-size:26px;
  letter-spacing: 0.1em;
  color:#00b09f;
}
.qa1 dl dt:before{
  position: absolute;
  top:-1px;
  left:0;
  margin-right:7px;
  line-height: 1;
  font-weight:600;
  font-size:44px;
  color:#00b09f;
  content:"Q";
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(to right, #00b09f, #5db46c);
  background: -webkit-linear-gradient(to right, #00b09f, #5db46c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.qa1 dl dd{
  position:relative;
  padding:20px 40px 0 50px;
  font-size:18px;
  letter-spacing: 0.1em;
}
.qa1 dl dd:before{
  position: absolute;
  top:20px;
  left:0;
  margin-right:7px;
  line-height: 1;
  font-weight:600;
  font-size:32px;
  color:#f29600;
  content:"A";
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(to right, #f29600, #f8c000);
  background: -webkit-linear-gradient(to right, #f29600, #f8c000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* アコーディオン */
.js-toggle.qa1 dt::after{
  color: #00b09f;
  position: absolute;
  display: flex;
  align-items: center;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto; 
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 32px;
}
.js-toggle.qa1 dt.is-open::after{
  content: "\f068";
}
.js-toggle.qa1 dd{
  display: none;
}

.qa .btn_document {
  text-align:center;
}

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

  $contact

==================================================================*/
/* .contact{
  background:#EAF5F4;
  padding:80px 0;
}
.contact h2{
  position:relative;
}
.contact h2::before{
  position:absolute;
  left:0;
  right:0;
  bottom:-20px;
  margin:auto;
  width:50px;
  height:2px;
  background:#16A18C;
  content:"";
}

.contact form {
  width: 600px;
  max-width: 100%;
  margin: 56px auto 0;
}

.contact label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #000000;
  margin-bottom: 8px;
  display: block;
  margin-left: 6px;
}

.contact label a {
  font-size: 16px;
  line-height: 1.12;
  text-decoration-line: underline;
  color: #16A18C;
}
.contact label {
  font-size: 16px;
  line-height: 1.12;
}
.contact label strong {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #000000;
  margin-right: 8px;
}
.contact label strong small{
  font-size:80%;
}
.contact .required {
  background: #16A18C;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #FFFFFF;
  margin-left: 16px;
  padding: 4px 8px;
  display: inline-block;
}

.contact input[type=text],
.contact input[type=tel],
.contact input[type=email],
.contact select,
.contact textarea {
  background: #FFFFFF;
  box-shadow: 0px 5px 30px 10px rgba(22, 161, 140, 0.1);
  background: #FFFFFF;
  box-shadow: 0px 5px 30px 10px rgba(22, 161, 140, 0.1);
  outline: none;
  border: none;
  padding: 15px;
  width:100%;
}

.contact textarea {
  height: 141px;
}

.contact input[type=checkbox] {
  border: 1px solid #000;
  width: 20px;
  height: 20px;
  background: #fff;
  position: relative;
  top: 3px;
  border-radius: 0 !important;
}
.contact p + p label {
  margin-top: 35px;
}
.contact input[type=checkbox] {
  display: none;
}
.contact .checkbox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  padding: 0 0 0 36px;
}
.contact .checkbox01-02 {
  margin-left: 20px;
}
.contact .checkbox01::before {
  background: #FFFFFF;
  box-shadow: 0px 5px 30px 10px rgba(22, 161, 140, 0.1);
  content: "";
  display: block;
  height: 20px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 20px;
}
.contact .checkbox01::after {
  border-right: 3px solid #16A18C;
  border-bottom: 3px solid #16A18C;
  content: "";
  display: block;
  height: 13px;
  left: 12px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 8px;
}
.contact .checkbox02,.contact .check-box {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  padding: 0 0 0 36px;
  margin: 21px 0 0 -7px;
}
.contact .check-box{
	padding:0 0 0 30px;
	margin:10px 30px 0 0;
}
.contact .checkbox02::before,
.contact .check-box::before {
  background: #FFFFFF;
  content: "";
  border: 1px solid #000000;
  display: block;
  height: 20px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 20px;
}
.contact .checkbox02::after,
.contact .check-box::after {
  border-right: 3px solid #000000;
  border-bottom: 3px solid #000000;
  content: "";
  display: block;
  height: 13px;
  left: 12px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 8px;
}
.contact input[type=checkbox]:checked + .checkbox01::after,
.contact input[type=checkbox]:checked + .checkbox02::after ,
.contact input[type=checkbox]:checked + .check-box::after {
  opacity: 1;
}
.contact .btnSubmitWrap {
  margin: 55px auto 0;
  width: 400px;
  max-width: 100%;
  height: 72px;
  z-index: 1;
  position: relative;
}
.contact .btnSubmitWrap::before {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  border-radius: 6px;
  height: 100%;
  background: #fff;
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease-out;
  border: 1px solid #FFFEFE;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.contact .btnSubmitWrap:hover::before {
  opacity: 0.3;
  z-index: 1;
}
.contact #btnSubmit {
  background: #16A18C;
  border-radius: 6px;
  width: 400px;
  max-width: 100%;
  height: 72px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
} */

.contact{
  background:#f2f2f2;
  padding:160px 0;
}
.contact h2{
  position:relative;
}
.contact_text_box{
  padding:20px;
  margin:20px auto 0;
  border:1px solid #00b1a0;
  border-radius:10px;
  width: 1150px;
}
.contact_text_box .center{
  font-weight:bold;
  font-size:20px;
  margin:0 0 10px;
}

.contact form {
  width: 1150px;
  max-width: 100%;
  padding:80px 55px 101px 78px;
  margin: 40px auto 0;
  border-radius:10px;
  background:#fff;
  box-shadow:0 0 10px rgba(0,0,0,0.08);
}

.contact form .form_item {
  display:flex;
  gap:24px;
  margin:0 0 20px;
}

.contact label {
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
  display: block;
  font-size: 16px;
  line-height: 1.12;
  width:25%;
}
.contact label small{
  font-size:13px;
}

.contact label a {
  font-size: 16px;
  line-height: 1.12;
  text-decoration-line: underline;
  color: #00b1a0;
}
.contact label strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  margin-right: 8px;
}
.contact .required {
  display:inline-block;
  color:#fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  width:65px;
  text-align:center;
  margin-left: 6px;
  background:#00b1a0;
  border-radius:30px;
}

.contact input[type=text],
.contact input[type=tel],
.contact input[type=email],
.contact select,
.contact textarea {
  background: #FFFFFF;
  outline: none;
  border: none;
  padding: 18px 15px;
  width:100%;
  border-radius:10px;
  border:1px solid #e8e8e8;
  flex:1;
}
.contact input[type=text].input_name{
  width:48%;
  display:inline-block;
}
.contact input[type=date]{
  background: #FFFFFF;
  outline: none;
  border: none;
  padding: 18px 15px;
  border-radius:10px;
  border:1px solid #e8e8e8;
  flex:1;
}
.contact .time select{
  width:auto;
}
.contact form .form_item .date,.contact form .form_item .time{
  display:inline-block;
}
.contact form .form_item .date{
  margin:0 20px 0 0;
}
.contact form .form_item div{
  flex:1;
}
.contact form .form_item div label{
  width:100%;
}
.contact .contact-kinds{
  width:100%;
  flex:1;
}
.contact .contact-kinds label{
  display:inline-block;
  width:auto;
  padding:0 0 0 5px;
}

.contact textarea {
  height: 141px;
}

.contact input[type=checkbox] {
  border:1px solid #e8e8e8;
  width: 20px;
  height: 20px;
  background: #fff;
  position: relative;
  top: 3px;
  border-radius: 0 !important;
}
.contact p + p label {
  margin-top: 35px;
}
.contact input[type=checkbox] {
  display: none;
}
.contact #clinic-kind_text,.contact #clinic-request_text,.contact #clinic-department_text{
  display:none;
}
.contact .other_text{
  margin:6px 0 0;
}
.contact .checkbox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  padding: 0 0 0 36px;
}
.contact .checkbox01-02 {
  margin-left: 20px;
}
.contact .checkbox01::before {
  background: #FFFFFF;
  box-shadow: 0px 5px 30px 10px rgba(22, 161, 140, 0.1);
  content: "";
  display: block;
  height: 20px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 20px;
}
.contact .checkbox01::after {
  border-right: 3px solid #00b1a0;
  border-bottom: 3px solid #00b1a0;
  content: "";
  display: block;
  height: 13px;
  left: 12px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 8px;
}
.contact .checkbox02,.contact .check-box {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  padding: 0 0 0 36px;
  margin: 21px 0 0 -7px;
}
.contact .check-box{
	padding:0 0 0 30px;
	margin:10px 30px 0 0;
}
.contact .checkbox02::before,
.contact .check-box::before {
  background: #FFFFFF;
  content: "";
  border:1px solid #c0c0c0;
  display: block;
  height: 20px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 20px;
}
.contact .checkbox02::after,
.contact .check-box::after {
  border-right: 3px solid #000000;
  border-bottom: 3px solid #000000;
  content: "";
  display: block;
  height: 13px;
  left: 12px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 8px;
}
.contact input[type=checkbox]:checked + .checkbox01::after,
.contact input[type=checkbox]:checked + .checkbox02::after ,
.contact input[type=checkbox]:checked + .check-box::after {
  opacity: 1;
}
.contact .privacy_check{
  text-align:center;
}
.contact .btnSubmitWrap {
  margin: 55px auto 0;
  width: 400px;
  max-width: 100%;
  height: 72px;
  z-index: 1;
  position: relative;
}
.contact .btnSubmitWrap::before {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  border-radius: 6px;
  height: 100%;
  background: #fff;
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease-out;
  border: 1px solid #FFFEFE;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.contact .btnSubmitWrap:hover::before {
  opacity: 0.3;
  z-index: 1;
}
.contact #btnSubmit {
  background:linear-gradient(to right, #00b09f, #5db46c);
  border-radius: 50px;
  width: 400px;
  max-width: 100%;
  height: 72px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0;
  border: none;
  outline: none;
  box-shadow: none;
}
.clinic-department_list{
  display:flex;
  flex-wrap: wrap;
  flex:1;
}



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

  *FAQ

==================================================================================================================================*/
.faq{
  width:1300px;
  margin:0 auto;
}
.faq_wrap{
  margin:0 0 50px;
}
.faq .qa1{
  width:100%;
}


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

$thanks

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

.top_smart_map{
  padding:0 0 50px;
}
.thanks .btn02 a{
  margin:auto;
}
.sc_business{
  padding:0 0 50px;
}
.top_smart_map{
    width:1200px;
    margin:80px auto 0;
    z-index:1;
}
.top_smart_map_sp{
    display:none;
}
.smart_map_tit{
    display:flex;
    justify-content: space-between;
    margin:0 0 20px;
}
.smart_map_tit p{
    width:224px;
    height:46px;
    text-align:center;
    background:#3352a7;
    display:flex;
    justify-content: center;
    align-items: center;
    color:#fff;
}
.smart_map_tit p:nth-child(2){
    width:712px;
    background:#34373e;
}
.smart_map_list{
    position:relative;
    display:flex;
    justify-content: space-between;
}
.smart_map_list::before{
    position:absolute;
    left:0;
    right:0;
    top:222px;
    margin:auto;
    width:975px;
    height:25px;
    border-top:1px solid #3352a7;
    border-left:1px solid #3352a7;
    border-right:1px solid #3352a7;
    content:"";
    z-index:1;
}
/* .smart_map_list::after{
    position:absolute;
    right:202px;
    bottom:46px;
    width:642px;
    height:111px;
    border-left:1px solid #3352a7;
    border-bottom:1px solid #3352a7;
    content:"";
    z-index:1;
} */
.smart_map_list::after{
    position:absolute;
    right:112px;
    bottom:-13px;
    width:732px;
    height:173px;
    border-left:1px solid #3352a7;
    border-bottom:1px solid #3352a7;
    content:"";
    z-index:0;
}
.smart_map_item{
    position:relative;
    width:224px;
    height:526px;
    padding:22px;
    background:#fff;
    text-align:center;
    box-sizing: border-box;
    box-shadow:0 0 20px rgba(0,0,0,0.05);
}
.smart_map_item:not(:last-child)::before{
    position:absolute;
    top:46px;
    right:-16px;
    width:12px;
    height:20px;
    background-image: url(../images/sm_item_arr.png);
    background-size:cover;
    content:"";
}
.smart_map_item_tit h3{
    font-size:17px;
    font-weight:bold;
    letter-spacing: 0.24em;
    padding:0 0 20px;
    margin:10px 0 30px;
}
.smart_map_item_tit h3::before,.smart_map_item_tit h3::after{
  content:none;
}
.smart_map_item_tit._01 h3{
    color:#f2a06d;
    border-bottom:1px solid #f2a06d;
}
.smart_map_item_tit._02 h3{
    color:#ed8492;
    border-bottom:1px solid #ed8492;
}
.smart_map_item_tit._03 h3{
    color:#00afec;
    border-bottom:1px solid #00afec;
}
.smart_map_item_tit._04 h3{
    color:#18a18d;
    border-bottom:1px solid #18a18d;
}
.smart_map_item_tit._05 h3{
    color:#f3be32;
    border-bottom:1px solid #f3be32;
}
.smart_map_item_text{
    letter-spacing: 0.06em;
    font-size:13px;
    color:#666;
    height:60px;
    margin:0 0 60px;
    line-height:20px;
}
.smart_map_item_logo li{
    position:relative;
    margin:0 0 20px;
}
.smart_map_item_logo li:last-child{
    margin:0;
}
.smart_map_item:nth-child(5) li{
    margin:0 0 10px;
}
.smart_map_item:nth-child(5) li:last-child::before{
	position:absolute;
	bottom:-29px;
	left:0;
	right:0;
	margin:auto;
	height:30px;
	width:1px;
	background:#3352a7;
	content:"";
}
.smart_map_item_logo li a{
    position:relative;
    display:block;
    width:100%;
    height:120px;
    font-size:14px;
    font-weight:bold;
    color:#666;
    letter-spacing: 0.1em;
    border:1px solid #a1bce5;
    padding:17px 0 0;
    box-sizing: border-box;
    transition: 0.2s ease-in-out;
    background:#fff;
    z-index:1;
}
.smart_map_item_logo li a::before, .smart_map_item_logo li a::after {
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: 2;
    content: "";
    width: 0;
    height: 0;
    border: 4px solid transparent;
}
.smart_map_item_logo li a:hover::before, .smart_map_item_logo li a:hover::after {
    width: 100%;
    height: 100%;
}
.smart_map_item_logo li a:hover::before {
    border-top-color: #4479cc;
    border-right-color: #4479cc;
    transition: width .2s, height .2s .2s;
}
.smart_map_item_logo li a:hover::after {
    border-bottom-color: #4479cc;
    border-left-color: #4479cc;
    transition: height .2s, width .2s .2s;
}
.smart_map_item_logo li.dot_t_b::before{
    position:absolute;
    top:-3px;
    left:0;
    right:0;
    margin:auto;
    width:7px;
    height:7px;
    background:#3352a7;
    border-radius:5px;
    content:"";
    z-index:3;
}
.smart_map_item_logo li.dot_r_b::before{
    position:absolute;
    top:0;
    bottom:0;
    right:-3px;
    margin:auto;
    width:7px;
    height:7px;
    background:#3352a7;
    border-radius:5px;
    content:"";
    z-index:3;
}
.smart_map_item_logo li.dot_b_b::before{
    position:absolute;
    bottom:-3px;
    left:0;
    right:0;
    margin:auto;
    width:7px;
    height:7px;
    background:#3352a7;
    border-radius:5px;
    content:"";
    z-index:1;
}
.smart_map_item_logo li.dot_l_b::before{
    position:absolute;
    top:0;
    left:-3px;
    bottom:0;
    margin:auto;
    width:7px;
    height:7px;
    background:#3352a7;
    border-radius:5px;
    content:"";
    z-index:3;
}
.smart_map_item_logo li.dot_t_a::after{
    position:absolute;
    top:-3px;
    left:0;
    right:0;
    margin:auto;
    width:7px;
    height:7px;
    background:#3352a7;
    border-radius:5px;
    content:"";
    z-index:3;
}
.smart_map_item_logo li.dot_r_a::after{
    position:absolute;
    top:0;
    bottom:0;
    right:-3px;
    margin:auto;
    width:7px;
    height:7px;
    background:#3352a7;
    border-radius:5px;
    content:"";
    z-index:3;
}
.smart_map_item_logo li.dot_b_a::after{
    position:absolute;
    bottom:-3px;
    left:0;
    right:0;
    margin:auto;
    width:7px;
    height:7px;
    background:#3352a7;
    border-radius:5px;
    content:"";
    z-index:3;
}
.smart_map_item_logo li.dot_l_a::after{
    position:absolute;
    top:0;
    left:-3px;
    bottom:0;
    margin:auto;
    width:7px;
    height:7px;
    background:#3352a7;
    border-radius:5px;
    content:"";
    z-index:3;
}
.smart_map_item_logo li.line_l_a::after{
    position:absolute;
    top:0;
    bottom:0;
    left:-66px;
    margin:auto;
    width:65px;
    height:1px;
    background:#3352a7;
    content:"";
}
.smart_map_item_logo li.line_t_a::after{
    position:absolute;
    right:0;
    top:-20px;
    left:0;
    margin:auto;
    width:1px;
    height:20px;
    background:#3352a7;
    content:"";
}
.smart_map_item_logo li.sub a{
    height:60px;
    display:flex;
    justify-content: center;
    align-items: center;
    padding:0;
}
.smart_map_item_logo li a p{
    margin:0 0 8px;
}
.smart_map_item_logo li a p.fs{
	font-size:13px;
}
.smart_map_item_logo li a figure{
    height:46px;
    display:flex;
    justify-content: center;
    align-items: center;
}

.thanks .btn_document{
  text-align: center;
  margin:40px 0 0;
}


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

  *共通要素（wrapper,box,section等）

==================================================================================================================================*/
.contents_bg {
  position: relative;
  padding:150px 0 0;
}

:is(.blog,.single-post,.archive,.category):not(.tax-cate_menu,.tax-cate_disease,.tax-cate_symptom,.tax-cate_case) .contents_bg:before{
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  background: var(--bg-color);
  top: 0;
  width: calc((100% - 1300px) / 2);
  right: 0;
}


.contents {
  width: 1300px;
  margin: auto;
  padding: 50px 20px 56px;
  box-sizing: border-box;
}

.wrapper {
  position: relative;
  width: 1300px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
  background: #fff;
  z-index: 2;
}

.wrapper main {
  width: 100%;
  padding: 0 0 30px;
}
:is(.blog,.single-post,.archive,.category):not(.tax-cate_menu,.tax-cate_disease,.tax-cate_symptom,.tax-cate_case) .wrapper main{
  width: 68%;
}

/*--------------------box--------------------*/
.box{
  position:relative;
  width:1300px;
  margin:0 auto;
  z-index:1;
}

/*--------------------text--------------------*/
.text {
  position: relative;
  /* margin: 0 0 80px; */
}

.text p {
  margin-bottom: 1em;
}

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

.textarea p {
  font-size: 16px;
  margin-bottom: 22px;
}

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

/*--------------------下層ページのレイアウト--------------------*/
.body_single,
.sec_doctor,
.sec_clinic,
.price_wrap,
.faq_wrap,
.sec_access,
.access_route,
.sec_recruit,
.sec_freearea_up,
.sec_freearea_under,
.medical_list li,
.clinic_facilities {
  position: relative;
  margin: 0 0 80px;
}

.body_single p {
  margin-bottom: 1em;
}

.sec_medical .text {
  margin-bottom: 0;
}

/*--------------------サイドバー--------------------*/
.side_area {
  width: 28%;
  padding: 0 2%;
  z-index: 3;
  background: var(--bg-color);
}

.side_box, .side_bannar {
  margin-bottom: 40px;
}

.side_area .btn01 a {
  width: 100%;
  color: #fff !important;
}

.side_bannar ul li {
  margin-bottom: 10px;
  text-align: center;
}

.side_bannar ul li a:hover {
  opacity: 0.8;
}

.side_area .side_title {
  font-size: 110%;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--main-color);
  text-align: left;
  line-height: 1.6;
}

.side_area .side_title i {
  margin-right: 12px;
  vertical-align: middle;
  color: var(--main-color);
}

.side_area li a {
  color: var(--text-color);
}
.side_area li.cat-item a{
  padding:2px 10px;
  margin:0 0 5px;
  background:#fff0b8;
  display:inline-block;
}
.side_area ul.children{
  padding:0 0 0 20px;
}
.side_area ul.children li.cat-item a::before{
  content: "－";
}
.side_area li a:hover {
  color: var(--main-color) !important;
}

.op_sidefreearea p a {
  display: block;
}

/*----------SNSボタン----------*/
.side_sns {
  display: flex;
  justify-content: center;
  margin: 0 0 20px;
}

.side_sns li {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  margin-right: 5px;
}

.side_sns li:last-child {
  margin-right: 0;
}

.side_sns li a {
  display: block;
  background-color: #fff;
  color: var(--main-color);
  text-align: center;
  font-size: 12px;
  padding-top: 7px;
  border-radius: 5px;
}

.side_sns li a i {
  display: block;
  font-size: 18px;
}



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

  .breadcrumb（ぱんくず）

==================================================================*/
.breadcrumbs {
  position: relative;
  width: 1300px;
  margin: 0 auto;
  margin: 0 auto 30px;
  font-size: 14px;
}
.breadcrumbs:last-child {
  margin: 0 auto;
}
.breadcrumbs i {
  /*margin-left: 35px;*/
  margin-right: 5px;
}
.breadcrumbs a{
  color:#16A18C;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs li {
  float: left;
  margin-right: 5px;
}
.breadcrumbs li::before{
  content:none;
}
.breadcrumbs li:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  content: "\f054";
  padding-left: 10px;
}
.breadcrumbs li:last-child:after {
  content: "";
}
.breadcrumbs li:last-child a{
  color:#d04634 !important;
}

.sub.contact{
  background:none;
  padding:50px 0;
}

/*--------------------タイトル--------------------*/

h1{
  font-size: 12px;
  position: absolute;
  width: 1300px;
  top: 5px;
  right: 0;
  left: 0;
  margin: auto!important;
}
h2{
  text-align: center;
  font-size:52px;
  letter-spacing: 0.1em;
  font-weight:600;
  margin:0 0 60px;
  line-height:1.2;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
}
h2 img{
  vertical-align: bottom;
}
h2 span{
  color:#00b1a0;
}
h3{
  position:relative;
  font-size:26px;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
}
h3 span{
  color:#00b1a0;
  font-weight:bold;
}

.tit_wrap{
  position:relative;
  text-align:center;
  margin:0 0 54px;
}
.tit_wrap h2{
  display:block;
  font-weight:600;
  margin:0;
  padding:0;
}
.tit_wrap h2 span{
  color:#16A18C;
}
.tit_en{
  position:relative;
  font-size:18px;
  color:#969696;
  margin:0 auto 20px;
  line-height:1;
  font-weight:600;
  letter-spacing: 0.1em;
  text-align:center;
  display:table;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.tit_en::before{
  position:absolute;
  top:0;
  bottom:0;
  left:-30px;
  margin:auto;
  width:15px;
  height:1px;
  background:#969696;
  content:"";
}
.tit_en::after{
  position:absolute;
  top:0;
  bottom:0;
  right:-30px;
  margin:auto;
  width:15px;
  height:1px;
  background:#969696;
  content:"";
}
.sub_tit_en{
  font-size:16px;
  text-align:center;
  color:#999;
  font-weight:bold;
}
.tit02{
  font-size:20px;
  text-align:center;
  margin:0 0 30px;
}

/*左寄せ*/
.tit03 {
	margin-bottom: 22px;
    padding: 0 10px 5px;
	letter-spacing: 0.1em;
    font-family: ヒラギノ角ゴ W3 JIS2004;
	font-size: 20px;
	line-height: 1.2;
	text-align: left;
    border-bottom: 1px solid #eee;
}

/*--------------------下層の見出しの上に余白を付ける--------------------*/
.body_single h2:nth-child(n+2) {
  margin-top: 2em;
}

.body_single h3:nth-child(n+2),
.body_single h4:nth-child(n+2),
.body_single h5:nth-child(n+2),
.body_single h6:nth-child(n+2) {
  margin-top: 1.5em;
}

/*--------------------TinyMCEエディタ用--------------------*/
/*----------見出し----------*/
/*太字*/
.title_style01 {
  color: var(--main-color);
  font-weight: bold;
  border: none;
  background: none;
  text-align: left;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  display: table;
}

/*下線*/
.title_style02 {
  color: var(--main-color);
  font-weight: bold;
  border-bottom: 1px solid var(--main-color);
  background: none;
  text-align: left;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  display: table;
}

/*背景色付き・白抜き*/
.title_style03 {
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  border: none;
  text-align: left;
  margin-right: 0;
  margin-left: 0;
  padding: 5px 10px;
}

h2.title_style01:before,
h2.title_style01:after,
h3.title_style01:before,
h3.title_style01:after,
h4.title_style01:before,
h4.title_style01:after,
h5.title_style01:before,
h5.title_style01:after,
h2.title_style02:before,
h2.title_style02:after,
h3.title_style02:before,
h3.title_style02:after,
h4.title_style02:before,
h4.title_style02:after,
h5.title_style02:before,
h5.title_style02:after,
h2.title_style03:before,
h2.title_style03:after,
h3.title_style03:before,
h3.title_style03:after,
h4.title_style03:before,
h4.title_style03:after,
h5.title_style03:before,
h5.title_style03:after {
  display: none;
}

/*----------枠----------*/
.box_style01 {
  background: var(--bg-color);
  padding: 20px;
  margin: 0 0 15px;
}

.box_style02 {
  border: solid 1px var(--border-color);
  padding: 20px;
  margin: 0 0 15px;
}

.box_style03 {
  border: dashed 1px var(--border-color);
  padding: 20px;
  margin: 0 0 15px;
}

.box_style01 p:last-of-type,
.box_style02 p:last-of-type,
.box_style03 p:last-of-type {
  margin-bottom: 0;
}

/*----------テーブル----------*/
.freearea_up table,
.freearea_under table,
.body_single table,
.table_style2_30,
.table_style2_50,
.table_style2_70,
.table_style3,
.blog_text table {
  width: 100%;
  border-spacing: 1px;
  border-collapse: separate;
  background-color: var(--bg-color);
}

.freearea_up th,
.freearea_under th,
.freearea_up td,
.freearea_under td,
.body_single th,
.body_single td,
.table_style2_30 th,
.table_style2_30 td,
.table_style2_50 th,
.table_style2_50 td,
.table_style2_70 th,
.table_style2_70 td,
.table_style3 th,
.table_style3 td,
.blog_text th,
.blog_text td {
  padding: 8px 20px;
}

.freearea_up th,
.freearea_under th,
.body_single th,
.table_style2_30 th,
.table_style2_50 th,
.table_style2_70 th,
.table_style3 th,
.blog_text th {
  font-weight: bold;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
}

.freearea_up td,
.freearea_under td,
.body_single td,
.table_style2_30 td,
.table_style2_50 td,
.table_style2_70 td,
.table_style3 td,
.blog_text td {
  background-color: #fff;
  border: 1px solid var(--border-color);
}

.table_style2_30 span,
.table_style2_50 span,
.table_style2_70 span,
.table_style3 span {
  font-size: 80%;
}

.table_style2_30 tr:first-of-type th,
.table_style2_30 tr:first-of-type td {
  width: 30%;
}

.table_style2_30 tr:first-of-type td:nth-child(2) {
  width: 70%;
}

.table_style2_50 tr:first-of-type th,
.table_style2_50 tr:first-of-type td {
  width: 50%;
}

.table_style2_70 tr:first-of-type th,
.table_style2_70 tr:first-of-type td {
  width: 70%;
}

.table_style3 th,
.table_style3 td {
  width: 33.3333333333% !important;
}

/*----------ラインマーカー----------*/
.marker {
  background: linear-gradient(transparent 60%, #ffff93 60%);
}

/*************************************************/
/*----------下層ページの見出し----------*/
.main_headline {
  padding-bottom: 2px;
  letter-spacing: 0.15em;
  vertical-align: middle;
  text-align: center;
  text-shadow: 0 0 5px #fff;
}

.main_headline p {
  letter-spacing: 0.2em;
  display: inline-block;
  font-size: 105%;
  color: var(--main-color);
  font-weight: bold;
  text-transform: capitalize;
}

.main_headline p.midashi {
  line-height: 1.5;
  font-size: 200%;
  text-align: center;
  font-weight: bold;
  display: block;
  color: var(--text-color);
  text-transform: inherit;
}

.main_headline p.midashi:before,
.main_headline p.midashi:after {
  display: none;
}

/*----------飾りの英語の棒----------*/
.main_headline p::before,
.main_headline p::after {
  position: relative;
  content: "-";
}

.main_headline p::before {
  left: -0.5em;
}

.main_headline p::after {
  right: -0.5em;
}

/*ページ内リンク設定*/
.ank_single {
  position: relative;
  margin: 0 0 80px;
}

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

.anklink li {
  width: 49%;
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: space-between;
  position: relative;
  margin: 0 0 10px;
}

.anklink li a {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid var(--main-color);
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  vertical-align: middle;
  transition: 0.1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anklink li a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.anklink li i {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  margin: auto;
}

/* 扉ページのリンク */
.contentlink{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}
.contentlink li{
  max-width: 390px;
  width: 100%;
}
.contentlink li a{
  display: block;
  text-align: center;
  font-weight: bold;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  padding: 10px;
}
.contentlink li a:hover{
  color: #fff;
  background: var(--main-color);
}

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

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

==================================================================*/
/*ボタン ゴースト*/
.btn01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:15px;
  position: relative;
  line-height: 1;
  color: #02b1a0;
  font-weight: bold;
  transition: ease-in-out 0.1s;
  font-size:28px;
  font-weight:bold;
  border-radius:50px;
  width:400px;
  height:90px;
  background:linear-gradient(to right,#90c854,#c8dc46);
  line-height:1;
  color:#fff;
  text-align:left;
  box-shadow:0 5px 10px rgba(0,0,0,0.2);
}
.btn01 a small{
  display:block;
  font-size:16px;
}
.btn01 {
  position: relative;
}
/* btn02 */
.btn02 a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:15px;
  position: relative;
  line-height: 1;
  color: #02b1a0;
  font-weight: bold;
  transition: ease-in-out 0.1s;
  font-size:24px;
  font-weight:bold;
  border-radius:50px;
  width:450px;
  height:90px;
  background:linear-gradient(to right,#f29600,#f8c000);
  line-height:1;
  color:#fff;
  text-align:left;
  box-shadow:0 5px 10px rgba(0,0,0,0.2);
}
.btn01 a:hover,.btn02 a:hover {
  transform: translate(0, 5px);
  transition:0.2s ease-in-out;
  box-shadow:0 0 0 rgba(0,0,0,0.2);
}
.btn02 a i {
  margin-right: 7px;
}

.btn03 {
  text-align:center;
}
.btn03 a{
  position:relative;
  width:400px;
  margin:0 auto;
  padding:28px 0 26px;
  display:inline-block;
  color:#fff;
  background:#08a353;
  text-align:center;
  border-radius:50px;
  box-shadow:0 5px 10px rgba(0,0,0,0.2);
  transition: 0.2s ease-in-out;
  border:1px solid #08a353;
  line-height:1;
  font-size:24px;
  letter-spacing: 0.1em;
}
.btn03 a:hover{
  transform:translate(0,5px);
  box-shadow:0 0 0 rgba(0,0,0,0.2);
}

.btn_document{
  position:relative;
}
.btn_document p{
  position: relative;
  display: table;
  margin: 0 auto 10px;
  color: #00b1a0;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1;
}
.btn_document p::before {
  position: absolute;
  top: -2px;
  left: -14px;
  height: 24px;
  width: 6px;
  border-left: 1.5px solid #00b1a0;
  border-right: 1.5px solid #00b1a0;
  transform: rotate(-14deg);
  content: "";
}
.btn_document p::after {
  position: absolute;
  top: -2px;
  right: -14px;
  height: 24px;
  width: 6px;
  border-left: 1.5px solid #00b1a0;
  border-right: 1.5px solid #00b1a0;
  transform: rotate(14deg);
  content: "";
}
.btn_document a{
  position:relative;
  width:450px;
  height:100px;
  display:flex;
  align-items: center;
  justify-content: center;
  gap:20px;
  color:#fff;
  background:linear-gradient(to right, #00b09f,#5db46c);
  text-align:center;
  border-radius:50px;
  box-shadow:0 5px 10px rgba(0,0,0,0.2);
  transition: 0.2s ease-in-out;
  line-height:1;
  font-size:26px;
}
.btn_document img{
  width:25px;
}
.btn_contact{
  position:relative;
}
.btn_contact p{
  position: relative;
  display: table;
  margin: 0 auto 10px;
  color: #f29600;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1;
}
.btn_contact p::before {
  position: absolute;
  top: -2px;
  left: -14px;
  height: 24px;
  width: 6px;
  border-left: 1.5px solid #f29600;
  border-right: 1.5px solid #f29600;
  transform: rotate(-14deg);
  content: "";
}
.btn_contact p::after {
  position: absolute;
  top: -2px;
  right: -14px;
  height: 24px;
  width: 6px;
  border-left: 1.5px solid #f29600;
  border-right: 1.5px solid #f29600;
  transform: rotate(14deg);
  content: "";
}
.btn_contact a{
  position:relative;
  width:450px;
  height:100px;
  display:flex;
  align-items: center;
  justify-content: center;
  gap:20px;
  color:#fff;
  background:linear-gradient(to right, #f29600,#f8c000);
  text-align:center;
  border-radius:50px;
  box-shadow:0 5px 10px rgba(0,0,0,0.2);
  transition: 0.2s ease-in-out;
  line-height:1;
  font-size:26px;
}
.btn_contact img{
  width:38px;
}

.btn_contact a:hover,.btn_document a:hover{
  box-shadow:0 0 0 rgba(0,0,0,0.2);
  transform:translate(0,5px);
  transition:0.2 ease-in-out;
}

/*----------番号付き----------*/
ol {
  margin: 0;
  padding: 0;
  counter-reset: number;
  list-style: none;
}

ol li {
  /* margin: 0 0 10px 30px; */
  list-style-type: none;
  position: relative;
}

ol li:last-of-type {
  /* margin: 0 0 0 30px; */
}

ol li:before {
  padding: 2px 8px;
  border-radius: 2%;
  color: var(--sub-color);
  counter-increment: number;
  content: counter(number) ".";
  font-weight: bold;
  left: -30px;
  position: absolute;
}

/*----------番号（四角の背景色付き）----------*/
ol.square {
  margin: 0;
  padding: 0;
  counter-reset: number;
  list-style: none;
}

ol.square li {
  margin-bottom: 12px;
  list-style-type: none;
}

ol.square li:before {
  padding: 2px 8px;
  background: var(--sub-color);
  color: #fff;
  counter-increment: number;
  content: counter(number);
}

/*----------番号（四角の背景色付き）----------*/
ol.circle {
  margin: 0;
  padding: 0;
  counter-reset: number;
  list-style: none;
}

ol.circle li {
  margin-bottom: 12px;
  list-style-type: none;
}

ol.circle li:before {
  margin: 0 0 8px;
  line-height: 1.6;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: unset;
  background: var(--sub-color);
  border-radius: 50%;
  color: #fff;
  counter-increment: number;
  content: counter(number);
}

/*----------何かの装飾----------*/
.top_flex_box {
  display: flex;
  justify-content: space-between;
}

.top_flex_box > div {
  flex: 1;
  padding: 0 35px;
}

/*----------引用----------*/
blockquote {
  padding: 20px;
  background: #f0f0f0;
  color: #555;
  font-style: italic;
  font-size: 85%;
}

blockquote p:last-of-type {
  margin-bottom: 0;
}

/*--------------------アンカーリンンク--------------------*/
/*4個並び*/
.ank01 {
  margin: 0 auto 100px;
}

.ank01 li {
  display: table;
  position: relative;
  float: left;
  width: 24%;
  height: 66px;
  margin-bottom: 1.5%;
  margin-left: 1.33%;
  line-height: 1.4;
}

.ank01 li:nth-child(1),
.ank01 li:nth-child(5),
.ank01 li:nth-child(9) {
  margin-left: 0;
}

.ank01 li a {
  display: table-cell;
  padding: 12px 5px 15px;
  border: 1px solid var(--main-color);
  font-weight: bold;
  font-size: 13px;
  color: var(--main-color);
  text-align: center;
  vertical-align: middle;
  transition: 0.1s ease-in-out;
}

.ank01 li a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.ank01 li i {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  margin: auto;
}



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

  *ループスライダー

==================================================================================================================================*/
.clinic_slider {
  overflow: hidden;
}

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

  *common

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

.img_fr {
  display: block;
  position: relative;
  float: right;
  margin-left: 30px;
  margin-bottom: 1em;
  text-align: center;
}

.img_fr img {
  border-radius: 3px;
  margin-bottom: 7px;
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
}

.img_fr dd {
  padding-left: 20px;
  line-height: 1.3;
  font-size: 15px;
  font-weight: bold;
  color: #1F2774;
  text-align: left;
}

.img_fl {
  display: block;
  position: relative;
  float: left;
  margin-bottom: 1em;
  margin-right: 30px;
  text-align: center;
}

.img_fl img {
  border-radius: 3px;
  margin-bottom: 7px;
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
}

.img_fr + p:after {
  display: block;
  clear: both;
  content: "";
}

.float_clear {
  float: none !important;
}

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

  *スマホ設定

==================================================================================================================================*/
/*--------------------*基礎--------------------*/

/* CSS Document */
@media (min-width: 641px) and (max-width: 1024px) {
  body,
  .nav_wrap.fixed,
  .mainvisual_wrap,
  #mainvisual,
  header,
  footer {
    min-width: 1400px;
  }

  .tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap {
    width: 1400px;
  }
}

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

body,
.nav_wrap.fixed,
#mainvisual,
header,
footer {
  min-width: 100%;
}

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

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

  header

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

  header {
    display: none;
  }

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

  nav

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

.nav_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding:10px;
  background: #fff;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.nav_wrap .header_logo {
  width: calc(100% - 56px);
}

.nav_wrap .header_logo a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 0 8px 10px;
}

.nav_wrap .header_logo img {
  width: auto;
  height: 30px;
}

/* ハンバーガーボタン */
.btn_tgl_menu {
  position: relative;
  right: 0;
  color: #333;
  width: 55px;
  border: none;
  padding: 0;
  margin: 0;
  text-align: center;
  transition: right 0.6s cubic-bezier(.19, 1, .22, 1);
  background:none;
}

.btn_tgl_menu i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-style: normal;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.btn_tgl_menu span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1rem;
  width: 30px;
  height: 2px;
  background: #333;
  transition: all 0.6s cubic-bezier(.19, 1, .22, 1);
  opacity: 1;
}

.btn_tgl_menu span:nth-of-type(1) {
  top: 10px;
}

.btn_tgl_menu span:nth-of-type(2) {
  top: 20px;
}

.btn_tgl_menu span:nth-of-type(3) {
  top: 30px;
}

/* MENUボタン押下時 */
.btn_tgl_menu.active {
  /* right: 16.25rem; */
  z-index:1000;
}

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

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

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

.tgl_menu_list ul.head_btn{
  display:none;
}

/* ドロップダウンメニュー */
.tgl_menu_list {
  position: fixed;
  top:-100%;
  left:0;
  z-index: 2;
  overflow: hidden;
  width:100%;
  height: calc(100% - 66px);
  transition: top 0.6s cubic-bezier(.19, 1, .22, 1);
  background: #fff;
  padding: 15px 20px;
}
.tgl_menu_list nav{
  height:100%;
}
.tgl_menu_list ul {
  display:flex;
  flex-flow: column wrap;
  height:100%;
}

.tgl_menu_list ul li {
  position:relative;
  display: block;
  /* border-bottom: 1px solid #fff; */
  width: 100%;
}

.tgl_menu_list ul li.btn{
  display:none;
}

.tgl_menu_list ul li:first-child {
  /* border-top: 1px solid #fff; */
}

.tgl_menu_list ul li::after {
  display: none;
}

.tgl_menu_list ul li a,
.tgl_menu_list ul li p {
  position: relative;
  display: block;
  padding: 15px 10px 15px 20px;
  width: auto;
  color: #333;
  letter-spacing: 0.1em;
}


.tgl_menu_list ul li a::before{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  margin:auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #16a18e;
  content:"";
}

.tgl_menu_list ul li p::before{
  position:absolute;
  top:0;
  bottom:0;
  left:-2px;
  margin:auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 7px solid #16a18e;
  border-bottom: 0;
  content:"";
}

.tgl_menu_list ul li a span,
.tgl_menu_list ul li p span {
  display: none;
}
.tgl_menu_list ul.tgl_btn_flex{
  display:flex;
  gap:10px;
  flex-flow: column;
  height:auto;
  margin:auto 0 0;
}

.tgl_menu_list  .tgl_btn_flex li a{
  color:#fff;
  font-size:5vw;
  padding:15px 8px;
  height:auto;
  display:flex;
  justify-content: center;
  align-items: center;
}
.tgl_menu_list  .tgl_btn_flex li a::before,.tgl_menu_list .tgl_btn_flex li a::after{
  content:none;
}

body.nav-open .tgl_menu_list {
  overflow-x: scroll;
  overscroll-behavior-y: none;
  top: 66px;
  left:0;
}


body.nav-open .nav_wrap{
  background:#fff;
}

nav ul li div{
  position:static;
  display:flex;
  flex-direction: column;
  width:100% !important;
  box-shadow:none;
  padding:0 0 0 10px;
  margin:0 0 20px;
}
nav ul li.nav_slidebtm:hover div{
  flex-wrap: nowrap;
}
nav ul li div.child_menu a{
  justify-content: flex-start;
  padding:13px 5px 13px 12px;
  border-bottom: 1px solid #eee;
}
/* nav ul li div.child_menu a:not(:last-child){
  border-right:1px solid #eee;
} */


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

body.nav-open .nav_overlay {
  display: block;
  opacity: 1;
  visibility: visible;
}

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

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

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

.btn_area li.btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 10px 2%;
  border-radius: 5px;
}

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

.btn_area li.btn_tel a{
  background: #019F58;
}

.btn_area li.btn_yoyaku a{
  background: linear-gradient(to right, #f29600,#f8c000);
}

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

.btn_area li.btn_access a{
  background: #00C7A3;
}

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

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

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

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

.btn01 a{
  width:80%;
  font-size:16px;
  height:60px;
  margin:0 auto;
}
.btn02 a{
  width:100%;
  height:70px;
  font-size:18px;
}

.btn03 a{
  width:100%;
  padding:6vw 0;
  font-size:4vw;
}

.btn_contact a,.btn_document a{
  width:100%;
  padding:6vw 0;
  font-size:4vw;
}
.btn_contact a::before{
  left:5vw;
  width:10vw;
  height:10vw;
}
.btn_document a::before{
  left:6vw;
  width:8vw;
  height:8vw;
}

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

#mainvisual

============================================================================*/
/* 共通 */
#mainvisual {
  background-attachment: scroll;
  /* margin-top: 110px; */
  padding:calc(8vw + 60px) 0 0;
  height:auto;
  overflow: hidden;
}

#mainvisual:before{
  content:none;
}

#mainvisual .inner {
  width: auto;
  height: inherit;
  padding:0 10px 30px;
}
.mainvisual_catch{
  margin:0 0 20px;
}
.mainvisual_catch p.main{
  text-align:center;
  font-size:8vw;
  margin:0 0 20px;
  margin:0 0 4vw;
}
.mv_feature_tit{
  font-size:3.7vw;
}
.mv_feature_tit span{
  font-size:5.5vw;
}

.mv_batch{
  /* position:static; */
  /* margin:20px 0 0; */
  top:64vw;
  right:7vw;
}
.mv_batch ul{
  justify-content: center;
}
.mv_batch ul li{
  width:20vw;
  height:20vw;
  gap:5px;
}
.mv_batch ul li p{
  font-size:14px;
  font-family: "m-plus-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
  color:#969696;
}

.mainvisual_catch{
  width:100%;
}
.mainvisual_catch p.sub{
  font-size:8vw;
  text-align:center;
  margin:0 0 1vw;
}
.mainvisual_catch p.catch{
  font-size:5.6vw;
  font-weight:600;
  margin:0 0 10px;
  line-height:2.2;
  padding:0 0 0 5px;
}
.mainvisual_catch p.catch small{
  font-size:5vw;
}

.mv_price{
  width:60%;
  margin:8vw 0 0;
}

.mv_img{
  position:static;
  width:100%;
  margin:40px 0 0;
  gap:10px;
  /* position:static;
  width:90%;
  margin:0 auto; */
}

.mv_btn ul{
  gap:20px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width:100%;
}


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

footer

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

.footer_info {
  width: auto;
  padding: 40px 6%;
  flex-direction: column;
  align-items: center;
}

.footer_logo{
  margin:0 0 40px;
}

.footer_navi ul{
  flex-direction: column;
  align-items: center;
  gap:10px;
}

.footer__office-inner {
	display: block;
	width: 88%;
	margin: 30px auto;
	padding: 0;
}
.footer__office-title {
	margin-bottom: 13px;
}
.footer__office-list {
	margin-bottom: 30px;
}
.footer__office-list dd {
	/* color: #fff; */
}
.footer__office-list dd a {
	/* color: #fff; */
}


.copy {
  padding:20px 0 75px;
}

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

$top

============================================================================*/
/** lineup **/
.lineup_flex{
  gap:30px;
  flex-direction: column;
}
.lineup_item{
  width:100%;
  padding:25px 20px 20px;
  border-radius:20px;
}
.lineup_item h3{
  margin:0 0 15px;
  font-size:28px;
}
.lineup_item h3 small{
  font-size:16px;
}
.lineup_img{
  height:250px;
  padding:20px;
}
.full .lineup_img img{
  width:auto;
  height:100%;
}
.lineup_info h4{
  font-size:20px;
  line-height:1.3;
}
.lineup_info p{
  font-size:16px;
}
.lineup_item .btn01 a{
  width:100%;
  height:50px;
  font-size:16px;
  margin:20px auto 0;
}

/** trouble **/
.trouble{
  padding:0 0 50px;
  background:linear-gradient(to bottom, #fff 95%, transparent 95%);
}
.trouble::before{
  height:85%;
}
.trouble::after{
  height:50px;
}
.trouble_flex{
  flex-direction: column;
  gap:40px;
  margin:0 0 80px;
}
.trouble_flex::before{
  bottom:-60px;
}
.trouble_item{
  border-radius:20px;
  width:100%;
  height:auto;
  padding:10px;
}
.trouble_item::before{
  top:-35px;
  bottom:auto;
  right:-15px;
  width:85px;
  height:85px;
}
.trouble_item.trouble_item02::before{
  width:85px;
  height:87px;
}
.trouble_item_tit{
  padding:10px 0;
  margin:0 auto 10px;
  border-radius:20px 20px 0 0;
  width:94%;
  font-size:24px;
  font-weight:bold;
}
.trouble_item_tit br{
  display:none;
}
.trouble_item ul{
  padding:15px 10px;
}
.trouble_item ul li{
  font-size:14px;
}
.trouble_item ul li:not(:first-child){
  margin:8px 0 0;
}
.trouble_future_text{
  font-size:5vw;
  text-align:center;
  margin:0 auto;
}
.trouble_future_text::before{
  left:-12vw;
}
.trouble_future_text::after{
  right:-12vw;
}

.trouble_future{
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:10px;
  margin:0 0 20px;
}
.trouble_future_item{
  width:90%;
}
.trouble_future_item p{
  width:calc(50% - 5px);
  font-size:3.5vw;
  line-height:40px;
}
.trouble_img{
  width:80%;
}

/** resolution **/
.resolution{
  padding:200px 0 20px;
}
.resolution:before{
  height:51%;
}
.resolution .tit_wrap{
  margin:0 0 30px;
}
.resolution_info{
  padding:0;
  margin:0 0 40px;
  width:100%;
  flex-direction: column;
  gap:30px;
}
.resolution_img{
  width:100%;
}
.resolution_info p{
  font-size:15px;
  line-height:1.5;
}
.resolution_info_text{
  width:100%;
}
.resolution_info_text h3{
  font-size:5.5vw;
  line-height:1.4;
}
.resolution_list{
  flex-wrap: wrap;
  justify-content: space-between;
  gap:20px 0;
}
.resolution_list li{
  width:48%;
}
.resolution_list li h3{
  font-size:16px;
}
.resolution_flow{
  margin:0 0 60px;
}
.resolution_flow::before{
  bottom:-45px;
}
.resolution_flow h3{
  font-size:28px;
}
.resolution_flow_box{
  flex-direction: column;
}
.resolution_flow_box::before{
  right:auto;
  left:113px;
  top:51px;
  height:80%;
  width:2px;
}
.resolution_flow_item{
  display:flex;
  padding:20px;
  gap:20px;
}
.resolution_flow_box h4{
  width:40px;
  height:auto;
  font-size:16px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin:0;
}
.resolution_flow_box ul{
  flex-direction: column;
  flex:1;
  gap:20px;
}
.resolution_flow_box li{
  display:flex;
  width:100%;
  gap:20px;
}
.resolution_flow_box li figure{
  height:60px;
  width:70px;
  margin:0;
}
.resolution_flow_box li figure::before{
  content:none;
}
.resolution_flow_box li p{
  font-size:14px;
  height:60px;
  flex:1;
}
.resolution_conclusion h3{
  font-size:28px;
  line-height:1.4;
}
.resolution_conclusion h3 span{
  display:block;
}
.resolution_conclusion p{
  font-size:16px;
}


/** cta **/
.cta{
  padding:40px 0 10px;
}
.cta::before{
  width:100%;
  height:60px;
  background-size:auto 100%;
  background-repeat: no-repeat;
}
.cta .box{
  padding:0 4%;
}
.cta h2{
  display:block;
  font-size:6.5vw;
  text-align:center;
  justify-content: center;
  margin:0 0 30px;
}
.cta h2 span{
  font-size:6vw;
  color:#fff;
}
.cta_logo{
  margin:0 auto 30px;
  width:300px;
}
.cta_flex{
  flex-direction: column;
  align-items: center;
  gap:25px;
  margin:0 0 30px;
}
.cta_item{
  padding:0;
  width:100%;
}
.cta_item p{
  font-size:14px;
  margin:0 auto 10px;
}
.cta_img{
  display:none;
}
.cta_tel{
  width:100%;
}
.cta_tel p{
  top: -10vw;
  width: 85%;
  font-size: 3.5vw;
  line-height: 1.2;
  padding: 3vw 0;
  font-size:3.5vw;
}
.cta_tel a{
  width:100%;
  padding:2vw 5vw;
  font-size:8vw;
  gap:5vw;
  height:auto;
}
.cta_tel a span{
  height:10vw;
}
.cta_tel img{
  width:10vw;
  vertical-align: baseline;
}

/** reason **/
.reason{
  padding:60px 0 10px;
}
.reason .box{
  padding:0;
}
.reason .tit_wrap{
  margin:0 0 20px;
}
.reason_item,.reason_item:nth-child(odd){
  flex-direction: column;
  margin:0;
  gap:30px;
  padding:40px 5%;
}
.reason_item:nth-child(even){
  flex-direction: column;
}
.reason_item:nth-child(odd)::before,.reason_item:nth-child(even)::before{
  height:100%;
}
.reason_img,.reason_item:nth-child(3) .reason_img{
  position: relative;
  top:auto;
  bottom:auto;
  left:auto;
  right:auto;
  width:100%;
  padding:0;
}
.reason_item:nth-child(2) .reason_img{
  width:125%;
}

.reason_item:nth-child(2) .reason_img figure{
  right:-10%;
  width:70px;
  bottom:-20px;
}
.reason_img picture img{
  border-radius:15px;
}
.reason_img_item{
  width:220px;
  right:0;
  left:0;
  bottom:-15px;
  margin:auto;
}
.reason_img_item p{
  font-size:14px;
}
.reason_img_item img{
  width:100%;
}
.reason_text{
  width:100%;
}
.reason_text h3{
  font-size:32px;
  margin:0 0 20px;
}
.reason_text p{
  font-size:15px;
}
.reason_text p.num{
  position:absolute;
  top:0;
  left:10px;
  font-size:16px;
}
.reason_text p small{
  font-size:12px;
}
.reason_item_list li{
  font-size:14px;
}

.reason_child{
  padding:0 4%;
  gap:20px;
  flex-direction: column;
  align-items: center;
}
.reason_child::before{
  width:50vw;
  height:100%;
  left:0;
  right:auto;
}
.reason_child_item{
  width:90%;
}
.reason_child_item figure{
  max-height:160px;
  overflow: hidden;
}
.reason_child_info{
  padding:20px 15px;
}
.reason_child_info h3{
  font-size:16px;
}
.reason_child_info p{
  font-size:14px;
  line-height:1.5;
}

/** comparison **/
.comparison{
  padding:60px 0 20px;
}
.comparison_table .dl1{
  width:20%;
}
.comparison_table .dl2{
  width:38%;
  margin:0 6px 0 0;
  text-align:center;
}
.comparison_table .dl3{
  width:42%;
  text-align:center;
}
.comparison_table .dt{
  font-size:16px;
}
.comparison_table .dd{
  font-size:14px;
  padding:10px 6px 40px;
  line-height:1.4;
  height:100px;
  justify-content: center;
}
.comparison_table .dd1::before,.comparison_table .dd2::before,.comparison_table .dd3::before{
  top:auto;
  bottom:13px;
  left:0;
  right:0;
}
.comparison_table .dl1 .dd{
  padding:10px;
  font-size:14px;
}

/** screen **/
.screen{
  padding:40px 0;
}
.screen_tab{
  padding:0;
}
.splide__arrows{
  width:100%;
}
.splide__arrow{
  width:30px;
  height:30px;
}
.splide__arrow--prev{
  left:0.5rem;
}
.splide__arrow--next{
  right:0.5rem;
}
.splide__arrow--prev:hover,.splide__arrow--next:hover{
  opacity:0.5;
}
.screen_cate_tab{
  width:90%;
}
.screen_cate{
  border-radius:10px 10px 0 0;
  font-size:18px;
}
.screen_list{
  padding:20px;
  border-radius:10px;
}
.splide__track{
  width:100%;
}
.splide__slide p{
  font-size:14px;
}
.showroom_access{
  width:100%;
  margin:20px 0 0;
}
.showroom_access h3{
  line-height:1.2;
  margin:0 0 10px;
  font-size:20px;
}
.showroom_access h3 span{
  display:block;
}
.showroom_access iframe{
  height:150px;
}

/** support **/
.support{
  padding:50px 0;
}
.support_list{
  flex-direction: column;
  gap:40px;
}
.support_item{
  width:100%;
  height:auto;
  padding:25px 30px;
}
.support_text h3{
  font-size:20px;
  line-height:1.4;
  height:auto;
}
.support_text p{
  font-size:14px;
}
.support_plan h3{
  font-size:18px;
  line-height:1.8;
}
.support_plan_list{
  flex-direction: column;
  gap:50px;
}
.support_plan_item{
  width:100%;
  height:auto;
}
.support_plan_item:first-child::before{
  top:auto;
  bottom:-44px;
  left:0;
  right:0;
  width:25px;
  height:36px;
  font-size:32px;
}
.support_plan_item:nth-child(2)::before{
  top:auto;
  bottom:-41px;
  right:0;
  left:0;
  width:32px;
  height:35px;
  font-size:32px;
}
.support_plan_item h4{
  font-size:16px;
}
.support_content{
  padding:20px 20px 10px;
}
.support_content .price{
  font-size:30px;
  padding:0 0 12px;
}
.support_content .price::before{
  width:100%;
}
.support_content ul{
  padding:15px 0 0;
}
.support_content li{
  line-height:1.4;
  font-size:16px;
}
.support_content li::before{
  top:7px;
}

/** plan **/
.plan{
  padding:0 0 70px;
}
.plan_top_text{
  font-size:20px;
}
.plan_list{
  flex-direction: column;
  gap:30px;
  margin:0 0 30px;
}
.plan_item{
  width:100%;
}
.plan_item h3{
  font-size:20px;
  padding:10px 0 ;
}
.plan_info{
  padding:20px 15px;
}
.plan_fukidashi{
  top:-9px;
  right:-10px;
  width:120px;
  height:84px;
  font-size:14px;
  padding:25px 0 0;
}
.plan_item_price{
  margin:0 0 20px;
  padding:15px;
}
.plan_item_price dl{
  padding:0 10px 0 0;
  flex-direction: column;
  gap:10px;
}
.plan_item_price dl:first-child{
  margin:0 0 30px;
}
.plan_item_price dl:first-child::before{
  bottom:-16px;
}
.plan_item_price dt{
  width:120px;
  font-size:18px;
  padding:8px 0;
}
.plan_item_price dd{
  font-size:14px;
}
.plan_item_price dd span{
  font-size:32px;
}
.plan_item_support h4{
  font-size:20px;
}
.plan_item_support_info{
  padding:20px 15px;
}
.plan_item_support_info p{
  font-size:16px;
  line-height:1.5;
}
.plan_item_support_info p span{
  display:block;
  font-size:80%;
}
.plan_item_support_info ul{
  padding:0 0 0 20px;
}
.plan_item_support_info li{
  font-size:15px;
}

.device_support h3{
  font-size:20px;
}
.device_support_info{
  padding:20px;
  flex-direction: column;
  gap:40px;
}
.device_support_item{
  width:100%;
}
.device_support_item:first-child::before{
  left:0;
  right:0;
  bottom:-19px;
  top:auto;
  margin:auto;
  transform:none;
  width:100%;
}
.device_support_item dl{
  flex-direction: column;
  gap:0;
  margin:0 0 5px;
}
.device_support_item dt{
  font-size:16px;
}
.device_support_item dd span{
  font-size:32px;
}
.device_support_item li{
  font-size:16px;
}
.device_support_item li span{
  font-size:16px;
}


/** flow **/
.flow{
  padding:50px 0;
}
.flow_item{
  width:100%;
  gap:26px;
}
.flow_item:not(:last-child)::before{
  top:auto;
  bottom:-40px;
  left:0;
  right:0;
  margin:auto;
  height:40px;
}
.flow_item .num{
  position:absolute;
  top:10px;
  left:10px;
  width:60px;
  height:60px;
  font-size:27px;
}
.flow_item .num span{
  font-size:12px;
}
.flow_info{
  flex-direction: column;
  align-items: center;
  gap:20px;
  padding:20px;
  border-radius:15px;
}
.flow_img{
  width:55px;
}
.flow_img::before{
  content:none;
}
.flow_text{
  padding:0;
}
.flow_text h3{
  font-size:20px;
  text-align:center;
  margin:0 0 5px;
}

/** qa **/
.qa{
  padding:60px 0 40px;
}
.qa1{
  width:100%;
}
.qa1 dl{
  padding:10px;
  border-radius:10px;
}
.qa1 dl dt{
  font-size:14px;
  padding:10px 40px;
}
.qa1 dl dt::before{
  top:9px;
  left:9px;
  font-size:22px;
  line-height:1.2;
}
.qa1 dl dd{
  padding:10px 30px 10px 40px;
  font-size:14px;
  line-height:1.4;
}
.qa1 dl dd::before{
  top:12px;
  left:9px;
  font-size:22px;
}
.js-toggle.qa1 dt::after{
  font-size:20px;
  right:7px;
}


.contact{
  padding:60px 0;
}
.contact_text_box{
  width:100%;
}
.contact form{
  padding:30px;
}
.contact form .form_item {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:0 10px;
}
.contact input[type=text], .contact input[type=tel], .contact input[type=email], .contact select, .contact textarea{
  padding:10px;
}
.contact input[type=date]{
  padding:10px;
}
.contact form .form_item .date{
  margin:0 0 5px 0;
}
.contact label{
  width:100%;
}
.contact .check-box{
  font-size:14px;
}
.contact .btnSubmitWrap{
  margin:30px auto 0;
}
.contact .privacy_check{
  text-align:left;
}
.contact .privacy_check label{
  font-size:14px;
}
.contact label a{
  font-size:14px;
}
.contact #btnSubmit{
  height:60px;
  font-size:18px;
}
.contact .required{
  height:auto;
  width:65px;
  font-size:12px;
  line-height:20px;
}


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

$thanks

============================================================================*/
.top_smart_map{
    display:none;
}
.top_smart_map_sp{
    position:relative;
    display:block;
}
.top_smart_map_sp::before{
    position:absolute;
    right:15px;
    bottom:43px;
    width:27px;
    /* height:58.55%; */
    /* height:61.9%; */
    height:64.36%;
    border-right:1px solid;
    border-top:1px solid;
    border-bottom:1px solid ;
    border-image: linear-gradient(to bottom, #ed8492, #22ab3c);
    border-image-slice: 1;
    content:"";
    z-index:1;
}
.top_smart_map_sp::after{
    position: absolute;
    left: 62px;
    bottom: 233px;
    width: 37px;
    /* height: 72.74%; */
    /* height:76.88%; */
    height:78.5%;
    border-left: 1px solid;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: linear-gradient(to bottom, #018cd3, #018cd3);
    border-image-slice: 1;
    content: "";
    z-index: 1;
}
.smart_map_list{
    flex-direction: column;
}
.smart_map_box{
    display:flex;
    justify-content: space-between;
    gap:10px;
    margin:0 0 40px;
    padding:0 30px 0 20px;
}
.smart_map_col{
    width:calc(100% - 65px);
}
.smart_map_tit_sp{
    margin:0;
    width:32px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.3em;
    font-size:16px;
    display:flex;
    justify-content: center;
    align-items: center;
    background:#3352a7;
    color:#fff;
    font-weight:bold;
}
.smart_map_tit_sp.sm_tit_02{
    background:#34373e;
}
.smart_map_item{
    width:100%;
    height:auto;
    flex:1;
    padding:14px;
}
.smart_map_box:not(:last-child) .smart_map_item::before{
    position: absolute;
    top: auto;
    right: 0;
    left:0;
    bottom:-29px;
    margin:auto;
    transform:rotate(90deg);
    width: 12px;
    height: 20px;
    background-image: url(../images/sm_item_arr.png);
    background-size: cover;
    content: "";
}
.smart_map_item:not(:first-child){
    margin:40px 0 0;
}
.smart_map_item_text{
    height:auto;
    margin:0 0 30px;
}
.smart_map_item_text p{
    font-size:3.3vw;
}
.smart_map_item.item_03::after{
    position:absolute;
    left:-12px;
    bottom:73px;
    width:27px;
    height:calc(100% + 41px);
    border-left:1px solid;
    border-top:1px solid;
    border-bottom:1px solid ;
    border-image: linear-gradient(to bottom, #ed8492, #00afec);
    border-image-slice: 1;
    content:"";
}
.smart_map_item:nth-child(5) li{
  margin:0 0 20px;
}
.smart_map_item:nth-child(5) li:last-child::before{
  content:none;
}
.smart_map_item_logo li.line_l_a::after{
    content:none;
}
/*============================================================================

$導入事例一覧

============================================================================*/
.case_cate{
  width:100%;
  padding:25px;
  flex-direction: column;
  gap:30px;
  border-radius:15px;
}
.case_cate_list{
  padding:0;
  gap:10px;
}
.case_cate_list::before{
  content:none;
}

.case_list{
  width:100%;
}
.case_item{
  margin:0 0 40px;
}
.case_item a{
  flex-direction: column;
  padding:20px;
  gap:20px;
}
.case_item a figure{
  width:100%;
}

.cate_item_info .doctor_name{
  font-size:14px;
}
.case_item_cate li{
  font-size:13px;
}
.cate_item_info h3{
  font-size:17px;
}

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

$導入事例個別ページ

============================================================================*/
.case_wrap{
  padding:0 4%;
}
.case_info{
  margin:0 0 40px;
}
.case_info figure{
  width:100%;
}
.case_info_box{
  width:100%;
  padding:25px;
}
.clinic_name{
  font-size:20px;
}
.case_text{
  width:100%;
}
.case_clinic_info{
  width:100%;
}
.case_text h2{
  font-size:24px;
}
.case_text h3{
  font-size:18px;
}

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

  *FAQ

==================================================================================================================================*/
.faq{
  width:100%;
  padding:0 4%;
}


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

$見出し

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

h1 {
  font-size: 12px;
  width: auto;
  padding: 5px 15px;
  text-align: center;
  position: static;
  margin-top: 0 !important;
}

h1.sub{
  padding:85px 15px 15px;
}

h2{
  font-size:24px;
  margin:0 0 40px;
}

h3{
  position:relative;
  font-size:24px;
}

.tit_wrap{
  margin:0 0 40px;
}
.tit_wrap h2{
  font-size:26px;
  line-height:1.2;
}
.tit_en{
  font-size:16px;
  margin:0 auto 15px;
}

.sub_tit_en{

}

.contents_bg h3{
  font-size:20px;
  line-height:1.3;
}

.nowrap {
  white-space: normal;
}


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

$breadcrumbs ぱんくず

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

.breadcrumbs {
  width: 90%;
  margin: 0 5% 40px;
}

.breadcrumbs li {
  display: inline-block;
}

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

    *共通仕様（スマホ）

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


.box1 {
  width: auto;
  margin: 0 6% 80px;
}

.box2 {
  width: auto;
  margin: 0 6% 80px;
}

#container{
  padding:50px 0 0;
}

#contents {
  padding-bottom: 70px;
  width:100%;
  padding-top:0;
}

.box {
  width: auto;
  padding: 0 5% 8%;
}

.text {
  float: none;
  width: auto;
  padding: 0;
  border: none;
}


#contents_left {
  width: auto;
  float: none;
  margin-right: 0;
}

#contents_right {
  width: auto;
  padding: 0 6%;
  float: none;
}
  footer .box1{
    padding: 0 5% 40px;
  }
  .textarea p {
    font-size: 14px;
    margin-bottom: 1.5em;
  }

  .contents {
    width: 100%;
  }

  .contents_bg {
    padding:20px 0 0;
  }

  .wrapper {
    width: 100%;
    display: block;
    padding: 10px 0 0;
  }

  .wrapper main {
    width: 100%;
    margin-bottom: 40px;
    padding: 0 20px 0;
  }

  :is(.blog,.single-post,.archive,.category):not(.tax-cate_menu,.tax-cate_disease,.tax-cate_symptom,.tax-cate_case) .wrapper main{
    width: 100%;
  }

  body.home .wrapper main {
    padding-left: 0;
    padding-right: 0;
  }

  .medical_single {
    padding: 0 !important;
  }

  .body_single p img {
    display: block;
    margin: 0 auto;
  }

  /*----------リスト----------*/
  .alignment_list ul{
    padding:20px;
    border-radius:10px;
  }
  .alignment_list li{
    width:100%;
    padding:6px 0 6px 25px;
  }
  .alignment_list li::before{
    left:5px
  }
  .alignment_feature{
    padding:20px;
    border-radius:10px;
  }
  .alignment_feature_item{
    flex-direction: column;
    padding:0 0 20px;
    margin:0 0 20px;
  }
  .alignment_feature_item h3{
    width:100%;
    margin:0 0 15px;
  }
  .function .top_function_list li a h3{
    font-size:14px;
  }
  .function .function_icon{
    width:40px;
    height:40px;
  }
  .function .function_icon img{
    width:auto;
    height:30px;
  }

  .function_item{
    flex-direction: column-reverse;
    padding:20px;
    border-radius:10px;
  }
  .function_img{
    width:100%;
  }
  /*----------テーブル----------*/
  .sp_w100 th,
.sp_w100 td {
    width: 100% !important;
    display: block !important;
    border-top: none;
  }

  .sp_w100 tr:first-child th,
.sp_w100 tr:first-child td:first-child {
    border-top: 1px solid var(--border-color);
  }

  .tb01 {
    width: 100%;
    table-layout: fixed;
    white-space: inherit;
  }

  .tb01 th {
    width: 30%;
  }

  .tb01 th + td {
    width: 70%;
  }

  .tb03,
.tb03 th {
    white-space: inherit;
  }

  .tb03.w075par {
    width: 100%;
  }

  .tb04,
.tb04 th {
    white-space: normal;
  }

  .tb04 th {
    font-size: 13px;
  }

  .tb04 td,
.tb04 th {
    padding: 2%;
  }

  /*--------------------診療時間表--------------------*/
  .tb02 th {
    min-width: unset;
  }

  .tb02 th,
.tb02 td {
    padding: 3px 0 3px 0;
  }

  .tb02 tr:first-child th,
.tb02 tr:first-child td {
    padding: 0 0 2px 0;
  }

  /*--------------------サイドバー--------------------*/
  .side_area {
    width: 100%;
    margin: auto;
    padding: 30px 20px 20px;
  }

  /*--------------------診療内容などのコンテンツ--------------------*/
  .anklink li {
    width: 100%;
    margin: 0 0 10px;
  }

  /* コンテンツリンク */
  .contentlink{
    margin-bottom: 80px;
  }
  .contentlink li{
    margin: 0 auto;
  }

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

    *フリーエリア（上・下）（スマホ）

  ==================================================================================================================================*/
  .freearea_up_img {
    float: none;
    margin: 0 0 15px 0;
    text-align: center;
  }

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

  .freearea_under_img {
    float: none;
    margin: 0 0 15px 0;
    text-align: center;
  }

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


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

    *ループスライダー（スマホ）

  ==================================================================================================================================*/
  #loop_slider li img {
    width: 200px;
  }

  /*--------------------common--------------------*/
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .pc_inline {
    display: none !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .pc_table {
    display: table !important;
  }
  .sp_table {
    display: table !important;
  }
  .sp_flex {
    display: flex !important;
  }
  .sp_mb00 {
    margin-bottom: 0 !important;
  }
  .sp_mr00 {
    margin-right: 0 !important;
  }
  .sp_ml00 {
    margin-left: 0 !important;
  }
  .sp_mt00 {
    margin-top: 0 !important;
  }
  .sp_pb00 {
    padding-bottom: 0 !important;
  }
  .sp_pr00 {
    padding-right: 0 !important;
  }
  .sp_pl00 {
    padding-left: 0 !important;
  }
  .sp_pt00 {
    padding-top: 0 !important;
  }
  .sp_center {
    text-align: center;
  }
  .img_fl,
.img_fr {
    float: none;
    margin: 0;
    text-align: center;
  }
  .img_fl img,
.img_fr img {
    margin-bottom: 15px;
    width: auto;
    max-width: 100%;
    max-height: 300px;
    height: auto;
  }
}
@media screen and (max-width: 320px) {
  .main_catch p {
    font-size: 16px;
  }

  /*--------------------サイドバー--------------------*/
  .side_area {
    width: 100%;
  }

  /*--------------------common--------------------*/
  .sp_inline_iP {
    display: inline !important;
  }
}
