@charset "utf-8";
/* CSS Document */
/*-----フォントの設定-----*/
body {
    font-family: "M PLUS Rounded 1c", sans-serif;
}
/*-----フォントの設定ここまで-----*/

/*-----共通設定-----*/

html{
	font-size: 62.5%;
	color:#2e3535;
}
p{
    font-size: 1.6rem;
}
img{
    max-width: 100%;
    
}


.sp { 
    display: none !important;
}
.br-sp{
    display: none;
}
.br-tb{
    display: none;
}
/*-----共通設定ここまで-----*/



/**/
/**/
/**/
/**/
/**/
/*-----基本的にはここから下のコードを編集します。-----*/
/*-----振り分け番号のアルファベット(TV-)を検索をして下さい(ctrl+F)-----*/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/*header*/
/******* ヘッダーのスタイル ********/
header {
    position: fixed; /*** ← fixedで固定 ***/
    width: 100%; 
    height: 60px; 
    background: #00acc5; 
    padding: 20px 30px 20px 0; 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    align-items: center; 
	z-index: 1;
    justify-content:flex-end;
}
header .nav .menu li a{
   color: #ffffff;
   font-weight:bold;
   text-decoration: none;
   font-size: 2.4rem;
}
/*はじめは非表示*/
.content {
  opacity: 0;
}
.content.inview {
  animation-name: fade-in;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-delay: .4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  0% {
    transform: translateY(-40px);/*上から*/
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/*header項目追加*/
ul.menu {
    display: flex;
}

.header-tel:before{
	content: '';/*何も入れない*/
  display: inline-block;
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
  background-image: url("../img/tel.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: top;
  margin-right: 5px;
}
.header-form:before{
	content: '';/*何も入れない*/
  display: inline-block;
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
  background-image: url("../img/home.png");
	background-repeat: no-repeat;
  background-size: contain;
  vertical-align: top;
  margin-right: 5px;
}
.header-tel,.header-form, .header-top{
	height: 60px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.header-tel,.header-form{
	border-right: 1px solid #ffffff
}
li.header-form {
    padding: 0 20px;
}
li.header-tel {
    padding-right: 20px;
}
li.header-top {
    padding-left: 20px;
}


/**/
/**/
/**/
/*top-view<!--TV-->*/
/**/
/**/
/**/
#top-view img{
    width: 100%;
}
/**/
/**/
/**/
/*<!--TVここまで-->*/
/**/
/**/
/**/




/**/
/**/
/**/
/*merit<!--MR-->*/
/**/
/**/
/**/
#merit{
    background: url("../img/merit-bg.jpg")no-repeat center center / cover;
    text-align: center;
}
.merit-tittle{
    background: #00acc5;
    padding: 5.0rem 0 5.0rem 0;
    position: relative;
}
.merit-tittle p{
    font-size: 4.0rem;
    color:#ffffff;
	font-weight: 500;
}
.merit-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #00acc5 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
/*吹き出し部分*/
.merit-tittle-box {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.merit-tittle-box:before, .merit-tittle-box:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100px;
  height: 2px;
  border: 0;
  border-top: 2px dashed white;
}
.merit-tittle-box:before {
  left:-20%;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  padding-left: 2.0rem;
}
.merit-tittle-box:after {
  right: -20%;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
/*吹き出し部分ここまで*/


.merit-wrapper{
    padding: 12.0rem 1.5rem 16.8rem 1.5rem;
}
.merit-wrapper h2{
    font-size: 4.5rem;
    text-shadow: 4px 4px 0 #ffffff;
    font-weight: bold;
}
.merit-wrapper p{
    font-size: 2.2rem;
    margin: 5.3rem 0 7.6rem 0;
    line-height: 1.7;
}
.merit-area img:nth-of-type(-n+3){
    margin-bottom: 8.5rem;
}
.btn-box.merit-btn {
    margin-top: 7rem;
}
/**/
/**/
/**/
/*merit<!--MRここまで-->*/
/**/
/**/
/**/





/**/
/**/
/**/
/*gallery<!--GL+注釈-->*/
/**/
/**/
/**/
#gallery{
    background: url("../img/gallery-bg.jpg")no-repeat center center / cover;
    text-align: center;
}
.gallery-tittle{
    background: #00acc5;
    padding: 5.0rem 0 5.0rem 0;
    position: relative;
}
.gallery-tittle h1{
    font-size: 4.0rem;
    color:#ffffff;
	font-weight: 500;
}
.gallery-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #00acc5 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
/*吹き出し部分*/
.gallery-tittle-box {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.gallery-tittle-box:before, .gallery-tittle-box:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100px;
  height: 2px;
  border: 0;
  border-top: 2px dashed white;
}
.gallery-tittle-box:before {
  left:-20%;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  padding-left: 2.0rem;
}
.gallery-tittle-box:after {
  right: -20%;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
/*吹き出し部分ここまで*/

.gallery-wrapper{
    padding: 10.8rem 1.5rem 4.1rem 1.5rem;
    max-width: 1040px;
    margin: 0 auto;
}
.gallery-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gallery-box{
	display: flex;
	flex-direction: column;
   box-sizing: border-box;
   margin: 0;
   padding: 4.8rem 0;
   
}

.gallery-box p{
    font-weight: bold;
    line-height: 1.3;
    font-size: 1.8rem;
	margin-top: auto;
}
.gallery-box img{
    margin-bottom: 2.2rem;
}
.gallery-box .yen1{
    font-size: 3.5rem;
    margin: 0.5rem 0;
}
.gallery-box .buy{
    font-size: 1.5rem;
    max-width: 216px;
    margin: 0 auto;
    background-color: #00acc5;
    padding: 0.3rem 2.8rem 1.0rem 2.8rem;
    color:#ffffff;
    clip-path: polygon(20% 70%, 50% 100%, 80% 70%);
	height: 60px;
	margin-top: auto;
}
.gallery-box .yen2{
    font-size: 5.0rem;
    color: #00acc5;
}
.gallery-wrapper h2{
    font-size: 3.0rem;
    font-weight: bold;
    letter-spacing: -0.04em;
    background-color: #ffff00;
    padding: 0.5rem 0;
    margin-top: 2.0rem;
}

.gallery-btn{
    margin: 4.5rem 0 5.0rem 0;
    position: relative;
}
.gallery-btn img{
    max-width: 50%;
}
.gallery-icon{
    position: absolute;
    top:0;
    right:6%;
}



/**/
/**/
/**/
/*gallery<!--GL注釈ここまで-->*/
/**/
/**/
/**/






/**/
/**/
/**/
/*voice<!--VO-->*/
/**/
/**/
/**/
#voice{
    background: url("../img/voice-bg.jpg")no-repeat center center / cover;
    text-align: center;
}
.voice-tittle{
    background: #00acc5;
    padding: 4.0rem 0;
    position: relative;
}
.voice-tittle p{
    font-size: 4.0rem;
    color: #ffffff;
    letter-spacing: 0.1em;
	font-weight: 500;
}
.voice-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #00acc5 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
/*吹き出し部分*/
.voice-tittle-box {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.voice-tittle-box:before, .voice-tittle-box:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100px;
  height: 2px;
  border: 0;
  border-top: 2px dashed white;
}
.voice-tittle-box:before {
  left:-20%;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  padding-left: 2.0rem;
}
.voice-tittle-box:after {
  right: -20%;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
/*吹き出し部分ここまで*/


.voice-wrapper{
    padding: 0 1.5rem 13.8rem 1.5rem;
}
.voice-sbtittle{
    margin: 8.7rem 0 7.9rem 0;
}
.voice-area{
    display: flex;
    background-color: #ffffff;
    max-width: 1057px;
    margin: 0 auto;
    padding: 4.3rem 3.1rem;
    border-radius: 2.2rem;
}
.voice-area:nth-of-type(-n+3){
    margin-bottom: 3.6rem;
}
.voice-area img{
    align-self: center;
}
.voice-box{
    font-size: 1.8rem;
    margin-left: 7.4rem;
    width: 740px;
}
.voice-text{
    text-align: left;
    line-height: 2.1;
    margin-bottom: 3.6rem;
	margin-top: 20px;
}
.voice-name{
    text-align: right;
}
/**/
/**/
/**/
/*voice<!--VO-01~VO-03ここまで-->*/
/**/
/**/
/**/





/**/
/**/
/**/
/*Q&A<!--QA-->*/
/**/
/**/
/**/
#qa{
    text-align: center;
}
.qa-wrapper{
    padding: 10.8rem 1.5rem 12.3rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.qa-tittle{
    display: flex;
    justify-content: space-between;
    border-top:3px solid #00acc5;
    border-bottom:3px solid #00acc5;
    background-color: #ffffff;
    padding: 2.9rem 1.0rem 2.9rem 2.1rem 
}
.qa-tittle p{
    align-self: center;
    
}
.qa-tittle-left{
    display: flex;
}
.qa-tittle-left p{
    font-size: 4.0rem;
    color:#00acc5;
    margin-left: 1.2rem;
    font-weight: bold;
}
.qa-tittle-left img{
    align-self: center;
}
.qa-tittle-right{
    align-self: center;
    font-size: 2.4rem;
    font-weight: bold;
}
.qa-text{
    font-size: 2.4rem;
    color:#00acc5;
    margin: 6.7rem 0 7.2rem 0;
	font-weight: bold;
}
.qa-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10.4rem;
}

.qa-box{
    background-color:#e3f6f9;
    max-width: 473px;
    padding: 3.2rem 2.3rem;
    position: relative;
}

.qa-box:nth-of-type(-n+4){
    margin-bottom: 4.0rem;
}
.qa-box:before{
	background: repeating-linear-gradient(-45deg, #ffffff, #ffffff 7px, rgba(2, 153, 165, 0.3) 0, rgba(2, 153, 165, 0.3) 10px); /* ストライプの色 */
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.qa-box h2{
    font-size: 2.4rem;
    color:#00acc5;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
    position: relative;
    margin-left: 2.6rem;
}
.qa-box h2:before{
    position: absolute;
    content: "";
    width: 1.2rem;
    height: 6.0rem;
    left: -25px;
    top: 5px;
    background-color: #00acc5;
    
}
.qa-box p{
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: left;
    margin-top: 2.5rem;
    border-top: 2px dashed#00acc5;
    padding-top: 3.0rem;
}
.qa-min-btn{
	background-color: #00acc5;
	font-size: 1.8rem;
    color: #ffffff;
    padding: 0.7rem 3rem;
    border-radius: 7px;
	display: inline-block;
	margin-top: 1.5rem;
	 position: relative;

}
.qa-min-btn:after{
	 content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 0;
  right: 11px;
  bottom: 0;
  margin: auto;
}
.qa-min-btn:hover{
	background-color: #1dcfdd;
	transition: 0.5s;
}
.qa-mintittne-01{
	padding-bottom: 3.5rem;
}
.qa-box h2.qa-mintittne-01:before{
	height: 3.0rem;
}
/**/
/**/
/**/
/*Q&A<!--QAここまで-->*/
/**/
/**/
/**/





/**/
/**/
/**/
/*closing<!--CL-->*/
/**/
/**/
/**/
#closing{
    text-align: center;
}
.closing-tittle{
    background: #00acc5;
    padding: 4.0rem 0;
    position: relative;
}

.closing-tittle::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 35px 0 35px;
    border-color: #00acc5 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
.closing-tittle p{
    color: #ffffff;
    font-size: 4.0rem;
	font-weight: 500;
}
.closing-tittle-sb{
    margin-top: 3.6rem;
    border-top: 4px solid #ffff00;
    border-bottom: 4px solid #ffff00;
    display: inline-block;
    padding: 1.7rem 0;
}
.closing-tittle-sb p{
    font-size: 3.0rem;
    color:#ffffff;
    letter-spacing: 0.1em;
}
.closing-tittle-sb span{
    color:#ffff00;
}
.closing-wrapper{
    background-color: #e3f6f9;
}
.closing-area{
    padding: 5.3rem 1.5rem 0 1.5rem;
    
}
.closing-box01, .closing-box02{
    display: flex;
    justify-content: center;
}
.closing-box01{
    margin-bottom: 2.2rem;
}
.tel-box{
    display: flex;
}
.tel-box img{
    align-self: center;
}
.tel-box .tel{
    font-size: 6.9rem;
    color:#f45165;
    font-family: 'HelveticaWorld-Bold';
    margin-bottom: 1.8rem;
    margin-right: 5.3rem;
}
.closing-box01 .time{
    font-size: 1.8rem;
    text-align: left;
}

.closing-box02-in {
    display: flex;
}
.closing-box02-in img{
    align-self: center;
}
.closing-item02{
    margin: 0 0.5rem 0 4.9rem;
}
table.closing-item02 {
    height: 240px;
}
th.closing-timetext {
    font-size: 2.0rem;
	padding-right: 17px;
	font-weight: 500;
    
}
td {
    font-size: 2.0rem;
	text-align: left;
}
.closing-timetext, .closing-daytext, .closing-addresstext{
    position: relative;
    margin-left: 2.0rem;
}
.closing-timetext:before{
    position: absolute;
    content: "";
    width: 0.5rem;
    height: 1.7rem;
    left: -15px;
    top: 4px;
    background-color: #00acc5;
}

.closingtext:nth-of-type(-n+2){
    margin-bottom: 4.5rem;
}
.closingtext p{
    text-align: left;
    font-size: 2.0rem;
    margin-bottom: 0.8rem;
	margin-right: 2rem;
}
.closing-logo{
    background: #00acc5;
    padding: 4.0rem 0 1rem 0;
    position: relative;
}
.closing-logo h1{
    font-size: 7.2rem;
    margin-bottom: 4.0rem;
	color: #ffffff;
}
.closing-logo span{
    font-size: 8.3rem; 
}
.closing-logo p{
    font-size: 2.5rem;
    color:#ffffff;
}
.closingtext {
    display: flex;
}
small {
    color: #ffffff;
}
/**/
/**/
/**/
/*closing<!--CLここまで-->*/
/**/
/**/
/**/




/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width:640px) and (max-width:959px) {
    .br-tb{
    display: block;
}
    .br-pc{
        display: none;
    }
/*information*/
    .information-tittle h1::before {
    left: -2%;
}
    .information-tittle h1::after {
    right: -2%;
}
    .information-wrapper {
    padding: 6rem 1.5rem 8rem 1.5rem;
}
    .information-top {
    left: 25%;
}
/*merit*/
    .merit-tittle-box::before {
    left: -2%;
}
    .merit-tittle-box::after {
    right: -2%;
}
    .merit-wrapper {
    padding: 10rem 1.5rem 8rem 1.5rem;
}
    .merit-wrapper p {
    margin: 3rem 0 4rem 0;
}
.merit-area {
    margin-bottom: 7rem;
}
/*gallery*/
    .gallery-tittle-box::before {
    left: -2%;
}
    .gallery-tittle-box::after {
    right: -2%;
}
    .gallery-wrapper {
    padding: 5rem 1.5rem 4.1rem 1.5rem;
}
    .gallery-box {
    padding: 4.8rem 1rem;
    
}
    .gallery-icon {
    right: 0;
}

/*voice*/
    .voice-tittle-box::before {
    left: -2%;
}
    .voice-tittle-box::after {
    right: -2%;
}
    .voice-sbtittle {
    margin: 8.7rem 2.0rem 7.9rem 2.0rem;
}
    img.voice-sbtittle {
    max-width: 90%;
}

/*closing*/
    .closing-box01, .closing-box02 {
    display: block;
}
    .tel-box {
    justify-content: center;
}
    .closing-box01 .time {
    text-align: center;
}
    .closing-box02 {
    margin-left: 0px;
}
    .tel-box .tel {
    margin-bottom: 0rem;
    margin-right: 5.3rem;
}
    p.time {
    margin-bottom: 2rem;
}
    iframe {
    margin-bottom: 3.5rem;
}


/*qa*/
    .qa-box {
    max-width: 380px;
}
    .qa-area {
    margin-bottom: 5rem;
}
    .qa-wrapper {
    padding: 5rem 1.5rem 5rem 1.5rem;
}
    .qa-text {
    margin: 3rem 0 4rem 0;
}
}



