/*** The new CSS reset - version 1.5.1 (last updated 1.3.2022) ***/
 *:where(:not(iframe,canvas,img,svg,video):not(svg *,symbol *)){all:unset;display:revert}*,*::before,*::after{box-sizing:border-box}a,button{cursor:revert}ol,ul,menu{list-style:none}img{max-width:100%}table{border-collapse:collapse}textarea{white-space:revert}meter{-webkit-appearance:revert;appearance:revert}::placeholder{color:unset}:where([hidden]){display:none}:where([contenteditable]){-moz-user-modify:read-write;-webkit-user-modify:read-write;overflow-wrap:break-word;-webkit-line-break:after-white-space}:where([draggable="true"]){-webkit-user-drag:element}

 body, input, textarea {
    font-family:  "ヒラギノ角ゴ ProN W3", "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "YuGothic","Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  }

  html{
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-behavior: smooth;
    }

 #wrap{
     width: 100vw;
     margin: 0 auto;
 }

 .fadein {
  opacity : 0;
  transform : translate(0, 100px);
  transition : all 1s;
}
 
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}

/* ナビゲーション */
.gnavi {
    height: 80px;
    background-color: #000000;
    display: flex;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .gnavi .logo{
    width: 120px;
    height: auto;
    margin-left: 10%;
    margin-top: 10px;
  }

  .gnavi__inner {
    width: 50%;
    height: 100%;
    margin: 0 auto;
    /* border: #f00 1px solid; */
  }
  .gnavi ul {
    height: 100%;
    display: flex;
  }
  .gnavi li {
    flex: 1 1;
    position: relative;
    display: flex;
  }
  .gnavi li::after {
    content: "";
    display: block;
    width: 2px;
    height: 20px;
    background-color: #fff;
    position: absolute;
    right: -1px;
    top: calc((100% - 20px)/2);
  }
  .gnavi li:last-child::after {
    content: none;
  }
  .gnavi a {
    display: flex;
    flex: 1 1;
    justify-content: center;
    padding: 0 5px;
    color: #fff;
  }

  .gnavi span {
    display: flex;
    align-items: center;
    word-break: keep-all;
  }

/* ナビゲーションここまで */

.spnavi{
  display: none;
}

#main{
  background-image: url("../img/main_cover.jpg");
  background-size:cover;
  height: 500px;
  padding: 5% 20%;
  color: #fff;
  line-height:1.2em;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  width: 100vw;
}

h1{
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 30px;
}

#main span{
  color: rgb(255, 123, 0);
  font-style: italic;
  font-weight: bold;
  font-size: 1.2em;
}

/* スライド */
#vegas {
  width: 100vw;
  height: 500px;
}


#jigyo{
  margin: 0 auto;
  margin-top: 50px;
}


#jigyo .title{
  width: 1000px;
  text-align: center;
  font-size: 1.2em;
	border-top: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	border-bottom: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	margin: 0 auto 20px; /* 外側の余白 上下・左右 */
	padding: 10px; /* 内側の余白 */
	position: relative;
	z-index: 0;
}

#jigyo .title:before {
	border-top: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	border-bottom: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	content: '';
	display: block;
	position: absolute;
	top: -8px;
	bottom: -8px;
	left: -1px;
	right: -1px;
	z-index: -1;
}

#jigyo .title h2{
  font-weight: bold;
  font-size: 1.5em;
}

#jigyo .contents{
  display: flex;
  margin: 0 auto;
  width: 1000px;
  padding: 30px 0;
}

#jigyo .contents .text{
  width: 50%;
  padding-top: 50px;
}

#jigyo .contents .text h3{
  font-weight: 900;
  font-size: 1.5em;
  border-bottom: 1px dotted #707070;
}

#jigyo .contents .text p{
  padding-top: 30px;
}

#jigyo .contents .image{
  width: 50%;
  padding-left: 20px;
}

 
#jigyo .border {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  border: 1px dotted #707070 ;
}


