@charset "utf-8";
/* CSS Document */
/*〇〇〇〇〇〇〇〇〇共通設定〇〇〇〇〇〇〇〇〇〇*/
* {
  margin: 0 auto;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background: #F0F0F0;
  color: #666666;
  width: 100%;
  height: inherit;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}
img, input, select, textarea {
  vertical-align: middle;
}
header, #footer {
  background: #566573;
  margin: 0 auto;
}
/*container*/
.container {
  max-width: 980px;
  margin: 0 auto 150px;
  padding-left: 20px;
  padding-right: 20px;
}
/*テキストサイズ・色設定
--------------------------------------------------------------------------------------------------------*/
html {
  font-size: 1rem;
  font-family: 'Noto+Sans+JP';
  line-height: 200%;
  /*background: #F0F0F0;
	color: #666666;*/
}
h1 {
  font-size: 3em;
}
.JPsectionTitle {
  font-size: 1.7em;
  font-weight: bold;
  text-align: center;
  line-height: 200%;
  color: #666666;
  margin: 150px auto;
}
.ENsectionTitle {
  font-family: 'Dancing Script';
  font-weight: bold;
  color: #008080;
  margin: 150px auto;
  text-align: center;
  font-size: 2.2em;
}

h3 {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin: 30px 0;
  line-height: 200%;
}

h4, .service-text {
  font-size: 1.0em;
  line-height: 200%;
}

p {
  font-size: 1.0em;
  line-height: 200%;
}
.text-container {
  width: 90%;
  margin: 150px auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 769px) {
	.JPsectionTitle, .ENsectionTitle {
    font-size: 2.5em;
  }
	
  .text-container {
    width: 70%;
    margin: 150px auto;
    padding-left: 20px;
    padding-right: 20px;
  }
	h3 {
  font-size: 1.6em;
}
}
/*※マークの色付け*/
.text-red {
  color: #DA1725;
}

/*スクロールして流れるテキストの動き設定
----------------------------------------------------*/
/*左右共通*/
.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/*左から右に流れるアニメーション
---------------------------------------------------------------------*/
.leftAnime{
    opacity: 0;
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); 
        opacity: 0;
  }

  to {
	transform: translateX(0);
    opacity: 1;
  }
}


/*左から右に流れるアニメーション
---------------------------------------------------------------------*/
.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX-100 {
	
  from {
	transform: translateX(100%);
    opacity: 0;
  }

  to {
	transform: translateX(0);
    opacity: 1;
  }
}

/*ふわっと表示するコンテンツのアニメーションスタートの遅延時間を設定
------------------------------------------------------------------------------------------------*/
.imgbox{
	opacity: 0;
}
.delay-time02{
animation-delay: 0.2s;
}
.delay-time04{
animation-delay: 0.4s;
}

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* Loading背景画面の設定
------------------------------------------------------------------------------------------------*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #566573;
  text-align: center;
  color: #f0f0f0;
}
/* Loading画像を中央に配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Loadingアイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}
/* アイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*あしらいのボーダー
----------------------------------------------------------------------------------------------*/
hr {
  border: none;
  padding: 20px 0;
  border-top: 3px solid #008080;
  width: 10%;
  text-align: center;
  margin: 200px auto;
}

/*ピンクのリンクボタン
----------------------------------------------------------------------------------------------*/
.linkBtn {
  margin: 150px auto;
}
.linkBtn a {
  text-decoration: none;
  background: #FFC0CB;
  color: #666666;
  border-radius: 20px;
  padding: 20px;
  margin: 100px auto;
  display: block;
  width: 80%;
  font-size: 1.0em;
  text-align: center;
}
.linkBtn a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 769px) {
  .linkBtn a {
    max-width: 980px;
    width: 40%;
  }
}
/*画像＋テキストのグリッド設定
----------------------------------------------------------------------------------------------*/
.col {
  padding: 10px;
}
.pc-grid-col2, .pc-grid-col3 {
  display: block;
  width: 90%;
}
.pc-grid-col2 img, .pc-grid-col3 img {
  width: 100%;
  height: auto;
	object-fit:cover;
}
@media screen and (min-width: 769px) {
  /*汎用2カラム,3カラム指定*/
  .pc-grid-col2, .pc-grid-col3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 980px;
  }
  .pc-grid-col2 img, .pc-grid-col3 img {
    width: 100%;
    height: 170px;
  }
  /*2カラムの列幅*/
  .pc-grid-col2 .col {
    width: 50%;
  }
  /*3カラムの列幅*/
  .pc-grid-col3 .col {
    width: 33%;
  }
}

