@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mali:ital@1&display=swap');

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,var,b,i,dl,dt,dd,ol,ul,li,fieldset,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}


/*================================================
 *  一般・共通設定
 ================================================*/
 html {
  scroll-padding-top: 200px; /* 固定ヘッダの高さ分 */
 }
body{
  font-family: 'Zen Maru Gothic', 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	-webkit-text-size-adjust:100%;
  color: #333;
  background: #FFF;
}
#contents,
.wrap {
	max-width: 980px;
	margin: 0 auto;
}
:root {
  --color-black:#333;
  --color-blue:#8bcecb;
  --color-skyblue:#e2f3f2;

}
a{
	color:var(--color-blue);
	text-decoration: none;
}
a:hover, .active{
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
p {
  margin-bottom: 0.5rem;
}
strong {
  font-weight:  600;
}
small {
	font-size: smaller;
}
ul,ol,dl {
	margin: 0;
}
ul li {
	list-style: none;
}
li {
	margin-left: 0;
}

h2 {
  font-size:2.5rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}
h2 span {
  font-size: 1rem;
  line-height: 3;
}

h3 {
  font-size: 23px;
  line-height: 1.5;
}
h3 span {
  font-size: 14px;
}

@media screen and (max-width:768px){
	*, *:before, *:after {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
  }
	#contents {
		width: 100%;
		padding-left: 20px;
    padding-right: 20px;
  }
  h2 {
    font-size:1.5rem;
    margin-bottom: 30px;
  }
}
/* =======================================================
* メイン
* ======================================================= */
.main_visual {
  max-width: 100%;
  width: 100%;
  height: 100vh;
  background-image: url(../images/mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.noren {
  z-index: 15;
  position: relative;
}
.noren img {
  width: 100%;
}


@media screen and (max-width:768px) {
  .noren img {
    height: 40vh;
  }
}
/* =======================================================
* ヘッダーメニュー
* ======================================================= */
/* nav_left */
  #mainnav .nav_left {
    width: 30%;
  }
  #mainnav .nav_left h1 img {
    width: 60%;
  }
  #mainnav .nav_left .nav_left__catch {
    font-size: 11px;
    margin-bottom: 10px;
  }

  /* nav_right */
  #mainnav .nav_right {
    width: 70%;
  }
	#mainnav ul{
		text-align: right;
	}
	#mainnav li{
		display: inline-block;
    padding: 0 12px;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
  }
  #mainnav li span {
    font-family: 'Mali', cursive;
    font-style:italic;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
  }
  #mainnav a{
		color:#19a8b6;
		text-decoration: none;
	}
	#mainnav.changeNav{
		background:#fff;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.1);
    padding: 5px 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	}
	#mainnav.changeNav li{
		padding: 20px 10px;
  }
  #mainnav.changeNav li a {
    color: #19a8b6;
  }
  #mainnav li.sp {
    display: none;
  }