#concept{
  margin: 100px auto;
}

#concept .title{
  width: 1000px;
  text-align: center;
  font-size: 1.2em;
	border-top: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	border-bottom: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	margin: 0 auto 20px; /* 外側の余白 上下・左右 */
	padding: 10px; /* 内側の余白 */
	position: relative;
	z-index: 0;
}

#concept .title:before {
	border-top: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	border-bottom: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	content: '';
	display: block;
	position: absolute;
	top: -8px;
	bottom: -8px;
	left: -1px;
	right: -1px;
	z-index: -1;
}

#concept .title h2{
  font-weight: bold;
  font-size: 1.5em;
}

#concept .contents{
  display: flex;
  margin: 0 auto;
  width: 1000px;
  padding-top: 50px;
}

#concept .contents .text{
  width: 50%;
}

#concept .contents .text h3{
  font-weight: 900;
  font-size: 1.5em;
  border-bottom: 1px dotted #707070;
}

#concept .contents .text p{
}

#concept .contents .image{
  width: 50%;
  padding-right: 20px;
}

 
#concept .border {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  border: 1px dotted #707070 ;
}

/* サービス */

#service{
  padding: 50px 0;
  background-image: url("../img/bg1.jpg");
  background-size:cover;
}

#service .title{
  width: 1000px;
  text-align: center;
  font-size: 1.2em;
	border-top: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	border-bottom: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	margin: 0 auto 20px; /* 外側の余白 上下・左右 */
	padding: 10px; /* 内側の余白 */
	position: relative;
	z-index: 0;
}

#service .title:before {
	border-top: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	border-bottom: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	content: '';
	display: block;
	position: absolute;
	top: -8px;
	bottom: -8px;
	left: -1px;
	right: -1px;
	z-index: -1;
}

#service .title h2{
  font-weight: bold;
  font-size: 1.5em;
}

#service .contents{
  display: block;
  margin: 0 auto;
  width: 1000px;
  padding-top: 50px;
}

#service .contents .image{
  width: 100%;
  padding-top: 30px;
}

#service .contents .text{
  width: 100%;
  padding-top: 50px;
  text-align: center;
  text-shadow:
  3px 3px 0 #fff,
  -3px 3px 0 #fff,
  -3px -3px 0 #fff,
  3px -3px 0 #fff;
}

#service .contents .text span{
  color: rgb(255, 94, 0);
  font-weight: bold;
  font-size: 1.2em;
}

#service .contents .text span.emo{
  font-size: 1.5em;
}

#service .contents .text span.big{
  font-size: 1.5em;
  color: #000;
}



#service .border {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  border: 1px dotted #707070 ;
}

.pricetitle{
  text-align: center;
  font-weight: bold;
  font-size: 1.7em;
  padding-top: 50px;
}

#price{
  width: 1300px;
  margin: 20px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


#price .menu{
  display: inline-block;
  width: 23%;
  padding: 20px;
  margin: 0 10px;
  vertical-align: top;
}

#price .menu h3{
  font-weight: bold;
  text-align: center;
  font-size: 1.7em;
}

#price .menu .offer{
  font-weight: bold;
  font-size: 1.1em;
  padding: 20px 0;
}

#price .menu .text{
  padding-bottom: 20px;
  line-height: 20px;
}


#price .menu .info{
  width: 100%;
  height: 50px;
  margin: 0 auto;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  text-align: center;
}

#price .menu .info:hover{
  opacity: 0.7;
  transition: 0.1s;
}

#price .menu .info p{
  padding-top: 10px;
}

#overview .title{
  background-image: url("../img/overview.jpg");
  background-size:cover;
  height: 300px;
  padding: 5% 20%;
}

#overview h3{
  text-align: center;
  font-size: 1.7em;
  font-weight: bold;
  text-shadow:
  -3px 3px 0 #fff,
  -3px 3px 0 #fff,
  -3px -3px 0 #fff,
  3px -3px 0 #fff;
}

