/* カラー変更 */
:root {
--content-width: 1000px;
--main-color: #ffb3da;
--sub-color: #324D98;
--pale-color: #324D98;
}

/* コンテンツレイアウト */
body{
font-family:"游ゴシック体", "Yu Gothic", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", YuGothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", sans-serif;
}

* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
word-break: break-all;
border-spacing: 0;
border-collapse: collapse;
text-indent: initial;
text-decoration: none;
line-height: 2.0em;
}

section {
padding: 60px 0;
}

section:first-of-type {
padding-top: 60px;
}

@media (max-width: 767px) {
section {
padding: 30px 0;
}
}

@media (max-width: 767px) {
section:first-of-type{
padding-top: 30px;
}
}

.container{
padding-right: calc(30px / 2);
padding-left: calc(30px / 2);
}

@media (min-width: 767px) {
.container {
margin: 0 auto;
max-width: var(--content-width);
}
:first-child {
margin-top: 0;
}
}

.row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: 30px;
margin-bottom: 0;
margin-right: calc(-1 * 30px / 2);
margin-left: calc(-1 * 30px / 2);
justify-content: center;
}

@media (max-width: 767px) {
.row {
display: block;
margin-top: 0;
margin-left: 0;
margin-right: 0;
justify-content: flex-start;
}
.row.sp-2row {
display: flex;
}
}
@media (min-width: 767px) {
.container {
margin: 0 auto;
max-width: var(--content-width);
}
:first-child {
margin-top: 0;
}
}

.reverse {
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}

.row .span_1 {
width: calc(100% / 12 * 1);
}

.row .span_2 {
width: calc(100% / 12 * 2);
}

.row .span_3 {
width: calc(100% / 12 * 3);
}

.row .span_4 {
width: calc(100% / 12 * 4);
}

.row .span_5 {
width: calc(100% / 12 * 5);
}

.row .span_6 {
width: calc(100% / 12 * 6);
}

.row .span_7 {
width: calc(100% / 12 * 7);
}

.row .span_8 {
width: calc(100% / 12 * 8);
}

.row .span_9 {
width: calc(100% / 12 * 9);
}

.row .span_10 {
width: calc(100% / 12 * 10);
}

.row .span_11 {
width: calc(100% / 12 * 11);
}

.row .span_12 {
width: 100%;
}

.row > .col {
margin-top: 30px;
margin-left: 0;
padding-right: calc(30px / 2);
padding-left: calc(30px / 2);
}


@media (max-width: 767px) {
.row > .col {
margin-top: 20px;
margin-left: 0;
margin-right: 0;
padding-right: calc(30px / 2);
padding-left: calc(30px / 2);
width: 100%;
}

.row.sp-2row > .col {
width: 50%;
}
}

@media (max-width: 767px) {
.row .span_1 {
width:auto;
}
.row > .col:not(:first-child) {
margin-top: 20px;
}
.box-wrapper{
  margin-top: 50px;
}
.boxitem:nth-child(2n){
  margin-top: 40px!important;
}
.boxitem:nth-child(2n+1){
  margin-top: -30px!important;
}
}

/* ぱんくず */
.bread_wrap {
margin-top: 0;
margin-bottom: 0;
}

.bread {
overflow: hidden;
margin: 0;
}

.bread ul {
margin: 0 auto;
float: none;
}

@media (max-width: 767px) {
.bread ul {
padding: 15px 0;
}
}

.bread ul li {
list-style: none;
position: relative;
float: left;
margin-right: 20px;
padding-right: calc(20px + 9px);
}

@media (max-width: 767px) {
.bread ul li {
margin-right: 15px;
padding-right: calc(15px + 9px);
}
}

.bread ul li a {
padding:0;
text-decoration: none;
color: #1b1b1b;
}


.bread ul li a:hover {
color: #1b1b1b;
text-decoration: none;
}

.bread ul li:after {
content: '>';
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
margin: auto;
}

.bread ul li:last-child {
padding-right: 0;
margin-right: 0;
}

.bread ul li:last-child:after {
content: none;
}

/* 画像のフィックス */

figure{
margin: 0;
text-align: center;
}

img {
vertical-align: middle;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;
max-width: 100%;
width: 100%;
height: auto;
}

figure img{
width: inherit;
}

/* 投稿 */
.article_list {
padding: 30px;
border: 1px solid #FF4E41;
position: relative;
overflow: hidden;
}

@media (max-width: 767px) {
.article_list {
padding: 20px;
}
}

.article_list:first-child {
margin-top: 0;
}

.article_list:nth-child(n+2) {
margin-top: 30px;
}

.article_detail {
background: rgba(234, 0, 0, 0.05);
padding: 4%;
margin-bottom: 4%;
font-size: 1.2rem;
}


.article_detail .span_12 {
margin: 2% 0;
}

.article_button {
margin-top: 30px;
text-align: right;
}

@media (max-width: 767px) {
.article_button {
margin-top: 20px;
}
}

.more {
display: inline-block;
overflow: hidden;
margin: auto;
}