@media only screen and (min-width: 768px){
  a#menu{
		display:none;
	}
	.panel{
    display:block !important;
  }
  #mainnav{
    background-color: #ffffff;
		position:fixed;
		top: 0;
		width:100%;
    height: 10vh;
    z-index:100;
    padding: 20px 50px;
    box-sizing: border-box;
    height: auto;
  }
}
@media only screen and (max-width: 768px){
  a#menu{
  	display: inline-block;
  	position: relative;
  	width: 40px;
  	height: 40px;
  	margin: 20px 0 0 0;
	}
	#menuBtn{
  	display: block;
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	width: 25px;
  	height: 1px;
  	margin: -1px 0 0 -7px;
  	background: #19a8b6;
    transition: .2s;
    z-index: 999;
	}

	#menuBtn:before, #menuBtn:after{
  	display: block;
  	content: "";
  	position: absolute;
  	top: 50%;
  	left: 0;
  	width: 25px;
  	height: 1px;
  	background: #19a8b6;
  	transition: .3s;
	}
	#menuBtn:before{
  	margin-top: -7px;
	}
	#menuBtn:after{
  	margin-top: 5px;
	}
	a#menu .close{
  	background: transparent;
	}
	a#menu .close:before, a#menu .close:after{
  	margin-top: 0;
	}
	a#menu .close:before{
  	transform: rotate(-45deg);
  	-webkit-transform: rotate(-45deg);
	}
	a#menu .close:after{
  	transform: rotate(-135deg);
  	-webkit-transform: rotate(-135deg);
	}
	.panel{
		width: 100%;
		display: none;
		overflow: hidden;
		position: relative;
		left: 0;
		top: -100px;
		z-index: 100;
  }
	#mainnav{
    position: fixed;
    padding: 10px 0;
    z-index: 10;
    width: 100%;
  }
  #mainnav.changeNav {
    padding: 0;
  }
  /* nav_left */
  #mainnav .nav_left {
    width: 80%;
    text-align: left;
  }
  #mainnav .nav_left h1 img {
    width: 50%;
  }
  #mainnav .nav_left .nav_left__catch {
    font-size: 10px;
    margin-bottom: 5px;
  }
  /* nav_right */
  #mainnav .nav_right {
    width: 100%;
  }
	#mainnav ul{
		background: #fff;
		text-align: center;
    height: auto;
    padding: 60px 50px 100% 50px;
  }
  #mainnav li,
  #mainnav.changeNav li {
    display: block;
    padding: 13px 10px;
    border-bottom: 1px dotted #8bcecb;
  }
  #mainnav li.sp {
    display: block;
  }
  #mainnav li.sp img {
    width: 60%;
  }
}
/* =======================================================
* swiper
* ======================================================= */
.swiper {
  height: auto!important;
}


/* =======================================================
* section
* ======================================================= */
section  {
	padding-bottom: 9rem;
}
.section {
	padding-top: 5rem;
}
@media screen and (max-width:768px) {
	section {
		padding-bottom: 4rem;
	}
	.section {
		padding-top: 4rem;
  }
}
/* =======================================================
* intro
* ======================================================= */
#intro {
  padding-top: 200px;
}
#intro .intro_left {
  width: 60%;
}
#intro .intro_right {
  width: 20%;
  padding: 1%;
  box-sizing: border-box;
  line-height: 2.5;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#intro .intro_right::after {
  position: absolute;
  content: "";
  bottom: 30px;
  right: 5%;
  background: var(--color-skyblue);
  width: 50%;
  height: 65vh;
  z-index: -1;
}
#intro .intro_right .plus {
  margin-left: 10px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width:768px){
  #intro {
    padding-top: 100px;
  }
  #intro .intro_left {
    width: 85%;
  }
  #intro .intro_right {
    width: 100%;
    align-items: center;
    display: flex;
    padding-top: 20px;
    padding-left: 20px;
  }
  #intro .intro_right::after {
    bottom: 50px;
    width: 80%;
    height: 65vh;
  }
  .intro_right_text {
    height: 370px;
}
}
/* =======================================================
* point
* ======================================================= */
#point ul li {
  width: 28%;
}
#point .point_num {
  font-family: 'Mali';
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 30px;
}

#point .pointImg {
    width: 250px;
    height: 250px;
    margin: 0 auto 50px;
    border-radius: 50%;
    overflow: hidden;
}

#point img {
  width: 100%;
  object-fit: cover;
}
#point .point_ttl {
  color: #19a8b6;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}
#point .point_text {
  line-height: 1.7;
}
@media screen and (max-width:768px) {
  #point ul li {
    width: 100%;
  }
  #point ul li:not(:last-child) {
    margin-bottom: 50px;
  }
}

/* =======================================================
* voice
* ======================================================= */
.balloon5 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon5 .faceicon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon5 .faceicon img{
  width: 100%;
  height: auto;
  border: solid 3px var(--color-skyblue);
  border-radius: 50%;
}

.balloon5 .chatting {
  width: 100%;
}

.says {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: var(--color-skyblue);
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid var(--color-skyblue);
}

.says p {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
/* =======================================================
* price
* ======================================================= */
#price .price_box {
  width: 330px;
  background-color: var(--color-skyblue);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 10px;
}
#price h3 {
  margin-top: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
#price h3 span {
  font-weight: 400;
  font-size: 18px;
}
#price table {
  width: 80%;
  margin: 0 auto;
}

