@charset "utf-8";

/*==============================================
共通スタイル
================================================*/

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  width: 100%;
}

.sp {
  display: none;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
}

.section-title {
  font-size: 3.2rem;
  font-family: 'Noto Serif JP', serif;
  color: #444;
  text-align: center;
  padding: 1.7em 0;
}

.section-title_sub {
  display: block;
  font-size: 2rem;
  font-family: 'Crimson Text', serif;
  color: #08529f;
  padding-top: 1.2em;
}

@media screen and (min-width:1025px) {
  .sp {
    display: none;
  }

}

@media screen and (max-width:1024px) {
  .pconly {
    display: none;
  }

  .sp {
    display: none;
  }

  .container {
    width: 90%;
    margin: 0 auto;
  }

  #nav-toggle {
    display: none;
  }

  .section-title {
    font-size: 2.9rem;
    padding: 1em 0;
  }

  .section-title_sub {
    display: block;
    font-size: 1.8rem;
    padding-top: 1em;
  }

}

@media screen and (max-width:599px) {

  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 890;
    background-color: #fff;
    width: 100vw;
    background-color: #fff;
    overflow: hidden;
  }

  .pc {
    display: none;
  }

  .pconly {
    display: none;
  }

  .container {
    width: 98%;
    margin: 0 auto;
  }

  #nav-toggle {
    display: block;
  }

}

/*==============================================
ヘッダー
================================================*/
header {
  border-bottom: solid 1px #ccc;
}

.header__container {
  max-width: 1920px;
  height: 140px;
  margin: 0 auto;
  padding: 25px 30px 25px 30px;
  position: relative;
  box-sizing: border-box;
}

@media screen and (max-width:599px) {

  header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    width: 100vw;
    transition: all ease .3s;
  }



  .header__container {
    width: 100%;
    height: 65px;
    padding: 0;
    position: relative;
  }
}

.header__inner-top {
  display: flex;
  justify-content: space-between;
}

.header__logo{
  width: 30%;
  max-width: 350px;
  min-width: 280px;
  height: auto;
}

.header__logo img {
  width: 100%;
  height: auto;
  display: block;
  
}

@media screen and (max-width:599px) {
  .header__logo img {
    height: 43px;
    width: auto;
    padding: 0;
    margin-top: 12px;
    margin-left: 7px;
  }
}

.flexbox {
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%
}

.header__tel-wrapper {
  display: block;
  padding-top: 10px;
  margin-right: 31px;
}

@media screen and (max-width:1024px) {
  .header__tel-wrapper {
    display: none;
  }
}

.header__tel {
  position: relative;
  font-size: 31px;
  font-weight: 300;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  display: block;
  color: #323232;
  text-align: left;
  line-height: 1;
  letter-spacing: 1px;
}

.header__tel::before {
  content: url(../img/icon-tel-pc.svg);
  position: absolute;
  top: 12px;
  left: -42px;
  width: 28px;
  height: auto;
  color: #323232;
}

.header__hours {
  font-size: 12px;
  font-weight: 400;
  color: #323232;
  text-align: left;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1;
  letter-spacing: 1px;
  margin-top: 10px;
}

a.header__btn-wrapper {
  position: relative;
  padding: 24px 24px 28px 90px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1;
  letter-spacing: 1px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #08529f;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #08529f;
  border-radius: 0;
  -webkit-transition: all .5s ease .1s;
  transition: all .3s ease .1s;
}

a.header__btn-wrapper:hover {
  color: #08529f;
  background-color: #fff;
  font-weight: 600;
}

span.header__btn-circle {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 17px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  height: 33px;
  color: #08529f;
  background-color: #fff;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  vertical-align: middle;
  padding-left: 2px;
  -webkit-transition: all .5s ease .1s;
  transition: all .3s ease .1s;
}

span.header__btn-circle:last-child {
  left: 42px;
}

a.header__btn-wrapper:hover span.header__btn-circle {
  color: #fff;
  background-color: #08529f;
}