.more.btn_ss a,
.more.btn_ss span {
padding: 0.3em 2.1em 0.3em 1.4em;
}

.more.btn_s a,
.more.btn_s span {
padding: 0.5em 2.1em 0.5em 1.4em;
}

.more.btn_m a,
.more.btn_m span {
padding: 0.5em 2.1em 0.5em 1.4em;
}

.more a,
.more span {
display: inline-block;
letter-spacing: normal;
color: #FF4E41;
border: 1px solid #FF4E41;
padding: 0.9em 1.6em;
margin-bottom: 1px;
text-decoration: none;
}

.more a:after,
.more span:after {
border-color: #FF4E41;
}

.more a:hover,
.more span:hover {
color: #333;
border-color: #333;
}

.more a:hover:after,
.more span:hover:after {
border-color: #333;
}

.more a.add_arrow,
.more span.add_arrow {
padding-right: 1.9em;
}

.add_arrow {
display: block;
position: relative;
}

.add_arrow:after {
content: "";
display: block;
position: absolute;
top: 50%;
right: 5%;
margin: auto;
width: 6px;
height: 6px;
border-top: 1px solid #fff;
border-right: 1px solid #fff;
-webkit-transform: translate(0, -50%) rotate(45deg);
transform: translate(0, -50%) rotate(45deg);
-webkit-transition: 0.2s;
transition: 0.2s;
}

.add_arrow:hover:after {
right: 3%;
border-color: #fff;
}

.more {
display: inline-block;
overflow: hidden;
margin: auto;
}

.more a {
display: inline-block;
letter-spacing: normal;
border: 1px solid #FF4E41;
color: #FF4E41;
padding: 0.3em 1.3em 0.3em 1em;
margin-bottom: 1px;
text-decoration: none;
font-size: 1.2rem;
}

.pager {
overflow: hidden;
margin-bottom: 5%;
}

.pager .pager_prev {
float: left;
}

.pager .pager_prev a {
display: block;
position: relative;
padding-left: 15px;
text-decoration: none;
}

.pager .pager_prev a:before,
.pager .pager_prev a:after {
content: "";
display: block;
position: absolute;
left: 2px;
margin: auto;
width: 8px;
height: 1px;
background: #FF4E41;
-webkit-transition: .2s;
transition: .2s;
}

.pager .pager_prev a:before {
-webkit-transform: translateY(-50%) rotate(-45deg);
transform: translateY(-50%) rotate(-45deg);
top: calc(50% - 2px);
}

.pager .pager_prev a:after {
-webkit-transform: translateY(-50%) rotate(-135deg);
transform: translateY(-50%) rotate(-135deg);
top: calc(50% + 3px);
}

.pager .pager_prev a:hover {
text-decoration: underline;
}

.pager .pager_prev a:hover:before {
left: 0;
}

.pager .pager_prev a:hover:after {
left: 0;
}

.pager .pager_next {
float: right;
}

.pager .pager_next a {
display: block;
position: relative;
padding-right: 15px;
text-decoration: none;
}

.pager .pager_next a:before,
.pager .pager_next a:after {
content: "";
display: block;
position: absolute;
right: 2px;
margin: auto;
width: 8px;
height: 1px;
background: #FF4E41;
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transition: .2s;
transition: .2s;
}

.pager .pager_next a:before {
-webkit-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
top: calc(50% - 2px);
}

.pager .pager_next a:after {
-webkit-transform: translateY(-50%) rotate(135deg);
transform: translateY(-50%) rotate(135deg);
top: calc(50% + 3px);
}

.pager .pager_next a:hover {
text-decoration: underline;
}

.pager .pager_next a:hover:before {
right: 0;
}

.pager .pager_next a:hover:after {
right: 0;
}

.news-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
padding: 10px 20px;
border: 1px solid #FF4E41;
border-radius: 15px;
background: #fff;
line-height: 1.625;
}

@media (max-width: 767px) {
.news-item {
padding: 10px 15px;
border-radius: 8px;
line-height: 1.625;
}
}

.news-item:nth-child(n+2) {
margin-top: 20px;
}

@media (max-width: 767px) {
.news-item:nth-child(n+2) {
margin-top: 15px;
}
}

.news-item time {
width: 110px;
}


.news-item a {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
color: #FF4E41;
}

.news-item a:hover {
text-decoration: underline;
opacity: .7;
}


/* コンタクトフォーム */
.inquiry{
width: 960px;
margin: 0 auto;
}

@media (max-width: 960px) {
.inquiry{
width:auto;
}
}

.inquiry input[type="text"], .inquiry input[type="url"], .inquiry input[type="email"], .inquiry input[type="tel"], .inquiry input[type="date"], .inquiry input[type="number"], .inquiry select, .inquiry textarea {
width: 100%;
padding: 5px;
color: #000;
}
.submit{
display: block;
text-align: center;
margin: 30px auto 0;
}
.button, .inquiry .wpcf7-submit {
display: inline-block;
min-width: 0px;
margin: 0;
padding: 1em 1em;
border: 0;
border-radius: 4px;
line-height: 1;
background: #f18200;
color: #fff;
text-align: center;
text-decoration: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
transition: .3s;
}
.button:hover, .inquiry .wpcf7-submit:hover {
background: #ced4d2;
color: #383637;
}
.wpcf7-spinner{
display: none;
}
.required {
color: #c00;
}