#overview .h32{
  text-align: center;
  font-size: 1.2em;
  padding-top: -10px;
}


#overview .title .info{
  width: 50%;
  height: 40px;
  margin: 10px auto;
  font-weight: bold;
  background-color: #008deb;
  color: #fff;
  text-align: center;
}

#overview .info:hover{
  opacity: 0.7;
  transition: 0.1s;
}

#overview .info p{
  padding-top: 8px;
}

#overview  p.date{
  text-align: center;
}

#overview  .contents{
  width: 1200px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

#overview  .contents .logo{
  margin: 0 auto;
  width: 50%;
  padding-top: 40px;
}

#overview  .contents .info{
  font-weight: bold;
  line-height: 20px;
  margin: 0 auto;
  width: 50%;
}

footer{
  margin-top: 100px;
  text-align: center;
}

footer .link{
  background-color: #000;
  padding: 20px 0;
  margin-bottom: 20px;
}

footer ul {
  height: 100%;
  width: 500px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
footer li {
  display: flex;
  color: #fff;
}


h1.privacy{
  background-image: url("../img/privacy.jpg");
  background-size:cover;
  height: 300px;
  padding: 8% 0 0 20%;
  font-size: 1.4em;
}

#privacy{
  width: 90vw;
  margin: 0 auto;
  padding: 5% 0 0 15%;
  overflow-wrap: normal;
}

#privacy h2{
  padding: 20px 0;
  font-weight: bold;
  font-size: 1.2em;
}


h1.contact{
  background-image: url("../img/contact.jpg");
  background-size:cover;
  height: 200px;
  padding: 5% 0 0 20%;
  font-size: 1.4em;
}

/* フォーム */
form {
  margin-top: clamp(0px, 37 / 375 * 100vw, 74px);
  background: #fff;
  width: 80vw;
  margin-inline: auto;
  padding-top: clamp(0px, 19 / 375 * 100vw, 38px);
  padding-right: clamp(0px, 12 / 375 * 100vw, 24px);
  padding-left: clamp(0px, 20 / 375 * 100vw, 40px);
  font-size: clamp(0px, 12 / 375 * 100vw, 24px);
  padding-bottom: clamp(0px, 42.5 / 375 * 100vw, 85px);
}

.formTable {
  width: 100%;
  margin-inline: auto;
}



.form-row {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: clamp(0px, 11 / 375 * 100vw, 22px);
  margin-top: clamp(0px, 33 / 375 * 100vw, 66px);
  width: 100%;
}

.form-row:first-child {
  margin-top: 0;
}

label {
    text-align: center;
    font-weight: 700;
    line-height: 155.023%;
    letter-spacing: 0.05em;
}

.input,
textarea,
select {
  font-size: clamp(0px, 12 / 375 * 100vw, 24px);
  border-radius: clamp(0px , 5 / 375 * 100vw, 10px);
  border: 1px solid #A4A4A4;
  background: #F5F5F5;
  height: clamp(0px , 47 / 375 * 100vw, 95px);
  padding-left: clamp(0px, 13 / 375 * 100vw, 26px);
}



textarea {
  width: 100%;
  height: clamp(0px , 180 / 375 * 100vw, 360px);
  padding-top: clamp(0px, 13 / 375 * 100vw, 26px);
  letter-spacing: 1.2px;
}

input::placeholder,
textarea::placeholder {
  font-size: clamp(0px, 12 / 375 * 100vw, 24px);
  letter-spacing: 1.2px;
  color: #A1A1A1;
}

.note {
  font-size: clamp(0px, 9 / 375 * 100vw, 18px);
  color: #A1A1A1;
}

#prefecture {
  color: #A1A1A1;
}

