@charset "utf-8";
/*----------------------------
このCSSファイルに、スタイル指定を記述していきます。
----------------------------*/

/* 全体のスタイル調整 */
* {
  box-sizing: border-box;
}

/* bodyの初期スタイル調整 */
body {
  font-size: 18px;
  line-height: 1.5;
  font-family: 'Noto Sans JP','ヒラギノ 角ゴ','Poppins',sans-serif,'Open Sans';
  font-weight: 400;
  color: #333;
  background-color: #fff;
     margin: 0;
}

#container {
	width: 100%;	/*コンテナー幅*/
	background-color:#fff;
  box-shadow:rgba(113, 135, 164, 0.65098) 0px 0px 6px 3px;
-webkit-box-shadow:rgba(113, 135, 164, 0.65098) 0px 0px 6px 3px;
-moz-box-shadow:rgba(113, 135, 164, 0.65098) 0px 0px 6px 3px;
      margin: 0 auto;
	 }
@media screen and (min-width:768px) {
  #container {
	width: 900px;	/*コンテナー幅*/
    margin: 0 auto;
}
}

.header,.main,.footer,img,.section {
    width: 100%;
}


/* 初期スタイル調整 */
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: left;
    margin: 5px;
}

@media screen and (min-width:768px) {
  h1,
h2,
h3 {

  text-align: center;
}
  }

h3 {
  color: #000000;
  font-size: 14px;
  margin: 20px;
    text-align: left;
}
    h4{
        margin: 10px;
        padding-top: 10px;
    }

p {
  margin-top: 0;
  margin-bottom: 1.5em;
  text-align: justify;
    padding: 10px;
    font-size: 1.1rem;
}

figure {
	margin: 0 15px 15px 0;
	width: 100%;
}
figure img {
	max-width: 100%;
}

figure.left{
	margin: 0 15px 15px 0;
	width: 100%;
}
figure.left img {
	max-width: 100%;
}


@media (min-width:768px) {

  figure {
	float: right;
      width: 40%;
}

figure.left{
	float: left;
    width: 40%;

}


}