/*serviceページの画像＋テキストの２カラム
-----------------------------------------------------------------------------------------*/
.serviceAbout{
	display: block;
	margin: 100px auto;
	
}
.serviceAbout img{
	width: 90%;
}
.right{
		text-align: center;
	}


@media screen and (min-width: 769px) {
	.serviceAbout{
	display: flex;
    max-width: 980px;
}
	.left{
		margin: 50px auto  50px 20px;
	}
	.serviceAbout img{
	width: 100%;
		object-fit: cover;
}
	.right{
		width: 100%;
		padding: 30px;
	}
}

/*headerのロゴ
-----------------------------------------------------------------------------------------*/

.headerLogo {
  padding: 20px;
}
@media screen and (min-width: 769px) {
  .headerLogo {
    max-width: 980px;
  }
  .headerLogo img {
    width: 100%;
  }
}
/*〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇header領域のコンテンツ設定〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇〇*/
/*ハンバーガーメニュー・ドロワメニュー対応のgnav
-----------------------------------------------------------------------------------------*/
a {
  text-decoration: none;
  font-family: 'Noto+Sans+JP';
  color: #f0f0f0;
  font-size: 20px;
  letter-spacing: 0.1em;
}
#g-nav {
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
#g-nav-list {
  width: 100%;
}
#g-nav ul {
  display: flex;
}
#g-nav li {
  width: 25%;
}
#g-nav a {
  display: block;
  padding: 15px 0;
  color: #F0F0F0;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Noto+Sans+JP';
  font-style: bold;
}
#g-nav a:hover {
  color: #FFC0CB;
}
@media screen and (max-width: 768px) {
  /*下記にSPの設定を記述*/
  #g-nav {
    position: fixed;
    z-index: -1;
    opacity: 0; 
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    height: 100vh; 
    background: #566573;
    color: #f0f0f0;
    /*動き*/
    transition: all 0.3s;
  }
  
  #g-nav.panelactive {
    opacity: 1;
    z-index: 999;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; 
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    display: none;
   
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  #g-nav.panelactive ul {
    display: block;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #f0f0f0;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  #g-nav li a:hover {
    color: #FFC0CB;
  }
  /*ボタン_ハンバーガーメニュー・ドロワメニュー対応のgnav
------------------------------------------------------------------------------------*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    color: #f0f0f0;
    background-color: #FFC0CB;
    border-radius: 10px;
  }
  /*クリックしたら×に変化する*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    color: #666;
    background-color: #f0f0f0;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/*======================================================*/