.required {
  font-size: clamp(0px, 9 / 375 * 100vw, 18px);
  display: inline-block;
  color: #fff;
  background: #CD2F2F;
  width: clamp(0px , 28 / 375 * 100vw, 56px);
  height: clamp(0px , 19.305 / 375 * 100vw, 38.61px);
  line-height: clamp(0px , 19.305 / 375 * 100vw, 38.61px);
  border-radius: clamp(0px, 3.5 / 375 * 100vw, 7px);
  font-weight: 700;
  margin-left: clamp(0px, 8 / 375 * 100vw, 16px);
}

.required--textarea {
  margin-left: clamp(0px, 121 / 375 * 100vw, 242px);
}


.full-size {
  width: clamp(0px , 303 / 375 * 100vw, 606px);
}

.half-size {
  width: clamp(0px , 137.5 / 375 * 100vw, 275px);
}

.radio-buttons {
  display: flex;
  gap: clamp(0px , 7 / 375 * 100vw, 13px);
  width: 100%;
  font-weight: 700;
}

.radio-button {
  border-radius: clamp(0px, 5 / 375 * 100vw, 10px);
  border: 1px solid #A4A4A4;
  background: #fff;
  line-height: clamp(0px, 56 / 375 * 100vw, 112px);
  text-align: center;
  width: 100%;
  height: 100%;
  padding-left: clamp(0px, 10 / 375 * 100vw, 20px);
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.radio-button:hover {
  background: #F5F5F5;
}

.radio-button.checked {
  background: #F5F5F5;
}

/* ラジオボタンをカスタマイズするための基本スタイル */
.radio-button {
  position: relative;
}

/* デフォルトのラジオボタンを視覚的に隠すが、アクセシビリティを維持 */
.radio {
  all: unset;
  /* opacity: 0; */
  position: absolute;
  width: clamp(0px, 15 / 375 * 100vw, 30px);
  height: clamp(0px, 15 / 375 * 100vw, 30px);
  cursor: pointer;
  left: clamp(0px, 11 / 375 * 100vw, 22px);
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

/* カスタム外側の円のスタイル */
.radio::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #a1a1a1;
  position: absolute;
  top: 0;
  left: 0;
}

/* カスタム内側の丸のスタイル */
.radio:checked::after {
  content: '';
  display: block;
  width: clamp(0px , 9 / 375 * 100vw, 18px);
  height: clamp(0px , 9 / 375 * 100vw, 18px);
  background-color: #818181;
  border-radius: 50%;
  position: absolute;
  top: clamp(0px, 3 / 375 * 100vw, 6px);
  left: clamp(0px, 3 / 375 * 100vw, 6px);
}

.radio-button--tour {
  width: clamp(0px , 138.5 / 375 * 100vw, 277px);
}

.radio-button--stay {
  width: clamp(0px, 159 / 375 * 100vw, 318px);
}


.postal-code-inputs {
  display: flex;
  gap: clamp(0px, 5.5 / 375 * 100vw, 11px);
}


.search-address-button {
  all: unset;
  width: clamp(0px , 160 / 375 * 100vw, 320px);
  height: clamp(0px , 47 / 375 * 100vw, 94px);
  border-radius: clamp(0px , 5 / 375 * 100vw, 10px);
  background: #486d48;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.search-address-button:hover {
  opacity: 0.8;
}

.date-inputs {
  display: flex;
}

.date-inputs--birthday {
  gap: clamp(0px, 13.5 / 375 * 100vw, 27px);
}

.date-input--year {
  display: flex;
  align-items: flex-end;
}

.date-input--year select {
  width: clamp(0px , 81.5 / 375 * 100vw, 163px);
}

.date-input {
  display: flex;
  align-items: flex-end;
}

.date-input select {
  width: clamp(0px , 65 / 375 * 100vw, 130px);
}

.date-input .input {
  width: clamp(0px , 65 / 375 * 100vw, 130px);
}

.date-inputs span {
  display: inline-block;
  margin-left: clamp(0px, 4 / 375 * 100vw, 6px);
  margin-bottom: 10px;
}

/* こちらのサイトをどちらで知りましたか？ */

.select-wrapper {
  position: relative;
}

select {
  appearance: none;
}

.select-wrapper::before {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: clamp(0px, 6.5 / 375 * 100vw, 13px);
  background: #A1A1A1;
  right: clamp(0px, 10 / 375 * 100vw, 30px);
  top: 50%;
  transform: rotate(-40deg) translateY(-50%);
  pointer-events: none;
}

.select-wrapper::after {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: clamp(0px, 6.5 / 375 * 100vw, 13px);
  background: #A1A1A1;
  right: clamp(0px, 10.5 / 375 * 100vw, 30.5px);
  top: 50%;
  transform: rotate(40deg) translateY(-50%);
  pointer-events: none;
}

.how-to-know {
  margin-top: clamp(0px, 24 / 375 * 100vw, 48px);
}

#howToKnow {
  color: #A1A1A1;
}