span.marker {
  background:linear-gradient(to bottom, rgba(255,204,204,0) 60%, #ffe666 60%);
    font-size: 1.9rem;
}
.red-bold{
    color: #ff3131;
    font-weight: 900;
    font-size: 1.3rem;
}
.big{
   font-size: 1.8rem; 
}
.big2{
   font-size: 1.9rem; 
}
.big3{
   font-size: 2.5rem; 
}
.strikethrough {
  text-decoration: line-through;
}
.bold{
    font-weight: 800;
    font-size: 1.4rem;
      background:linear-gradient(to bottom, rgba(255,204,204,0) 60%, #ffe666 60%);
}

.bold-b{
    font-weight: 800;
    font-size: 1.4rem;
    text-align: center;
    white-space: nowrap;
}



span.small{
    font-size: 1.2rem;
}
.nayami ul {
font-size: 20px;
  padding: 0.5em 1em 0.5em 5em;
  position: relative;
  list-style: url(../img/check.png);
　list-style-position: inside;
    
}

.nayami ul li {
  line-height: 1.5;
  padding: 0.5em 0;

}

.nayami ul li:before {
  font-family: FontAwesome;

/*  content: "\f00c";*/
  position: absolute;
  left : 1em; /*左端からのアイコンまで*/
  color: red; /*アイコン色*/
}

address {
  font-style: normal;
}

a {
  color: #666;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}

a:link {
  color: blue; 
  background-color: transparent;   
  text-decoration: none;
}

ul {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}

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

section {
  padding: 10px 0;
    
}

.subcopy{
    padding: 10px 0;  
}

/* 初期スタイル調整 ここまで */

/* 共通スタイル調整 ここから */

/*h2関連*/
.h2-title {
  position: relative;
  text-transform: uppercase;
  z-index: 100;
}

.h2-title::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: #a5d1ff;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  transform: rotate(45deg);
  z-index: -100;
}

/*テキスト関連*/
.txt-center {
  text-align: center;
}

.txt-lead {
  font-weight: 700;
}
.ttl-lead {
    text-align: left;
  font-weight: 700;
    
}
.txt-sub {
  font-weight: 300;
    font-size: 1.3rem;
    max-width: 768px;
}
@media screen and (min-width:768px) {
  .txt-sub {
  font-weight: 300;
    font-size: 1.1rem;
      max-width: 900px;
}
  }

/*ボタン関連*/
.btn {
  display: block;
  padding: 4px 2px;
    width: 40%;
  border-radius: 8px;
  margin: 0 auto;
  border: none;
}
@media screen and (min-width:768px) {
  .btn {
  display: block;
  padding: 20px 4px;
  border-radius: 8px;
  margin: 0 auto;
  border: none;
      font-size: 1.4rem;
       width: 30%;
      max-width: 350px;
}
  }
.btn:hover,
.btn:focus {
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
    .btn-reserve:hover,
.btn-reserve:focus {
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
    .btn-img{ 
	width: 80%;
     margin: 0 auto;
      border:none;
        background: #fff;
}
.line-img{ 
	max-width: 8%;
     margin: 0 auto;
    padding-top: 10px;
      border:none;
        background: #fff;
}
   
 .sec-btn{ 
	background: #fff;
     text-align: center;
}
   
    .btn-img:hover{ 
	opacity:0.5;
	transition:0.3s;
}

.btn-img-header{ 
	max-width: 40%;
    padding-top: 10px;
}
.btn-img-header:hover{ 
	opacity:0.5;
	transition:0.3s;
}

.btn-img-header-sp{ 
	width: 80%;
    padding-top: 10px;
}
.btn-img-header-sp:hover{ 
	opacity:0.5;
	transition:0.3s;
}

@media screen and (min-width:768px) {
  .btn-img{ 
	width: 80%;
     margin: 0 auto;
}
}
   
/*Web予約ボタン*/
.btn-reserve {
  color: #fff;
  background: #00B900;
    margin-top: 10px;
}

/*レイアウト関連*/
.inner {
  padding: 0 15px;
  margin: 0 auto;
}
.inner-l{
      padding: 0 15px;
  margin: 0 auto;
    text-align: left;
}

@media screen and (min-width:768px) {
  .inner {
    max-width: 1200px;
  }
}

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

@media screen and (min-width:768px) {
  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }
}

/* lineボタン */

.post-btn {
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 100px;
}
.post-btn:hover {
  
	opacity:0.5;
	transition:0.3s;


}


/* 共通スタイル調整 ここまで */

/* ヘッダーブロック ここから */
.header {
  position: fixed;
  top: 0px;
  width: 100%;

  background: rgba(255, 255, 255, 0.9);
  z-index: 200;
}
.header-logo-menu-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.header-logo-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  
    padding-bottom: 20px;

}
.logo-txt{
  padding-top: 20px;
  text-align: left;
    font-size: 1.0rem;
    height: 40px;
}
/*ロゴ*/
.logo-area {
  width: 0;
  margin: 0;
  text-align: left;
    padding: 5px;
}

@media screen and (min-width:768px) {
  .logo-area {
    width: 10%;
  }
  .logo-txt{
  padding-top: 30px;
      padding-left: 20px;
  text-align: left;
      font-size: 1.3rem;
}
    .header-logo-menu {
  justify-content: space-evenly;
}
}

/*ハンバーガーメニュー*/
.gnav-toggle {
  position: relative;
  margin-top: 12px;
    margin-left: 350px;
}


/*チェックボックス等は非表示に*/
.gnav-hidden {
  display: none;
}

/*アイコンのスペース*/
#gnav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: rl;
}

/*ハンバーガーの形をCSSで表現*/
#gnav-open span,
#gnav-open span::before,
#gnav-open span::after {
  content: '';
  position: absolute;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  cursor: pointer;
}

#gnav-open span::before {
  bottom: -8px;
}

#gnav-open span::after {
  bottom: -16px;
}

/*閉じる用の薄黒箇所*/
#gnav-close {
  display: none;
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*チェックがついたら表示させる*/
#gnav-input:checked ~ #gnav-close {
  display: block;
  opacity: 0.5;
}

#gnav-input:checked ~ #gnav-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