/*.gnav {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.gnav ul {
  display: flex;
  width: 100%;
}
.gnav li {
  width: 25%;
}
.gnav a {
  display: block;
  padding: 15px 0;
  color: #F0F0F0;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Noto+Sans+JP';
  font-style: bold;
}
.gnav a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .gnav {
    display: none;
  }
}*/
/*〇〇〇〇〇〇〇〇〇footer領域のコンテンツ設定〇〇〇〇〇〇〇〇〇〇*/
.footer-logo {
  margin: 0 auto;
  width: 20%;
  padding-top: 50px;
}
.footer-container {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}
/*footerナビゲーション
------------------------------------------------------------------------*/
nav.footergnav {
  margin: 100px auto;
  width: 90%;
}
nav.footergnav ul {
  display: flex;
  width: 100%;
}
nav.footergnav li {
  width: 30%;
  padding: 20px;
}
nav.footergnav a {
  padding: 20px 0;
  color: #F0F0F0;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-family: 'Noto+Sans+JP';
  font-style: bold;
}
nav.footergnav a:hover {
  color: #FFC0CB;
}
@media screen and (max-width: 768px) {
  .footergnav {
    margin: 100px auto;
    width: 50%
  }
  .footergnav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footergnav li {
    width: 25%;
  }
}
/*pagetopへスクロールするボタン
--------------------------------------------------------------------*/
.pagetop {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 70px;
}
.pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  padding-top: 10px;
  box-sizing: border-box;
  color: #f0f0f0;
  background: #FFC0CB;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
.pagetop a:hover {
  background: #FFC0CB;
  color: #F0F0F0;
  opacity: 0.7;
}
.pagetop a:visited {
  color: none;
}
.pagetop a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 1px solid #F0F0F0;
  border-right: 1px solid #F0F0F0;
  transform: rotate(-45deg);
}
/*SNSアイコン設定
-------------------------------------------------------------------------------*/
.sns {
  margin-bottom: 15px;
  text-align: center;
}
.sns li {
  display: inline-block;
}
.sns a {
  display: block;
  padding: 10px 20px;
  background: #F0F0F0;
  color: #666666;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
}
.sns a:hover {
  opacity: 0.7;
}
/*copyright
----------------------*/
.copyright {
  text-align: center;
  color: #f0f0f0;
  margin: 50px auto 0 auto;
  padding: 20px;
}
/*〇〇〇〇〇〇〇〇〇Homeのみで使用する設定〇〇〇〇〇〇〇〇〇〇*/
/*スライドショーの設定
---------------------------------------------------------------------------*/
.slider { 
  width: 100%;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
.slider img {
  width: 90vw; 
  height: 70vw;
}
.slider .slick-slide {
  transform: scale(0.8); 
  transition: all .5s; 
  opacity: 0.5; 
}
.slider .slick-slide.slick-center {
  transform: scale(1); 
  opacity: 1; 
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, .slick-next {
  position: absolute; 
  top: 42%;
  cursor: pointer; 
  outline: none; 
  border-top: 2px solid #666; 
  border-right: 2px solid #666; 
  height: 15px;
  width: 15px;
}
.slick-prev { /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 40px 0 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 20px; 
  height: 20px; 
  display: block;
  border-radius: 50%;
  background: #f0f0f0; 
}
.slick-dots .slick-active button {
  background: #666; 
}
@media screen and (min-width: 769px) {
  .slider {
    max-width: 980px;
  }
  .slider img {
    width: 100%;
	  height: 700px;
  }
}
/*〇〇〇〇〇〇〇〇〇下層ページ使用する設定〇〇〇〇〇〇〇〇〇〇*/
/*下層ページのTop画像に文字を重ねる
------------------------------------------------------------------------------*/
.kasaneru {
  position: relative;
  text-align: center;
  height: auto;
  width: 100%;
}
.kasaneru p {
  position: absolute;
  color: #F0F0F0;
  font-size: 1.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #008080; 
  padding: 20px; 
  border-radius: 10px;
}
.kasaneru img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  /*.kasaneru {
    max-width: 980px;
  }*/
  .kasaneru p {
    font-size: 1.8rem;
  }
  .kasaneru img {
    width: 100%;
  }
} /*pc END*/
/*〇〇〇〇〇〇〇〇〇contactページ使用する設定〇〇〇〇〇〇〇〇〇〇*/
.contact-img {
  width: 90%;
  height: auto;
  margin: 150px auto;
  object-fit: none;
}
.contact-img img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .contact-img {
    max-width: 980px;
  }
  .contact-img img {
    width: 100%;
  }
}
/*店舗情報テキストを中央に寄せる*/
.access-container {
  display: flex;
  flex-wrap: wrap;
  margin: 150px auto;
  padding-left: 10px;
  padding-right: 10px;
}
.access-container dt, .access-container dd {
  box-sizing: border-box;
}
.access-container dt {
  display: flex;
  align-items: center;
  width: 30%;
  /*padding: 20px;*/
  /*background-color: #AEDFBE;
  border-bottom: 1px solid #999;*/
}
/*.access-container dt:last-of-type,
.access-container dd:last-of-type {
  border: none;
}*/
.access-container dd {
  display: flex;
  align-items: center;
  width: 70%;
  margin-left: 0;
  /*padding: 20px;*/
  /* background-color: #fff;
  border-bottom: 1px solid #999;*/
}
/*.access-container {
	display: flex;
  
  max-width: 980px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.access-container dt{
  clear: left;
  float: left;
  width: 7em;
	display: flex;
	align-items: center;
  margin-bottom: 10px;
}
.access-container dd{
	clear: right;
  float: right;
	display: flex;
	align-items: center;
  margin-bottom: 10px;
  overflow: hidden;
}*/
@media screen and (min-width: 768px) {
  .access-container {
    justify-content: space-between;
    max-width: 980px;
    padding-left: 250px;
    padding-right: 150px;
  }
  .access-container dt {
    width: 30%;
  }
  .access-container dd {
    width: 70%;
  }
}
/*Google Map
-------------------------------------------------------------*/
.map {
  position: relative;
  padding-top: 50%;
}
.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/*contactフォームの設定
------------------------------------------------------------------------------*/
.contact-text {
  text-decoration: none;
  font-family: 'Noto+Sans+JP';
  color: #666;
  font-size: 1.0rem;
}