/* Slider */
.mv{
position: relative;
}
.mv-image {
position: relative;
}

.slider02 .mv-image, .slider03 .slide-image {
padding: 0 5px;
}

.mv-image span {
font-size: 3.2rem;
align-items: center;
line-height: 1.4;
font-weight: normal;
color:#333;
padding: 10px;
background: rgba(255, 255, 255, 0.70);
}

.mv-image figure img {
width: 100%;
}

.mv-image div {
position: absolute;
bottom: 25%;
left: 40px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}

@media (max-width: 1024px) {
.mv-image span {
font-size: 2.2rem;
}
.mv-image div {
bottom:20%;
}
}
@media (max-width: 767px) {
.mv-image span {
font-size: 1.6rem;
}
.mv-image div {
left:0;
bottom:40%;
}
}
/* 見出し */

h2.heading-1.special {
line-height: 1.8rem;
position: relative;
word-wrap: break-word;
font-weight: normal;
margin: 0;
padding:10px 0;
text-align: center;
}

h2.heading-1.special:after {
content:"";
position: absolute;
overflow: hidden;
top: 0;
right: 0;
background: url("../images/heading-bg.png") no-repeat center;
background-size: 50% 100%;
height: 100%;
width: 100%;
z-index: -1;
}

h2.heading-2 {
position: relative;
word-wrap: break-word;
font-weight: bold;
margin: 0;
padding:30px 0 10px;
font-size: 1.8rem;
color: #333;
letter-spacing: 1px;
text-align: center;
}

h2.heading-2:after {
  content:"";
  position: absolute;
  overflow: hidden;
  top: 10px;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  background: url("../images/character.png") no-repeat center;
  background-size: contain;
  height: 80px;
  width: 80px;
}
h2.heading-bg:before {
  content:"";
  position: absolute;
  overflow: hidden;
  display: block;
  background: url("../images/heading-bg.jpg") #ffb3da no-repeat center;
  background-size: 100% 100%;
  left: 50%;
  width: 100%;
  height: 190px;
  z-index: -1;
    transform: translate(-50%,-50%);
}
h2.heading-bg {
padding:30px 0 35px;
}
@media (max-width: 767px) {
h2.heading-1.special:after {
background-size: 100% 100%;
}
h2.heading-1 {
font-size: 1.4rem;
}
h2.heading-1 span {
font-size: 1.2rem;
}
h3.heading-3{
font-size:1.0rem;
}
h2.heading-bg:before {
  background-size: 150% 100%;
  height: 130px;
}
}


h3.heading-3{
position: relative;
font-size:1.2rem;
margin:20px 0;
border-bottom: dashed 2px #333;
color: var(--main-color);
}


@media (max-width: 480px) {
h2.heading-2{
font-size:1.1rem;
}
}

/* ボタン */

.btn-1 {
color: #1b1b1b;
display: block;
width: 180px;
margin: 0 auto 40px;
height: auto;
padding: 16px 10px;
text-align: center;
border: var(--sub-color) 1px solid;
background: #fff;
-webkit-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}

.btn-1.left{
float: left;
}

.btn-1.right{
float: right;
}

.btn-1:hover {
color: #fff;
background: var(--sub-color);
}

/* テーブル */

.table-schedule {
width: 100%;
}
.table-schedule tr{
  border: 1px solid #2D2928;
}

.table-schedule th{
  border-right:  1px solid #2D2928;
}

.table-schedule td,
.table-schedule th {
padding: 0.2em;
border-top: 1px solid #2D2928;
border-bottom: 1px solid #2D2928;
text-align: center;
background: #fff;
}

@media (max-width: 480px) {
.table-schedule td,
.table-schedule th {
padding: 0.7em .3em;
}
}

.table-schedule thead th {
color: #2D2928;
}

.table-schedule tbody th {
color: #2D2928;
}

.table-default {
width: 100%;
}

.table-default td,
.table-default th {
padding: 0.7em 1em;
border: 1px solid var(--main-color);
vertical-align: middle;
}

.table-default th {
background: var(--pale-color);
color: #fff;
}

@media (max-width: 768px) {
.scroll{
width: 100%;
border-collapse: collapse;
white-space: nowrap;
overflow-x: scroll;
}
}
/* 流れ */


span.bg {
background: var(--main-color);
color: #fff;
padding: 8px;
display: block;
margin-right: 5px;
}

.indent {
margin-left: 2em;
text-indent: -2em;
border-bottom: 1px solid #707070;
}
.indent span.bg {
display: inline;
}

.frame {
border: 1px solid #707070;
padding: 1em 0;
position: relative;
display: flex;
background: #fff;
}