/*メニューの中身*/
#gnav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.3s ease-in-out;
  transform: translateX(-105%);
}

.gnav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  text-transform: uppercase;
}


.gnav-item {
  border-bottom: 2px dotted #eee;
  margin: 10px;
  padding-bottom: 20px;
}

.gnav-item a {
  color: #fff;
  font-size: 12px;
  display: block;
  width: 200px;
  text-align: center;
}

.gnav-item a::first-line {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width:768px) {
  .gnav-menu {
    flex-direction: row;
    padding-top: 15px;
    margin: 0;
  }

  .gnav-item {
    border-bottom: none;
    margin: 0;
    padding-bottom: 0;
  }

  .gnav-item a {
    color: #333;
    width: 120px;
  }

  .gnav-item a:hover {
    color: #85a7cc;
  }


}

ol.riyu-ol {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.5em;

}


ol li.riyu-li {
  position: relative;
  padding: 0.5em 0.5em 0.5em 50px;
  line-height: 1.5em;
    font-size: 1.4rem;
}
ol li.riyu-li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display:inline-block;
  background: #165E83;
  color: #fff;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 25px;
  border-radius: 50%;/*円にする*/
  left: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cp_list-img{
    width: 50%;
    margin: 0 25%;
}
ol.nom-ol {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.5em;
  border: solid 2px #5c9ee7;
}

.nom-ol img {
    float : right ; 
    width: 20%;
}
ol li.nom-li {
  position: relative;
  padding: 0.5em 0.5em 0.5em 35px;
  line-height: 1.5em;
    font-size: 1.4rem;
}
ol li.nom-li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display:inline-block;
  background: #FF0000;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;/*円にする*/
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
ol li.nom-li:after {/*吹き出しのちょこんと出た部分*/
  content: '';
  display: block;
  position: absolute;
  left: 20px;/*左からの位置*/
  height: 0;
  width: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #FF0000;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul {
  padding: 0.5em;
  list-style-type: none;
}
ul.cp_list li {
  position: relative;
  padding: 0.5em 1em 0.5em 2.3em;
  margin-bottom:5px;
  border-bottom: 1px solid rgba(22,94,131,1);
    font-size: 1.3rem;
}
ul.cp_list li:after,
ul.cp_list li:before{
  position: absolute;
  content:'';
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.cp_list li:before {
  left: 0;
  width: 17px;
  height: 17px;
  background: #2F72CB;
}
ul.cp_list li:after {
  top: 1em;
  left: 0.5em;
  width: 14px;
  height: 14px;
  background: rgba(22,94,131, 0.5);
}

.list-ttl{
    font-size: 1.6rem;
    font-weight: 600;
}




.box {
  display:flex;
  flex-direction: column;
  padding: 20px;
}
    
    .box-k {
  display:flex;
  flex-direction: down;
  padding: 20px;
}

.text {
  width: 100%;
  text-align: center;
    font-size: 1.3rem;
}
.text2 {
  width: 60%;
    font-size: 1.4rem;

}
.text3 {
  width: 100%;
    font-size: 1.4rem;

}
@media screen and (min-width:768px) {
  .text3 {
  width: 60%;
    font-size: 1.4rem;

}
  }

h3 {
  font-size: 21px;
  margin: 0;
}

.pict {
  width: 100%;
  text-align: center;
  min-height: 0%;
}

.pict img {
  max-width: 300px;
  height:auto;
}

.pict-why {
  width: 100%;
  text-align: center;
  min-height: 0%;
    margin-bottom: 40px;
}

.pict-why img {
  max-width: 700px;
  height:auto;
}
.box:nth-child(even) {
  background-color: #f1f1f1;
  padding: 20px;
}
    
    

@media (min-width:768px) {
  body {
    padding: 0px;
  }
  .box {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0px;
  }
  .box:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .text {
    text-align: left;
  }
  .box:nth-child(even) .text {
    text-align: right;
  }
  .pict {
    width: 70%;
  }
  .pict img {
    width: 100%;
    height:auto;
  }
  .box:nth-child(even) .pict {
    margin-left: 0;
    margin-right: 3%;
  }
}
    
    .box-k:nth-child(even) {
  background-color: #fff;
  padding: 20px;
}
    
    

@media (min-width:768px) {

  .box-k {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0px;
  }

}
    
.Qa-Box {
  width: 100%;
  margin: 0 auto;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 2px 0;
  padding: 2px;
}

.Qa-Box .Qa dt {
  background: #F5F5F5;
}

.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}