#price td, th {
	padding: 3px;
	height: auto;
  vertical-align: top;
  text-align: left;
  line-height: 1.7;
  padding-bottom: 10px;

}
#price td.ttl {
  width: 30%;
  font-weight: bold;
}
#price th.detail {
  width: 75%
}
#price .price_txt {
  font-size: 20px;
  font-weight: 500;
  color: #19a8b6;;
}
@media screen and (max-width:768px) {
  #price .price_box {
    width: 100%;
  }
  #price .price_box:not(:last-child) {
    margin-bottom: 50px;
  }
}
/* =======================================================
*info
* ======================================================= */
#info {
  position: relative;
}
#info .info_left, .info_right {
  width: 50%;
}
#info .info_right {
  position: absolute;
  top: 210px;
  right: 0;
  height: 500px;
}
#info .info_left {
  background-color: var(--color-skyblue);
  padding: 50px;
  box-sizing: border-box;
  min-height: 500px;

}
#info .info_left img {
  width: 180px;
}
#info .info_left p {
  line-height: 1.7;
}
#info .info_left .info_map_btn a {
  border: 1px solid var(--color-blue);
  display: block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
#info .info_right iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width:768px) {
  #info .info_left, .info_right {
    width: 100%;
  }
  #info .info_left {
    padding-left: 20px;
    padding-right: 20px;
  }
  #info .info_right {
    position: static;
    height: 300px;
  }
}
/* =======================================================
*contact
* ======================================================= */
#contact p {
  line-height: 1.7;

}
#contact p.contact_text {
  margin-bottom: 50px;
}
#contact .flex {
  max-width: 980px;
  margin: 0 auto;
}
#contact .telbox,.linebox {
  width:35%;
}
#contact .telbox {
  background-color: var(--color-skyblue);
  display: table;
}
#contact .linebox {
  background-color: #eef8f8;
  display: table;
}
#contact .telbox a ,.linebox a{
  height: 150px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  line-height: 2;
  color: #19a8b6;
}
#contact .tel_icon, .line_icon {
  font-size: 30px;
}
#contact .tel_num {
  font-size: 30px;
  font-weight: bold;
}
#contact .line_text {
  font-size: 18px;
  line-height: 3;
}
i.fa-solid.fa-arrow-up-right-from-square {
    padding-left: 5px;
}
@media screen and (max-width:768px) {
  #contact .telbox,.linebox {
    width: 100%;
  }
}


/* =======================================================
*homeBtn
* ======================================================= */
.homeBtn {
  text-align: center;
}
.homeBtn_inner {
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 50px;
  display: inline-block;
  background-color: #D9A746;
  color: #fff;
  border-radius: 25px;
  z-index:1;
}
.homeBtn_inner:hover {
  background-color: #fff;
  color: #D9A746;
  transition: 0.7s;
  border: 1px solid #D9A746;
}


/* =======================================================
*footer
* ======================================================= */
footer {
  width: 100%;
  text-align: left;
  background-color: #eef8f8;
}
#fnav {
  width: 100%;
  text-align: center;
  color: #7d7571;
  box-sizing: border-box;
}
#fnav .wrap {
  padding-top: 50px;
  padding-bottom: 50px;
}

#fnav .footer_logo {
  max-width: 200px;
  width: 200px;
}
#fnav .footer_list {
  padding: 20px 10px;
}
#fnav .footer_list a {
  color: var(--color-black);
}

#fnav .copyright {
  background-color: #19a8b6;
  color: #fff!important;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width:768px) {
  #fnav .flex {
    flex-direction: column;
  }
  .footer_nav {
    padding-left: 20px;
    padding-right: 20px;
  }
  #fnav .footer_logo {
    margin: 0 auto;
  }
  #fnav .footer_logo img {
    max-width: 150px;
    width: 150px;
  }
  #fnav .footer_list {
    width: 100%;
    box-sizing: border-box;
  }
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
#pagetop {
    position: fixed;
    right: 15px;
    bottom: 10px;
    cursor: pointer;
    overflow: visible!important;
    z-index:100;  
    display:none;
}

#pagetop::before {
  content: '\f0d8';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 2rem;
  color: #fbc309;;
}