/* 見学の希望日 */

.form-row--date-inputs--tour {
  row-gap: clamp(0px, 5 / 375 * 100vw, 10px);
}

.date-inputs--tour:first-of-type {
  margin-top: clamp(0px, 5 / 375 * 100vw, 10px);
}

.date-inputs--tour .date-input:not(:last-child) {
  margin-right: clamp(0px, 8 / 375 * 100vw, 12px);
}

.date-inputs--tour__text {
  font-weight: 700;
  margin-right: clamp(0px, 8 / 375 * 100vw, 20px);
  margin-top: 6%;
}

.date-input input[type="date"] {
  width: clamp(0px, 165 / 375 * 100vw, 300px);
  padding-right: 0.2rem;
}

/* 確認ボタン */
.submit-button {
  display: block;
  margin-top: clamp(0px, 19 / 375 * 100vw, 38px);
  width: clamp(0px, 217.5 / 375 * 100vw, 435px);
  height: clamp(0px, 58.5 / 375 * 100vw, 117px);
  letter-spacing: clamp(0px, 4.32 / 375 * 100vw, 8.64px);
  font-size: clamp(0px, 16 / 375 * 100vw, 32px);
  background-color: #000;
  color: #fff;
  text-align: center;
}

/* 個人情報保護方針 */
.privacy-policy {
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
  align-items: center;
}

.privacy-policy label {
  font-weight: 700;
  font-size: clamp(0px,10 / 375 * 100vw, 18px);
  letter-spacing: 0.9px;
}

.privacy-policy__link {
  font-weight: 400;
  text-decoration: underline;
  color: #0C30EF;
}


.error-message {
  color: #CD2F2F;
  font-size: clamp(0px, 12 / 375 * 100vw, 20px);
}

/* 以下SP */

@media (max-width: 500px){
body{
    width: 100vw;
    margin: 0 auto;
}

/* ナビゲーション */
.gnavi {
  display: none;
}

.spnavi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #000;
  position: fixed;
  width: 100vw;
  z-index: 1000;
  height: 60px;
}

.spnavi .logo{
  width: 100px;
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: white;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 900;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  width: 100vw;
  height: 100%;
  background-color: black;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
.drawer__nav__link {
  display: block;
  color: white;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}



#main{
background-image: url("../img/main_cover_sp.jpg");
background-size:cover;
height: 600px;
padding: 150px 0 100px 25px;
color: #fff;
line-height:1.2em;
text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
width: 100vw;
}

h1{
font-size: 2em;
font-weight: bold;
padding-bottom: 30px;
}

#main span{
color: rgb(255, 123, 0);
font-style: italic;
font-weight: bold;
font-size: 1.2em;
}

/* スライド */
#vegas {
width: 100vw;
height: 350px;
z-index: -1;
}

#jigyo{
  margin: 0 auto;
  margin-top: 50px;
  width: 95vw;
  padding-right: 17px;
}