.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
}

.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  background: #fff;
  width: 2em;
  height: 2em;
}

.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #000;
  width: 2em;
  height: 2em;
}

.line{
    border-top:0.2px solid #e6e6fa;
    width: 85%;
    margin: 10px 0px;

}
@media screen and (min-width: 768px) {
  .Qa-Box {
    width: 95%;
  }
    .Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 10px 0;
  padding: 10px;
}
}
.box9 {
  display: flex;
  justify-content: center; /* 水平方向にセンターに配置 */
  align-items: center;
  margin:0 auto 5%;
}
.box9 img{
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius:50%;
}

.box10 img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius:50%;
}
@media screen and (min-width: 768px) {
  .box10 img{
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius:50%;
}
}

.box-koushi img{
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius:50%;
}
.design10 {
    margin: 0 auto;
 width: 80%;
 text-align: left;
 border-collapse: collapse;
 border-spacing: 0;
}
.design10 th {
 padding: 10px;
    border-top: solid 1px #778ca3;
 border-bottom: solid 1px #778ca3;
}
.design10 td {
    width: 80px;
 padding: 10px;
 border-bottom: solid 1px #778ca3;
}
@media screen and (min-width:768px) {
  .design10 td {
 padding: 10px;
 border-bottom: solid 1px #778ca3;
}
  }