/*==============================================
メインビジュアル　SP
================================================*/
.mainvisual-sp{
  display: none;
}
@media screen and (max-width:599px) {
  .mainvisual-sp {
    display: block;
    padding-top: 65px;
    background-color: #000;
  }

  .mainvisual-pc {
    display: none;
  }
}

/*==============================================
問合せフォーム　PC
================================================*/

h2.explanation {
  width: 980px;
  margin: auto;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: justify;
  padding-bottom: 3rem;
}

.privacypolicy {
  width: 980px;
  height: 180px;
  overflow: auto;
  padding: 15px 15px 0;
  margin-bottom: 30px;
  margin: auto;
  border: solid 1px #ccc;
  margin-bottom: 4rem;
}

.privacypolicy p {
  font-size: 1.6rem;
}

.privacypolicy p:last-child {
  margin-bottom: 18px;
}

form {
  width: 980px;
  margin: auto;
  font-size: 1.6rem;
  padding-bottom: 8rem;
}

dl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  text-align: left;
}

dl+dl {
  border-top: solid 1px #ccc;
}

dl:first-child {
  border-top: solid 1px #ccc;
}

dl:last-child {
  border-bottom: solid 1px #ccc;
}

dt {
  vertical-align: middle;
  display: table-cell;
  min-width: 160px;
  width: 25%;
}

dt>span {
  display: inline-block;
  color: red;
  margin-left: 1rem;
}

dd {
  display: table-cell;
  width: 75%;
}

form input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  transition: 0.3s ease-in-out;
  line-height: 1.8;
  font-family: inherit;
  border-width: 0;
  border-radius: 5px;
  background-color: #e7eeee;
}

form select {
  padding: 10px 20px 10px 20px;
  cursor: pointer;
  text-overflow: ellipsis;
  position: relative;
  max-width: 100%;
  font-size: 1.6rem;
  font-family: inherit;
  min-height: 49px;
  min-width: 180px;
}

form select option {
  padding: 5px;
  border: none;
}

form select::after {
  content: "▼";
  font-size: 1rem;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
}

dd ul li {
  color: #AAAAAA;
  display: inline-block;
  position: relative;
  width: 25%;
  margin-top: -20px;
  padding-bottom: 10px;
}

dd ul li input[type=radio] {
  position: absolute;
  visibility: hidden;
}

dd ul li label {
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 1.35em;
  padding: 20px 25px 17px 50px;
  margin: 10px auto;
  height: 30px;
  z-index: 9;
  cursor: pointer;

}

dd ul li:hover label {
  color: #08529f;
}

dd ul li .check {
  display: block;
  position: absolute;
  border: 5px solid #AAAAAA;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  top: 30px;
  left: 15px;
  z-index: 5;
  transition: border .25s linear;
  -webkit-transition: border .25s linear;
  transform: translateY(5px);
}

dd ul li:hover .check {
  border: 5px solid #08529f;
}

dd ul li .check::before {
  display: block;
  position: absolute;
  content: '';
  border-radius: 100%;
  height: 8px;
  width: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
}

input[type=radio]:checked~.check {
  border: 5px solid #0b73e0;
}

input[type=radio]:checked~.check::before {
  background: #0b73e0;
}

input[type=radio]:checked~label {
  color: #0b73e0;
}

textarea {
  width: 100%;
  border-width: 0;
  border-radius: 5px;
  padding: 8px;
  background-color: #e7eeee;
}

.submit {
  text-align: center;
  padding-top: 3rem;
}

.submit input {
  display: inline-block;
  font-size: 1.8rem;
  width: 250px;
  margin: auto;
  cursor: pointer;
  background-color: #78a1bb;
  color: #fff;
}

.submit input:hover {
  background-color: #E8F0FE;
  color: #08529f;
  font-weight: 600;
}

input::placeholder{
  opacity: 0.5;
}

span.sp-only{
  display: none;
}