.frame>.col{
padding-right: calc(30px / 2);
padding-left: calc(30px / 2);
}

.span_6 .frame,.span_4 .frame {
margin-top: 30px;
}

@media (max-width: 767px){
.span_6 .frame,.span_4 .frame {
margin-top: 20px;
}
.frame {
display: block;
}
.frame .span_2,
.frame .span_3,
.frame .span_4,
.frame .span_5,
.frame .span_6,
.frame .span_7,
.frame .span_8,
.frame .span_9,
.frame .span_10{
width: 100%!important;
}
}

.frame.arrow:after {
border-color: #707070;
border-style: solid;
border-width: 30px 1px;
content: '';
position: absolute;
right: 50%;
bottom: -61px;
z-index: -1;
}
.frame.arrow.end:after {
display: none;
}

/* リスト */

dl {
margin: 0 0 1em;
line-height: 1.6;
display: flex;
flex-wrap: wrap;
}

dl:last-child {
margin-bottom: 0;
}

dl dt {
display: flex;
justify-content: space-between;
font-weight: bold;
width: 30%;
background: var(--main-color);
padding:20px;
color: #fff;
border: 1px solid var(--pale-color);
}

dl dd {
padding:20px;
margin-left: 0;
width: 70%;
border: 1px solid var(--pale-color);
}

dl dd:last-child {
margin-bottom: 0;
}

@media (max-width: 767px){
dl dt {
width: 100%;
}
dl dd {
width: 100%;
}
}


/* ページトップ */
.pagetop {
position: fixed;
bottom: 98px;
right: 5%;
z-index: 100;
}

@media (max-width: 767px) {
.pagetop {
bottom: 74px;
}
}

.pagetop a {
overflow: hidden;
text-indent: 100%;
white-space: nowrap;
display: inline-block;
position: relative;
width: 70px;
height: 70px;
padding: 0;
border-radius: 50%;
background: var(--main-color);
}

@media (max-width: 767px) {
.pagetop a {
width: 50px;
height: 50px;
}
}

.pagetop a:after {
content: "";
display: block;
position: absolute;
top: 50%;
left: 50%;
margin: auto;
width: 10px;
height: 10px;
border-top: 2px solid #fff;
border-left: 2px solid #fff;
-webkit-transform: translate(-50%, -20%) rotate(45deg);
transform: translate(-50%, -20%) rotate(45deg);
-webkit-transition: .2s;
transition: .2s;
}


/* バナーエリア */

.bnr {
margin: -15px;
padding: 0;
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}

@media (max-width: 767px) {
.bnr {
margin: -10px;
}
}

.bnr li {
padding: 15px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
max-width: 250px;
}

@media (max-width: 767px) {
.bnr li {
padding: 10px;
}
}

.bnr li a img {
margin: 0 auto;
}

/* ヘッダー */
header{
position: absolute;
top: 0;
z-index: 10;
width: 100%;
}
.header-wrap {
position: fixed;
margin-right: auto;
margin-left: auto;
width: 100%;
min-height: 77px;
padding: 10px 40px;
text-align: center;
background: rgba(255, 179, 219, 0.5);
z-index: 999;
}

@media (max-width: 480px) {
.header-wrap:after {
border: none;
}
.header-wrap:before {
border: none;
}
}
@media (max-width: 767px) {
.header-wrap {
overflow: hidden;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
height: 100%;
min-height: 0;
margin-top: 0;
z-index: 999;
padding: 15px;
}
}
@media (max-width: 480px) {
.header-wrap {
padding: 10px 15px 10px 10px;
height: auto;
}
}

.header-main {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%;
}
.header-info{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
justify-content: end;
flex-wrap: wrap-reverse
}

.header-head:not(.title) img {
height: 80px;
}
@media (max-width: 767px) {
.header-main {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: flex-start;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
width: 100%;
}
}
.header-head:not(.title) {
line-height: 1;
margin: 0;
flex: none;
}

@media (max-width: 767px) {
.header-head:not(.title) {
margin: 0 auto;
padding: 0;
text-align: center;
width: 100%;
}
}
@media (max-width: 767px) {
.header-head:not(.title) {
width: 60%;
}
}

.header-head {
text-align: left;
}
.header-head a {
display: inline-block;
}
.header-copy:not(.title) {
color: #1b1b1b;
font-size: 1rem;
font-weight: normal;
line-height: 1.2;
margin: 0 0 20px 0;
padding: 4px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
text-align: left;
position: relative;
}

@media (max-width: 767px) {
.header-copy:not(.title) {
display: none;
}
}

.tel-text{
font-size: 20px;
display: inline-block;
font-family: 'Kosugi Maru', sans-serif;
color: var(--main-color);
}


.header-btn {
display: flex;
flex-wrap: wrap;
cursor: pointer;
padding:10px;
justify-content: flex-end;
align-items: center;
}

.header-btn img {
height: 45px;
margin-left: 5px;
}

@media (max-width: 767px) {
.header-btn img {
width: auto;
}
}