/*-------------------------------------------
　メインビジュアル
-------------------------------------------*/
.mv-area {
    margin-top: 0px;
  width: 100vw;
  height: 55vh;
  background-image: url(../img/main-sp.png);
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
  @media screen and (max-width:640px) {
    .mv-area {
      height: 67vh;
    }
}


.mv-title {
  color: #fff;
/*  text-shadow: 0px 0px 3px #333;*/
    text-align: center;
    margin: 30px 0;
    background-color: #165E83;
    padding: 30px 0px;
    font-size: 1.8rem;
}
.mv-sub{
    font-size: 1.4rem;
}

@media screen and (min-width:768px) {
  .mv-area {
    width: 100%;
    height: 650px;
      background-image: url(../img/main.png);
  }

}

.ttl {
  margin-top: 0;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: center;
    margin: 5px;
    font-size: 1.5rem;
}
 .price{
    text-align: center;
    }
.price img{
       width: 50%; 
    }
.riyu{
    text-align: center;
    }
.riyu img{
       width: 60%; 
    }
@media screen and (min-width:768px) {
  .ttl {

  text-align: center;
    }
    .price img{
       width: 30%; 
    }
}

/*-------------------------------------------
料金について
-------------------------------------------*/  
section table.price{
  width: 80%;
  margin: 0 auto;
  border: 1px solid #ddd;
} 
section table.price tr{
  text-align: left;
}

section table.price tr span{
  color: red;
  font-weight: bold;
  font-size: 21px;
}

section table.price tr th{
  background: #eee;
  padding: 12px 24px;
   border-bottom: 1px solid #ddd;
}

section table.price tr td{
  border-bottom: 2px solid #eee;
  padding: 12px 24px;
}

section p.price_title{
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width:640px) {
  section table.price tr{
  display: block;
}

section table.price tr th,section table.price tr td{
  width: 100%;
  display: block;
}

}



/*-------------------------------------------
　
紹介
-------------------------------------------*/
.info-area {
  background-color: #0000;
}

.info-txt {
  color: #333;
}
.copy-txt {
  color: #333;
    font-size: 28px;
}


@media screen and (min-width:768px) {
  .info-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
.copy-txt {
    margin: 50px;
  }
  .info-txt {
    flex: 1;
    margin-left: 30px;
  }

  .info-area img {
    flex: 1
  }
}

/*-------------------------------------------
　サービスの案内
-------------------------------------------*/
.service-area {
  background-color: #fff;
}

.service-content {
  display: flex;

  flex-wrap: wrap;
}

.service-item {
  flex: 40%;
  text-align: center;
  padding: 20px 20px 0;
  margin: 5px;
/*
  border: 3px solid #527acc;
  border-radius: 10px;
*/
}

.service-item img {
margin: 0 25%;
  width: 100px;
}

@media screen and (min-width:768px) {
  .service-content {
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-item {
    flex: 1;
  }

}


/*-------------------------------------------
　プランの紹介
-------------------------------------------*/
.room-area {
  background-color: #fff;
}

.plan-content {
  display: flex;
  flex-direction: column;
}

.room-item {
  background-color: #fff;
  margin: 8px;
 width: 100%
     
}

.plan-item {
  background-color: #fff;
  margin-bottom: 30px;
  box-shadow: 1px 1px 3px #aaa;
}
.koushi-item {
  background-color: #fff;
  margin-bottom: 30px;
  box-shadow: 1px 1px 3px #aaa;
    max-width: 900px;
    
}
.plan-info {
  padding: 0 15px 15px;
}

.plan-title {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #527acc;
}
.koushi-title {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid yellow;
}
.koushi-list {
    font-size: 110%;
  text-align: left;
  padding: 8px;
    height: auto;
  margin-bottom: 12px;
    
    background-color: #222;
    vertical-align: middle;
}
    p.koushi-list  {
 color: #FFF
}
.koushi-list2 {
    background-color:yellow; 
  text-align: center;
  padding: 2px;
  border: 2px solid yellow;
    font-size: 90%;
    font-weight: 600;
}

.plan-price {
  text-align: center;
  padding: 10px;
  border: 2px solid #527acc;
}

.plan-list li::before {
  content: "";
  background: url(../img/list-marker.svg) no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 3px;
}

@media screen and (min-width:768px) {
  .plan-content {
    flex-direction: row;
      
  }

  .plan-item {
    flex: 1;
    margin-top: 0;
    margin-left: 15px;
    margin-right: 15px;
  }
    
    .koushi-item {
    flex: 1;
    margin-top: 0;
    margin-left: 10px;
    margin-right: 10px;
  }
}

/*-------------------------------------------
　アクセス
-------------------------------------------*/
.access-area {
  padding-bottom: 0;
}

.access-area img {
  display: block;
  max-width: 280px;
  max-height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin: 10px auto 20px;
}

.access-maparea {
  position: relative;
  padding-top: 100%;
}

.access-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gmap_iframe {
    aspect-ratio: 9 / 5;
    width: 100%;
    height: auto;
}
.map {
  text-align: center;
}

@media screen and (min-width:768px) {
  .access-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 150px;
  }

  .access-maparea {
    position: relative;
    padding-top: 30%;
  }
    .gmap_iframe {
    aspect-ratio: 16 / 5;
    width: 900px;
    height: auto;
}

}
/* mainタグ */
.contact_main {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width:768px) {
  .contact_main {
  max-width: 900px;
}
}
/* 見出し */
.contact_h1 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 1em;
  text-align: center;
}
/* formタグ：フォーム全体 */
.contact_form {
  margin: 40px;
}
/* ------------------------------------ */
/* フォーム共通書式 */
/* ------------------------------------ */

.form_label-text{
    font-size: 0.9rem;
}

.form_label{
    font-size: 1.1rem;
}
@media screen and (min-width:768px) {
  .contact_main {
  max-width: 900px;
}
}


/* labelタグ：項目のラベルと入力欄を囲うタグ */
.form_block {
  display: grid;
  grid-template-columns: 14em 2fr;
  border-top: 1px dotted #606060;
  padding: 1em;
  align-items: center;
  height: 8em;
}
.form_block1 {
  display: grid;
  grid-template-columns: 14em 2fr;
  border-top: 1px dotted #606060;
  padding: 1em;
  align-items: center;
  height: 30em;
}
.form_block2 {
  display: grid;
  grid-template-columns: 14em 2fr;
  border-top: 1px dotted #606060;
  padding: 1em;
  align-items: center;
  height: 15em;
}