.box-white {
  padding: 60px;
  margin-bottom: 80px;
  background-color: #ffffff;
  border-radius: 10px;
}
.box-white.is-page404 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.text-red {
  color: #DA1725;
}

.btn-wrapper {
  margin-top: 30px;
  text-align: center;
}

.btn-submit {
  display: inline-block;
  min-width: 220px;
  padding: 10px;
  background-image: linear-gradient(to right, #FFC0CB 0%, #FFC0CB 50%, #f0f0f0 50%, #FFFFFF 100%);
  background-size: 200%;
  background-position-x: 0;
  border: 1px solid #333;
  border-radius: 5px;
  color: #f0f0f0;
  text-align: center;
  transition: 0.3s ease-in;
}
.btn-submit:hover {
  background-position-x: 100%;
  color: #333;
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.form-wrapper .about-text {
  margin-bottom: 60px;
  font-size: 1rem;
  color: #666;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .form-wrapper .about-text {
    font-size: 0.8rem;
  }
}
.form-wrapper .about-text a:not(a[href^="tel:"]) {
  text-decoration: underline;
}

.form-box {
  width: 100%;
}
.form-box dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.form-box dt, .form-box dd {
  padding-bottom: 30px;
}
.form-box dt {
  font-weight: 400;
  text-align: left;
}
.form-box dt.message {
  padding-top: 10px;
  vertical-align: top;
}
.form-box dd {
  width: 65%;
}

.required {
  display: inline-block;
}
.required::after {
  content: "※";
  display: inline-block;
  padding-left: 1em;
  color: #DA1725;
}

/*Q＆A部分の設定
------------------------------------------------------------------------------*/

/* ====================================
  PC幅
==================================== */
/*@media screen and (min-width: 768px) {
  .accordion-area {
    display: none !important;
  }
}*/

/* ====================================
  スマホ幅
==================================== */
/*@media screen and (max-width: 767px) {
  .accordion-area {
    display: none !important;
  }
}*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 980px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #666;
}

/*アコーディオンタイトル*/
.title {
    position: relative;
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #666;
/*color:#f0f0f0;*/
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
     display: none;
    background: #666;
	color: #f0f0f0;
	margin:0 3% 3% 3%;
    padding: 3%;
}