/*==============================================
問合せフォーム　TB
================================================*/
@media screen and (max-width:1024px) {

  h2.explanation {
    width: 90%;
  }

  .privacypolicy {
    width: 90%;
  }

  form{
    width: 90%;
  }

  form select {
    padding: 5px 20px 5px 10px;
    cursor: pointer;
    text-overflow: ellipsis;
    position: relative;
    max-width: 100%;
    font-size: 1.6rem;
    font-family: inherit;
    min-height: 49px;
    text-align: center;
  }
  
  form select option {
    padding: 2px 5px;
    border: none;
    text-align: center;
  }

  dd ul{
    display: flex;
    justify-content: flex-start;
  }

  dd ul li {
    color: #AAAAAA;
    display: block;
    position: relative;
    width: 30%;
    margin-top: -20px;
    padding-bottom: 10px;
  }

  span.sp-only{
    display: none;
  }

}

/*==============================================
問合せフォーム　SP
================================================*/
@media screen and (max-width:599px) {

  dl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 0 10px;
    text-align: left;
  }
  
  dl+dl {
    border-top: solid 1px #ccc;
  }
  
  dl:first-child {
    border-top: solid 1px #ccc;
  }
  
  dl:last-child {
    border-bottom: solid 1px #ccc;
  }
  
  dt {
    vertical-align: middle;
    display: table-cell;
    width: 100%;
  }

  dd {
    display: table-cell;
    padding: 5px 0;
    width: 100%;
  }

  .form-select{
    height: 48px;
    position: relative;
  }

  .form-size-01 {
		width: 100%;
	}

  .form-select .form-select-item {
		position: absolute;
		width: 100%;
		height: 100%;
		padding: 9px 16px;
		border-radius: 4px;
		appearance: none;
	}

  .form-select::after {
		display: block;
		position: absolute;
		content: "";
		top: 0;
		bottom: 0;
		margin: auto;
		width: 6px;
		height: 6px;
		border-color: #0081cc;
		border-style: solid;
		border-width: 0;
		transform: rotate(45deg);
		border-right-width: 2px;
		border-bottom-width: 2px;
		right: 14px;
		pointer-events: none;
	}


  input#birthday{
    display: block;
    width: 100%;
    padding: 5px 0;
  }

  dd ul{
    display: flex;
    justify-content: center;
  }

  dd ul li {
    color: #AAAAAA;
    display: block;
    position: relative;
    width: 45%;
    margin-top: -20px;
    padding-bottom: 10px;
    font-size: calc(25 / 599 * 100vw);
  }

  .sp-submit{
    width: calc(170 / 599 * 100vw);
    display: inline-block;
  }

  .sp-submit:first-child{
    margin-bottom: 3rem;
  }

  .form-bg{
    width: 100% !important;
    display: block;
  }

}

/*===============================================
フッターPC
=================================================*/
footer {
  background-color: #08529f;
  overflow: hidden;
}

.footer-content {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
}

.footer-content_left {
  width: 350px;
  height: auto;
}

.footer-logo {
  width: 90%;
  height: auto;
  padding-bottom: 0.5rem;
}

.footer-btn-list {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ibj {
  width: 60%;
  height: auto;
}

.footer-content_left .sns-item {
  width: 10%;
  height: auto;
}

.footer-content_right {
  width: 30%;
}

.footer__tel {
  position: relative;
  font-size: 31px;
  font-weight: 300;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  display: block;
  color: #fff;
  text-align: left;
  line-height: 1;
  letter-spacing: 1px;
}

.footer__tel::before {
  content: url(../img/icon-tel-pc-w.svg);
  position: absolute;
  top: 12px;
  left: -42px;
  width: 28px;
  height: auto;
  color: #fff;
}

.footer__hours {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1;
  letter-spacing: 1px;
  margin-top: 10px;
}

.footer-content_rigtht p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.2;
  padding-top: 1.2rem;
  letter-spacing: 0.1rem;
}

/*===============================================
フッターTB
=================================================*/

@media screen and (max-width:1024px) {

  .footer-content {
    width: 98%;
  }

  .footer-content_left {
    width: 320px;
    padding-left: 2rem;
  }

  .footer-content_right {
    width: 30%;
  }

  .footer__tel {
    position: relative;
    font-size: 28px;
    font-weight: 300;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: block;
    color: #fff;
    text-align: left;
    line-height: 1;
    letter-spacing: 1px;
  }

  .footer__tel::before {
    content: url(../img/icon-tel-pc-w.svg);
    position: absolute;
    top: 12px;
    left: -42px;
    width: 24px;
    height: auto;
    color: #fff;
  }

  .footer__hours {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    font-family: "Noto Serif JP", sans-serif;
    line-height: 1;
    letter-spacing: 1px;
    margin-top: 10px;
  }

  .footer-content_rigtht p {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.2;
    padding-top: 1.2rem;
    letter-spacing: 0.1rem;
  }

}