@media(min-width: 768px){
    .form_block {
  grid-template-columns: 1fr;
}
.form_block1 {
  grid-template-columns: 1fr;
    height: 20em;
}
    .form_block2 {
  grid-template-columns: 1fr;
       height: 10em;
}
}
/* 必須アイコン */
.form-required {
  margin-left: 1em;
  color: #fff;
  background-color: #f67a7a;
  padding: 1px 3px;
  font-size: 0.9rem;
  border-radius: 3px;
}
/* 入力欄 */
.form_field {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1%;
}
.form_field-text {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1%;
}
.form_radio-wrapper {
 align-items: start;
}
/* ------------------------------------ */
/* ラジオボタン専用 */
/* ------------------------------------ */
.label_radio + .label_radio {
  margin-left: 2em;
   
}
.radio_span {
  margin-left: 1em;
}
/* ------------------------------------ */
/* checkbox専用 */
/* ------------------------------------ */
.label_checkbox + .checkbox {
  margin-left: 2em;
}
.checkbox_span {
  margin-left: 0.5em;
}

/* ------------------------------------ */
/* セレクト：プルダウン専用 */
/* ------------------------------------ */
.select_block {
  padding-left: 1em;
}
/* ------------------------------------ */
/* 段落入力 */
/* ------------------------------------ */
.form_block.--textfield {
  align-items: start;
  border-bottom: 1px dotted #606060;
  height: auto;
    width: 100%;
}
.form_block1.--textfield {
  align-items: start;
  border-bottom: 1px dotted #606060;
  height: 100em;
    width: 100%;
}
.form_block2.--textfield {
  align-items: start;
  border-bottom: 1px dotted #606060;
  height: 30em;
    width: 100%;
}

@media screen and (min-width:768px) {
  .form_block.--textfield {
  max-width: 900;
}
.form_block1.--textfield {
  max-width: 900;
    
}
    .form_block2.--textfield {
  max-width: 900;
}

}
/* ------------------------------------ */
/* 送信ボタン */
/* ------------------------------------ */
.form-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8em;
  height: 3em;
  font-size: 2rem;
  background-color:#B20A1B;
  border-radius: 50px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
}

@media screen and (min-width:768px) {
  .form-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12em;
  height: 3em;
  font-size: 2rem;
  background-color:#B20A1B;
  border-radius: 50px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
}
}
.last-btn{
	margin: 0 auto;
	margin-top: 5%;
	width: 95%;
}
.last-btn:hover{
	position: relative;
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
	top: 3px;
	left: 3px;
}
.subtn{
    width: 100%;
    height: auto;
    animation: scale 1.2s infinite;
}

/*
@keyframes scale {
    0% {
    transform: scale(1);
}
    50% {
    transform: scale(0.95);
}
    100% {
    transform: scale(1);
}
}
*/


a.img-link:hover {
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
    
}


/* ------------------------------------ */
/* 個人情報保護 */
/* ------------------------------------ */
.privacy{
  text-align: center;
  font-size: 1.4rem;
  margin-top: 1em;
}

/* ------------------------------------ */
/* 送信後のサンクスページ専用 */
/* ------------------------------------ */
.section-thanks{
  padding: 100px 40px;
}
.thanks_h1{
  font-size: 2.8rem;
  text-align: center;
}
.thanks_a{
  background-color:#6695ED;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
  width: 12em;
  height: 3em;
}
/*-------------------------------------------
　ページトップ
-------------------------------------------*/
.pagetop {
  text-align: right;
  padding: 15px;
  background-color: #f0f0f0;
}

.pagetop a::after {
  content: "";
  background: url(../img/list-marker.svg) no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 3px 10px;
  transform: rotate(-90deg);
}

/*-------------------------------------------
　フッター
-------------------------------------------*/
.foot-area {
  color: #fff;
  text-align: center;
  padding: 40px;
  background-color: #333;
}

.foot-logo {
  margin: 0 auto 20px;
}

.text-phone,
.text-phone a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.foot-area_copy {
  color: #ccc;
  font-size: 14px;
  display: inline-block;
  width: 100%;
  padding: 10px;
  background-color: #333;
}

@media screen and (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