#jigyo .title{
  width: 100%;
  text-align: center;
  font-size: 1.2em;
	border-top: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	border-bottom: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	margin: 0 auto 20px; /* 外側の余白 上下・左右 */
	padding: 10px; /* 内側の余白 */
	position: relative;
	z-index: 0;
}

#jigyo .title:before {
	border-top: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	border-bottom: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	content: '';
	display: block;
	position: absolute;
	top: -8px;
	bottom: -8px;
	left: -1px;
	right: -1px;
	z-index: -1;
}

#jigyo .title h2{
  font-weight: bold;
  font-size: 1.5em;
}

#jigyo .contents{
  display: block;
  margin: 0 auto;
  width: 95%;
  padding: 10px 0;
}

#jigyo .contents .text{
  width: 95%;
  padding-top: 5px;
}

#jigyo .contents .text h3{
  font-weight: 900;
  font-size: 1.5em;
  border-bottom: 1px dotted #707070;
}

#jigyo .contents .text p{
  padding-top: 10px;
}

#jigyo .contents .image{
  width: 100%;
  padding-left: 0;
  padding-top: 10px;
}

 
#jigyo .border {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  border: 1px dotted #707070 ;
}


#concept{
  margin: 50px auto;
  width: 95vw;
  padding-right: 17px;
}

#concept .title{
  width: 100%;
  text-align: center;
  font-size: 1.2em;
	border-top: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	border-bottom: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	margin: 0 auto 5px; /* 外側の余白 上下・左右 */
	padding: 10px; /* 内側の余白 */
	position: relative;
	z-index: 0;
}

#concept .title:before {
	border-top: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	border-bottom: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	content: '';
	display: block;
	position: absolute;
	top: -8px;
	bottom: -8px;
	left: -1px;
	right: -1px;
	z-index: -1;
}

#concept .title h2{
  font-weight: bold;
  font-size: 1.5em;
}

#concept .contents{
  display: block;
  margin: 0 auto;
  width: 100%;
  padding-top: 50px;
}

#concept .contents .text{
  width: 100%;
  padding-top: 20px;
}

#concept .contents .text h3{
  font-weight: 900;
  font-size: 1.5em;
  border-bottom: 1px dotted #707070;
}


#concept .contents .image{
  width: 100%;
  padding-right: 0;
}

 
#concept .border {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  border: 1px dotted #707070 ;
}

/* サービス */

#service{
  padding: 50px 0;
  background-image: url("../img/bg1.jpg");
  background-size:cover;
  width: 100vw;
  margin: 0 auto;
}

#service .title{
  width: 95%;
  text-align: center;
  font-size: 1.2em;
	border-top: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	border-bottom: 1px solid #000;	/* 内側の線の太さ・種類・色 */
	margin: 0 auto; /* 外側の余白 上下・左右 */
	padding: 10px; /* 内側の余白 */
	position: relative;
	z-index: 0;
  margin-right: 15px;
}

#service .title:before {
	border-top: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	border-bottom: 2px solid #000;	/* 外側の線の太さ・種類・色 */
	content: '';
	display: block;
	position: absolute;
	top: -8px;
	bottom: -8px;
	left: -1px;
	right: -1px;
	z-index: -1;
}

#service .title h2{
  font-weight: bold;
  font-size: 1.5em;
}

#service .contents{
  display: block;
  margin: 0 auto;
  width: 95%;
  padding-top: 50px;
  padding-right: 10px;
}

#service .contents .image{
  width: 100%;
  padding-top: 30px;
}

#service .contents .text{
  width: 100%;
  padding-top: 50px;
  text-align: center;
  text-shadow:
  3px 3px 0 #fff,
  -3px 3px 0 #fff,
  -3px -3px 0 #fff,
  3px -3px 0 #fff;
}

#service .contents .text span{
  color: rgb(255, 94, 0);
  font-weight: bold;
  font-size: 1.2em;
}

#service .contents .text span.emo{
  font-size: 1.5em;
}

#service .contents .text span.big{
  font-size: 1.5em;
  color: #000;
}