/*===============================================
フッターSP
=================================================*/

@media screen and (max-width:599px) {

  .footer-content {
    flex-direction: column;
    padding: 4rem 0 4rem;
  }

  .footer-content_left {
    width: 80%;
    margin: auto;
    padding-left: 0;
    padding-bottom: 2rem;
  }

  .footer-content_right {
    width: 80%;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-btn-list {
    width: 70%;
    margin: auto;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }

  .ibj {
    width: 50%;
    height: auto;
    padding-right: 1rem;
  }

  .footer-content_left .sns-item {
    width: 12%;
    height: auto;
  }

  .footer__tel-wrapper {
    transform: translateX(calc(70 / 599 * 100vw));
  }

  .footer-content_rigtht p {
    font-size: calc(24 / 599 * 100vw);
  }

}

/*===============================================
ページトップ
=================================================*/

#pagetop {
  cursor: pointer;
  padding: 12px;
  position: fixed;
  right: -70px;
  bottom: 80px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 120;
}

#pagetop a{
  display: block;
}

#pagetop img{
  display: block;
  padding-top: 0.7rem;
}

@media screen and (max-width:599px) {
  #pagetop{
    width: 50px;
    height: 50px;
  }
}

/*===============================================
コピーライト
=================================================*/
p.copy-right {
  font-size: 1.4rem;
  font-family: serif;
  text-align: center;
  color: #fff;
  padding: 2rem 0;
  background-color: #000;
}

@media screen and (max-width:599px) {
  p.copy-right {
    font-size: calc(20 / 599 * 100vw);
  }
}

/*===============================================
確認画面フォント
=================================================*/

p.confirm-explanation{
  font-size: 1.8rem;
  text-align: center;
  padding-bottom: 3rem;
}

/*===============================================
完了画面フォント
=================================================*/

h2.thanks{
  font-size: 2.5rem;
  text-align: center;
  color: orangered;
  font-weight: 600;
  padding-bottom: 6rem;
}

.complete-text{
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
}

#complete-btn{
  padding: 8rem 0;
}

#complete-btn input[type=button]{
  border-width: 0;
  padding: 1.2rem 0;
  border-radius: 5px;
}

/*===============================================
確認画面フォント TB
=================================================*/
@media screen and (max-width:1024px) {
  h2.thanks{
    font-size: 2rem;
    padding-bottom: 4rem;
  }

  .complete-text{
    width: 95%;
    margin: auto;
    font-size: 1.6rem;
  }
  #complete-btn{
    padding: 5rem 0;
  }
}

/*===============================================
確認画面フォント SP
=================================================*/
@media screen and (max-width:599px) {
  h2.thanks{
    width: 95%;
    margin: auto;
    font-size: calc(32 / 599 * 100vw);
  }

  .complete-text{
    width: 95%;
    margin: auto;
    font-size: calc(28 / 599 * 100vw);
    text-align: justify;
  }
}

/*==============================================
スタート画面
================================================*/
/*
.start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start .start-image {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 9999;
  width: 280px;
  width: 380px;
  height: auto;
  display: none;
}

@media screen and (max-width:599px) {
  .start .start-image {
    width: calc(480 / 599 * 100vw);
  }
}
*/

.loader-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.start-image{
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%,0);
}

.loader {
  font-size: 10px;
  margin: 30px auto;
  text-indent: -9999em;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  background: #0b73e0;
  background: -moz-linear-gradient(left, #0b73e0 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #0b73e0 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #0b73e0 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #0b73e0 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #0b73e0 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0),;
}

.loader:before {
  width: 50%;
  height: 50%;
  background: #0b73e0;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.loader:after {
  background: #fff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}


@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}