.sp-nav{
display: flex;
flex-wrap: wrap;
align-items: center;
position: fixed;
}
.nav-wrapper{
position: fixed;
width: 100%;
display: flex;
flex-wrap: wrap;
bottom: 0;
}
.nav-wrapper div{
width: 25%;
display: flex;
background: #fff;
align-items: center;
justify-content: center;
border-right: 1px solid #505050;
border-top: 1px solid #505050;
}
.nav-wrapper div:first-child{
border-left: 1px solid #505050;
}

.nav-wrapper a{
padding: 10px;
}

.nav-wrapper a:hover{
opacity: 0.7;
}
/* フッター */

.footer {
padding: 60px 0 0;
background: #ffd9ec;
}

@media (max-width: 767px) {
.footer {
padding: 30px 0 0;
}
}

.footer-info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}

@media (max-width: 767px) {
.footer-info {
display: block;
}
}

.footer-info__data {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
padding: 0 calc(30px / 2);
color: #fff;
text-align: left;
}

@media (max-width: 767px) {
.footer-info__data {
margin-top: 20px;
text-align: center;
}
}

.footer-info__name img {
margin: auto;
width: auto!important;
}

.footer-info__adress {
margin-top: 5px;
line-height: 1.5em;
}

.footer-info__tel {
margin-top: 5px;
}

.footer-info__tel a {
color: #fff;
}

.footer__copy {
background: var(--main-color);
padding: 20px 0;
line-height: 1.42857;
text-align: center;
color: #fff;
margin: 0;
}

@media (max-width: 767px) {
.footer__copy {
padding: 20px 0;
line-height: 1.66667;
}
}

.footer-info__data .footer-info__tel {
margin-bottom: 0;
}

/* フローティング */

#reservation {
background: rgba(35, 40, 30, 0.7);
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 20002;
}

#reservation ul {
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin: 0 auto;
padding: 20px;
list-style: none;
width: 100%;
max-width: var(--content-width);
}

@media (max-width: 767px) {
#reservation ul {
padding: 5px;
}
}

#reservation ul li {
margin: 0 5% 0 0;
border-radius: 3px;
width: 100%;
position: relative;
}

#reservation ul li:last-child {
margin: 0;
}

#reservation ul li a {
background: var(--main-color);
color: #fff;
padding: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 1.5rem;
border-radius: 3px;
}

#reservation ul li.mobile_tel_btn a {
font-size: 16px;
}

@media (max-width: 480px) {
#reservation ul li.mobile_tel_btn a {
pointer-events: auto;
}
}


/* トグル */
summary {
display: block;
list-style: none;
}

summary::-webkit-details-marker {
display: none;
}

.toggle-wrap{
margin-bottom: 20px;
}

.toggle-wrap:last-child{
margin-bottom: 0;
}


.toggle_inner {
cursor: pointer;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
font-weight: bold;
color: #333;
background: #ffd5eb;
line-height: 1.5rem;
padding: 5px 0;
}
.toggle_inner.even {
background: #fec3ab;
}
.toggle_inner span.qa {
padding:10px 20px;
color: #fff;
margin-right: 5px;
}
.icon {
display: block;
position: relative;
width: 24px;
margin-left: 6px;
flex-shrink: 0;
transform-origin: center 43%;
transition: transform 0.4s;
margin: 20px;
}

.icon:before{
left: 0;
transform: rotate(45deg);
}

.icon:after{
right: 0;
transform: rotate(-45deg);
}

.icon:before, .icon:after{
content: "";
position: absolute;
display: block;
width: 15px;
height: 3px;
background-color: #333;
}

.toggle-content p{
padding: 20px 20px 20px 40px;
background: #FFF;
margin: 0;
}

details[open] .icon {
transform: rotate(180deg);
}

/* 汎用クラス */

.bg-red{
background-color:#fe266d!important;
}

.bg-blue{
background-color:#1646b1!important;
}

.bg-green{
background-color:#5fcf32!important;
}

.bg-orange{
background-color:#ffa204!important;
}

.text-red{
color: #db2d2d!important;
}

.text-blue{
color: #2420db!important;
}

.text-green{
color: #6ddb20!important;
}

.text-orange{
color: #db9620!important;
}

.text-pink{
color: #db20b2!important;
}

.text-black{
color: #000000!important;
}

.text-white{
color: #FFFFFF!important;
}

.mt0 {
margin-top: 0px!important;
}
.mb0 {
margin-bottom: 0px!important;
}
.pb0 {
padding-bottom: 0px!important;
}
.pt0{
padding-top: 0px!important;
}
.pall30{
padding: 30px!important;
}
.mt10{
margin-top:10px!important;
}

.mt20{
margin-top:20px!important;
}

.mt30{
margin-top:30px!important;
}

.mt40{
margin-top:40px!important;
}

.mt50{
margin-top:50px!important;
}

.mt60{
margin-top:60px!important;
}

.mt140{
margin-top:140px!important;
}
.mr10{
margin-right:10px!important;
}

.mr20{
margin-right:20px!important;
}

.mr30{
margin-right:30px!important;
}