#service .border {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  border: 1px dotted #707070 ;
}

.pricetitle{
  text-align: center;
  font-weight: bold;
  font-size: 1.7em;
  padding-top: 50px;
}

#price{
  width: 100%;
  margin: 20px auto;
  display: block;
  flex-direction: row;
  justify-content: center;
}


#price .menu{
  display: block;
  width: 95%;
  padding: 20px;
  margin: 0 auto;
  padding-left: 15px;
}

#price .menu h3{
  font-weight: bold;
  text-align: center;
  font-size: 1.7em;
}

#price .menu .offer{
  font-weight: bold;
  font-size: 1.1em;
  padding: 20px 0;
}

#price .menu .text{
  padding-bottom: 20px;
  line-height: 20px;
}


#price .menu .info{
  width: 100%;
  height: 50px;
  margin: 0 auto;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  text-align: center;
}

#price .menu .info:hover{
  opacity: 0.7;
  transition: 0.1s;
}

#price .menu .info p{
  padding-top: 10px;
}

#overview .title{
  background-image: url("../img/overview.jpg");
  background-size:cover;
  height: 300px;
  padding: 5% 20%;
}

#overview h3{
  text-align: center;
  font-size: 1.7em;
  font-weight: bold;
  text-shadow:
  -3px 3px 0 #fff,
  -3px 3px 0 #fff,
  -3px -3px 0 #fff,
  3px -3px 0 #fff;
}

#overview .h32{
  text-align: center;
  font-size: 1.2em;
  padding-top: -10px;
}


#overview .title .info{
  width: 50%;
  height: 40px;
  margin: 10px auto;
  font-weight: bold;
  background-color: #008deb;
  color: #fff;
  text-align: center;
}

#overview .info:hover{
  opacity: 0.7;
  transition: 0.1s;
}

#overview .info p{
  padding-top: 8px;
}

#overview  p.date{
  text-align: center;
}

#overview  .contents{
  width: 95vw;
  display: block;
  justify-content: center;
  margin: 0 auto;
}

#overview  .contents .logo{
  margin: 0 auto;
  width: 70%;
  padding-top: 0;
}

#overview  .contents .info{
  font-weight: bold;
  line-height: 20px;
  margin: 0 auto;
  width: 95%;
}

footer{
  margin-top: 100px;
  text-align: center;
  width: 100vw;
}

footer .link{
  background-color: #000;
  padding: 20px 0;
  margin-bottom: 20px;
}

footer ul {
  height: 100%;
  width: 90%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
footer li {
  font-size: 0.7em;
  display: flex;
  color: #fff;
}

h1.privacy{
  background-image: url("../img/privacy.jpg");
  background-size:cover;
  width: 100vw;
  height: 300px;
  padding: 30% 0 0 15%;
  font-size: 1.4em;
}

#privacy{
  display: block;
  width: 90vw;
  margin: 0 auto;
  padding: 5% 0 0 0%;
  overflow-wrap: normal;
}

#privacy h2{
  padding: 20px 0;
  font-weight: bold;
  font-size: 1.2em;
}



form {
  margin-top: clamp(0px, 37 / 375 * 100vw, 74px);
  background: #fff;
  width: 100vw;
  margin-inline: auto;
  padding-top: clamp(0px, 19 / 375 * 100vw, 38px);
  padding-right: clamp(0px, 12 / 375 * 100vw, 24px);
  padding-left: clamp(0px, 20 / 375 * 100vw, 40px);
  font-size: clamp(0px, 12 / 375 * 100vw, 24px);
  padding-bottom: clamp(0px, 42.5 / 375 * 100vw, 85px);
  overflow-wrap: break-word;
}

/* 個人情報保護方針 */
.privacy-policy {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

h1.contact{
  background-image: url("../img/contact.jpg");
  background-size:cover;
  height: 300px;
  padding: 40% 0 0 10%;
  font-size: 1.4em;
  width: 100vw;
}

  }