.mr40{
margin-right:40px!important;
}

.mr50{
margin-right:50px!important;
}

.mr60{
margin-right:60px!important;
}

.mb10{
margin-bottom:10px!important;
}

.mb20{
margin-bottom:20px!important;
}

.mb30{
margin-bottom:30px!important;
}

.mb40{
margin-bottom:40px!important;
}

.mb50{
margin-bottom:50px!important;
}

.mb60{
margin-bottom:60px!important;
}

.ml10{
margin-left:10px!important;
}

.ml20{
margin-left:20px!important;
}

.ml30{
margin-left:30px!important;
}

.ml40{
margin-left:40px!important;
}

.ml50{
margin-left:50px!important;
}

.ml60{
margin-left:60px!important;
}

.pt10{
padding-top:10px!important;
}

.pt20{
padding-top:20px!important;
}

.pt30{
padding-top:30px!important;
}

.pt40{
padding-top:40px!important;
}

.pt50{
padding-top:50px!important;
}

.pt60{
padding-top:60px!important;
}

.pr10{
padding-right:10px!important;
}

.pr20{
padding-right:20px!important;
}

.pr30{
padding-right:30px!important;
}

.pr40{
padding-right:40px!important;
}

.pr50{
padding-right:50px!important;
}

.pr60{
padding-right:60px!important;
}

.pb10{
padding-bottom:10px!important;
}

.pb20{
padding-bottom:20px!important;
}

.pb30{
padding-bottom:30px!important;
}

.pb40{
padding-bottom:40px!important;
}

.pb50{
padding-bottom:50px!important;
}

.pb60{
padding-bottom:60px!important;
}

.pl10{
padding-left:10px!important;
}

.pl20{
padding-left:20px!important;
}

.pl30{
padding-left:30px!important;
}

.pl40{
padding-left:40px!important;
}

.pl50{
padding-left:50px!important;
}

.pl60{
padding-left:60px!important;
}

.text-bold{
font-weight: bold!important;
}

.text-center{
text-align: center!important;
}

.text-right{
text-align: right!important;
}

.text-left{
text-align: left!important;
}


.text-xlarge {
font-size: 2.0rem!important;
}

.text-large {
font-size: 1.6rem!important;
}


@media (max-width: 767px) {
.pc-only{
display: none !important;
}
.text-xlarge {
font-size: 1.8rem;
}
.text-large {
font-size: 1.3rem!important;
}
}

@media (min-width: 767px) {
.sp-only {
display: none !important;
}
}

@media (min-width: 767px) and (max-width: 1023px) {
.tablet-hide {
display: none !important;
}
}

@media (min-width: 1024px) {
.tablet-only {
display: none !important;
}
}


/* 背景ありコンテンツ */

/* 背景ありコンテンツ */
.kodawari-bg {
overflow: hidden;
position: relative;
}

.bg-01:after {
content:"";
position: absolute;
left: 50%;
top: 60%;
transform: translate(-50%,-50%);
overflow: hidden;
height: 250px;
width: 100%;
background: url("../images/kodawari-bg-04.png") no-repeat center;
background-size: 40%;
z-index: -1;
}

.bg-02:after {
content:"";
position: absolute;
left: 20%;
top: 70%;
transform: translate(-50%,-50%);
overflow: hidden;
height: 250px;
width: 100%;
background: url("../images/kodawari-bg-02.png") no-repeat center;
background-size: 40%;
z-index: -1;
}

.bg-03:after {
content:"";
position: absolute;
left: 80%;
top: 30%;
transform: translate(-50%,-50%);
overflow: hidden;
height: 250px;
width: 100%;
background: url("../images/kodawari-bg-03.png") no-repeat center;
background-size: 40%;
z-index: -1;
}

.bg-04:after {
content:"";
position: absolute;
left: 80%;
top: 60%;
transform: translate(-50%,-50%);
overflow: hidden;
height: 250px;
width: 100%;
background: url("../images/kodawari-bg-04.png") no-repeat center;
background-size: 40%;
z-index: -1;
}

.bg-04:before {
content:"";
position: absolute;
left: 20%;
top: 80%;
transform: translate(-50%,-50%);
overflow: hidden;
height: 250px;
width: 100%;
background: url("../images/kodawari-bg-05.png") no-repeat center;
background-size: 40%;
z-index: -1;
}

.bg-05:after {
content:"";
position: absolute;
left: 80%;
top: 80%;
transform: translate(-50%,-50%);
overflow: hidden;
height: 250px;
width: 100%;
background: url("../images/kodawari-bg-05.png") no-repeat center;
background-size: 40%;
z-index: -1;
}

.bg-06:after {
content:"";
position: absolute;
left: 80%;
top: 80%;
transform: translate(-50%,-50%);
overflow: hidden;
height: 250px;
width: 100%;
background: url("../images/kodawari-bg-04.png") no-repeat center;
background-size: 40%;
z-index: -1;
}

.bg-06:before {
content:"";
position: absolute;
left: 20%;
top: 80%;
transform: translate(-50%,-50%);
overflow: hidden;
height: 250px;
width: 100%;
background: url("../images/kodawari-bg-07.png") no-repeat center;
background-size: 40%;
z-index: -1;
}

@media (max-width: 767px) {
.bg-01:after{
  left: 64%;
  top: 40%;
  background-size: 80%;
}
.bg-02:after{
  left: 50%;
  top: 75%;
  background-size: 100%;
}
.bg-03:after{
  left: 60%;
  top: 35%;
  background-size: 80%;
}
.bg-04:after{
  left: 50%;
  top: 20%;
  background-size: 100%;
}
.bg-04:before{
  left: 50%;
  top: 70%;
  background-size: 100%;
}
.bg-05:after{
  left: 50%;
  top: 70%;
  background-size: 80%;
}
.bg-06:after{
  left: 40%;
  top: 40%;
  background-size: 80%;
}
.bg-06:before{
  left: 60%;
  top: 90%;
  background-size: 80%;
}
}

.content-02 {
overflow: hidden;
position: relative;
background: url("../images/content-02-bg.png") no-repeat center;
background-size: cover;
z-index: -2;
}

.content-02:after {
content:"";
position: absolute;
left: 0;
top: 0;
overflow: hidden;
background-size: cover;
height: 250px;
width: 100%;
background: url("../images/large-arrow.png") no-repeat center;
background-size: 100% 100%;
z-index: -1;
}

.content-03 {
background: #FDFFC8;
}

.bg-white{
  background: #fff;
}

.address{
text-align: center;
line-height: 1.5rem;
}

.tel{
font-size: 1.6rem;
text-align: center;
line-height: 1.5rem;
font-weight: bold;
background: var(--main-color);
border-radius: 30px;
}
.tel a{
position: relative;
color: #fff;
}
.tel a:before{
content:"";
position: absolute;
left: -40px;
top: 0;
overflow: hidden;
background: url("../images/phone.png") no-repeat center;
background-size: contain;
height: 30px;
width: 30px;
}

.mail{
font-size: 1.6rem;
text-align: center;
line-height: 1.5rem;
font-weight: bold;
background: var(--main-color);
border-radius: 30px;
}
.mail a{
position: relative;
color: #fff;
}
.mail a:before{
content:"";
position: absolute;
left: -40px;
top: 0;
overflow: hidden;
background: url("../images/mail.png") no-repeat center;
background-size: contain;
height: 30px;
width: 30px;
}
.parking{
font-size: 1.4rem;
text-align: center;
line-height: 1.5rem;
font-weight: bold;
background: var(--main-color);
border-radius: 30px;
}
.parking a{
position: relative;
color: #fff;
}
.disc{
font-size: 14px;
line-height: 1.5rem;
}

.hook{
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
   background: linear-gradient(transparent 85%, #FFA07A 15%);
}

.he80
{
	height: 80px;
}
@media (max-width: 480px) {
.he80
{
	height: 100%;
	width: 50%;
}
}



/* 追加コンテンツ */
.inner {
	max-width: 1680px;
	margin: 0 auto;
}
.heading-ortho {
	padding-bottom: 0;
}
.ortho-inner {
	background-image: url("../images/ortho_ad_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}
.heading-orange {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	padding: 80px 0;
	background: url("../images/heading-bg-orange.png") no-repeat center;
	margin-bottom: 0;
}
.heading-pink {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	padding: 80px 0;
	background: url("../images/heading-bg-pink.png")no-repeat center;
	margin-bottom: 0;
}
.orthodontics {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	max-width: 1680px;
	margin: 0 auto;
	padding: 50px 0;
}
.orthodontics img {
	width: 26%;
	margin-bottom: 50px;
}
.cause {
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.cause-inner {
	width: 50%;
	padding: 3rem;
	background: rgba(255,160,122,0.20);
	border-radius: 70px;
}
.cause-inner ul {
	list-style: none;
	padding: 0;
	margin-bottom: 55px;
}
.cause-inner li {
	font-size: 23px;
	font-weight: bold;
}
.cause-inner li::before {
	content: "✓";
}
.habit-inner {
	background: url("../images/cause_bg.jpg");
	background-size: cover;
	padding-bottom: 100px;
}
.habit-description {
	margin: 0 30px;
}
strong {
	display: inline-block;
	margin-top: 75px;
	font-size: 32px;
	margin-left: 30px;
	background: linear-gradient(transparent 70%, #CCCCFF 20%);
}
.habit-flex {
	display: flex;
	align-items: center;
	margin: 50px;
	position: relative;
	z-index: 5;
}
.habit01, .habit02, .habit03, .habit04, .habit05 {
	position: relative;
}
.habit01::after {
	content: "";
    display: block;
    width: 93%;
    height: 300px;
    background: rgba(255,179,219,0.60);
    border-bottom-right-radius: 150px;
    border-top-right-radius: 150px;
    position: absolute;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: -30px;
	z-index: 1;
}
.habit03::after {
	content: "";
    display: block;
    width: 93%;
    height: 300px;
	background: rgba(255,160,122,0.60);
    border-bottom-right-radius: 150px;
    border-top-right-radius: 150px;
    position: absolute;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: -30px;
	z-index: 1;
}
.habit05::after {
	content: "";
    display: block;
    width: 93%;
    height: 300px;
    background: rgba(255,179,219,0.60);
    border-bottom-right-radius: 150px;
    border-top-right-radius: 150px;
    position: absolute;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: -30px;
	z-index: 1;
}
.habit-img, .habit-txt {
	z-index: 5;
}
.flex-even {
	flex-direction: row-reverse;
}
.habit-even::after {
	content: "";
    display: block;
    width: 93%;
    height: 300px;
    background: rgba(248,134,134,0.60);
    border-bottom-left-radius: 150px;
    border-top-left-radius: 150px;
	border-bottom-right-radius: 0;
    border-top-right-radius: 0;
	position: absolute;
    margin-left: auto;
    left: 0;
    right: 0;
    bottom: -30px;
}
.habit-txt {
	max-width: 650px;
	padding: 50px 70px;
	background: #FFFFFF;
	border-radius: 40px;
	border: 3px solid #CAC5C5;
}
.habit-txt-title {
	font-size: 32px;
	font-weight: bold;
	color: #47444F;
}
.habit-txtbox {
	font-size: 16px;
	color: #47444F;
	padding-top: 37px;
	border-top: 3px solid #CAC5C5;
}
.advice {
	background-image: url("../images/ortho_ad_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	padding: 25px 0;
}
.advice-txt {
	max-width: 840px;
	margin: 240px auto;
	text-align: center;
	position: relative;
}
.advice-txt::before {
	content: '';
	display: inline-block;
	width: 40%;
    height: 73%;
	background-image: url("../images/advice1.png");
	background-size: contain;
	position: absolute;
	top: -186px;
    left: -29%;
    background-repeat: no-repeat;
}
.advice-txt::after {
	content: '';
	background-image: url("../images/advice2.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 40%;
    height: 73%;
	position: absolute;
	display: inline-block;
	bottom: -203px;
    right: -34%;
}
.advice-title {
	font-size: 40px;
	font-weight: bold;
}
.advice-title span {
	display: block;
	font-size: 32px;
	font-weight: 500;
	margin-top: 10px;
}
.advice-description {
	font-size: 20px;
	margin-top: 20px;
}

.coution {
	font-size: 14px;
}

.site-link {
	display: block;
	width: 90%;
	margin: 1rem auto;
}
.site-link:hover {
	opacity: 0.7;
}


/*memo:レスポンシブ↓*/
@media (max-width: 960px) {
	.heading-orange, .heading-pink {
		font-size: 24px;
	    padding: 50px 0;
	    background-size: contain;
	}
	.cause {
		flex-direction: column;
	}
	.cause-inner {
		width: 95%;
	}
	.cause-img {
		width: 40%;
		margin-left: auto;
	}
	.habit-txt {
		max-width: 430px;
		padding: 20px 30px;
	}
	.habit-txt-title {
		font-size: 24px;
	}
	.habit-txtbox {
		padding-top: 20px;
	}
	.habit01::after,
	.habit02::after,
	.habit03::after,
	.habit04::after,
	.habit05::after{
		width: 98%;
		height: 166px;
	}
	.advice-title {
		font-size: 32px;
	}
	.advice-title span {
		font-size: 25px;
	}
	.advice-description {
		font-size: 16px;
		max-width: 500px;
		margin: 20px auto;
	}
	.advice-txt {
		margin: 460px auto;
	}
	.advice-txt::before {
		left: 28px;
		top: -444px;
	}
	.advice-txt::after {
		right: 14px;
		bottom: -285px;
		height: 63%;
	}
	strong {
		font-size: 28px;
	}
	.site-link {
		width: 67%;
	}
}
	/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px) {
	.heading-orange, .heading-pink {
		font-size: 1rem;
		padding: 20px 0;
	}
	.orthodontics {
		padding: 20px 0;
	}
	.orthodontics img {
		width: 45%;
	}
	.cause-inner {
		padding: 1.3rem;
	}
	.cause-inner ul {
		padding-bottom: 20px;
	}
	.cause-inner li {
		font-size: 16px;
	}
	.habit-description {
		margin: 0 20px;
	}
	strong {
		margin-top: 43px;
    	font-size: 18px;
		margin-left: 0;
	}
	.habit-flex,.flex-even {
		margin: 20px 10px;
		flex-direction: column;
	}
	.habit-txt-title {
		font-size: 18px;
	}
	.habit01::after,
	.habit02::after,
	.habit03::after,
	.habit04::after,
	.habit05::after{
		width: 100%;
		height: 96px;
	}
	.advice-txt {
		margin: 215px auto;
	}
	.advice-title, .advice-title span {
		font-size: 17px;
	}
	.advice-txt::before {
		width: 46%;
	    height: 48%;
		top: -212px;
	}	
	.site-link {
		width: 100%;
	}
}