@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.wrap {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .main-title {
  font-size: 32px;
  color: #ff7f7f;
}

@media (max-width: 767px) {
  .section-title .main-title {
    font-size: 24px;
  }
}

.section-title .sub-title {
  font-size: 14px;
  color: #707070;
}

@media (max-width: 767px) {
  .section-title .sub-title {
    font-size: 12px;
  }
}

section {
  padding: 0 40px;
  margin-bottom: 200px;
}

@media (max-width: 767px) {
  section {
    margin-bottom: 120px;
    padding: 20px;
  }
}

/*header*/
header img {
  width: 240px;
  margin-top: 40px;
  margin-left: 40px;
}

@media (max-width: 767px) {
  header img {
    width: 180px;
    margin-top: 20px;
    margin-left: 20px;
  }
}

/*top*/
.top {
  background-image: url(../img/fv-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 580px;
  margin-bottom: 100px;
  padding: 0;
}

.top-content {
  text-align: center;
  margin-top: 55px;
}

.top-message {
  font-size: 48px;
  color: #ffffff;
  line-height: 1.4;
    text-shadow: 0px 0px 20px #000000;
}

@media (min-width: 1025px) {
  .top-message br {
    display: none;
  }
}

@media (max-width: 1024px) {
  .top-message {
    font-size: 42px;
      text-shadow: 0px 0px 16px #000000;
  }
}

@media (max-width: 767px) {
  .top-message {
    font-size: 32px;
      text-shadow: 0px 0px 5px #000000;
  }
}

.top-submessage {
  font-size: 24px;
  color: #ffffff;
  margin-top: 20px;
  text-shadow: 0px 0px 5px #000000;
}

@media (min-width: 1025px) {
  .top-submessage br {
    display: none;
  }
}

@media (max-width: 1024px) {
  .top-submessage {
    font-size: 24px;
        text-shadow: 0px 0px 5px #000000;
  }
}

@media (max-width: 767px) {
  .top-submessage {
    font-size: 18px;
    margin-top: 16px;
      text-shadow: 0px 0px 3px #000000;
  }
}

.sarch {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  width: 495px;
  margin: 30px auto 60px;
}

@media (max-width: 767px) {
  .sarch {
    max-width: 400px;
    width: 90%;
  }
}

.sarch-text {
  font-size: 24px;
  font-weight: 500;
  color: #cd5c5c;
  text-align: center;
}

@media (max-width: 767px) {
  .sarch-text {
    font-size: 16px;
  }
}

/*フォーム全体*/
#form {
  max-width: 280px;
  /*フォームのサイズ*/
  margin: 0 auto;
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*検索ボックス*/
#sarch-box {
  width: 100%;
  height: 38px;
  /*検索ボックスの高さ*/
  padding: 0 10px;
  /*テキスト位置調整*/
  border: 1px solid #c0c0c0;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/*検索ボタン*/
#sarch-btn {
  width: 54px;
  /*検索ボタンの横幅*/
  height: 38px;
  /*検索ボタンの縦幅*/
  background: #FAA52E;
  /*検索ボタンの背景カラー*/
  border: none;
  /*検索ボタンの枠線を消す*/
  color: #fff;
  /*検索ボタンのテキストカラー*/
  font-size: 16px;
  /*検索ボタンのフォントサイズ*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/*検索ボタンマウスオーバー時*/
#sarch-btn:hover {
  color: #666;
  /*検索ボタンマウスオーバー時のフォントカラー*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  cursor: pointer;
}

/*iPhoneなどのデバイスで検索フォームの角が丸くならない様に処理*/
input[type="text"]input[type="submit"] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/*about*/
.about-text {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  color: #484747;
}

@media (max-width: 767px) {
  .about-text {
    font-size: 14px;
  }
}

.about-cards {
  display: -ms-grid;
  display: grid;
  max-width: 900px;
  width: 100%;
  height: 300px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  margin: 0 auto;
  margin-top: 90px;
}

@media (max-width: 767px) {
  .about-cards {
    height: 600px;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
    max-width: 400px;
  }
}

.about-cards li {
  list-style: none;
  text-align: center;
}

.about-cards li img {
  width: 80px;
}

@media (max-width: 767px) {
  .about-cards li img {
    width: 60px;
  }
}

.about-cards li span {
  display: block;
}

@media (max-width: 767px) {
  .about-cards li span {
    font-size: 12px;
  }
}

/*area*/
.area {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.area-text {
  text-align: center;
}

@media (max-width: 767px) {
  .area-text {
    font-size: 14px;
  }
}

/*sarch*/
.section-sarch {
  background-color: #ffe4c4;
  padding-top: 60px;
  padding-bottom: 60px;
}

/*address*/
.address {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.address-text {
  text-align: center;
}

@media (min-width: 1025px) {
  .address-text br {
    display: none;
  }
}

.tab {
  margin-top: 60px;
  background: #4D6597;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .tab {
    padding: 0 16px;
  }
}

.tab-wrap {
  margin-top: 120px;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  border-bottom: #484747 1px solid;
}

@media (max-width: 767px) {
  .tabs {
    gap: 10px;
  }
}

.tab-box {
  border: #484747 1px solid;
  background-color: #4D6597;
  color: #fff;
  padding: 20px 80px;
  cursor: pointer;
}

.tab-box2 {
  border: #484747 1px solid;
  background-color: #4D6597;
  color: #fff;
  padding: 20px 80px;
  cursor: pointer;
}

@media (min-width: 1025px) {
  .tab-box:hover {
    opacity: 0.7;
  }
  .tab-box2:hover {
    opacity: 0.7;
  }
}

.tab-box.is-active {
  background: #fff;
  color: #484747;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}
.tab-box2.is-active {
  background: #fff;
  color: #484747;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}

@media (max-width: 1024px) {
  .tab-box {
    padding: 10px 50px;
  }
  .tab-box2 {
    padding: 10px 50px;
  }
}

@media (max-width: 767px) {
  .tab-box {
    padding: 10px 20px;
    min-width: 90px;
    text-align: center;
  }
  .tab-box2 {
    padding: 10px 20px;
    min-width: 90px;
    text-align: center;
  }
}

@media (max-width: 450px) {
  .tab-box {
    padding: 10px 10px;
  }
  .tab-box2 {
    padding: 10px 10px;
  }
}

.tab-box a {
  text-decoration: none;
  font-size: 18px;
}
.tab-box2 a {
  text-decoration: none;
  font-size: 18px;
}

@media (max-width: 767px) {
  .tab-box a {
    font-size: 13px;
  }
  .tab-box2 a {
    font-size: 13px;
  }
}

.panel {
  display: none;
  border: 1px solid #707070;
  border-top: none;
  color: #484747;
}
.panel2 {
  display: none;
  border: 1px solid #707070;
  border-top: none;
  color: #484747;
}

.panel.is-show {
  display: block;
}
.panel2.is-show {
  display: block;
}

.panel-img {
  width: 50%;
  margin-right: 40px;
}

@media (max-width: 767px) {
  .panel-img {
    width: 100%;
    text-align: center;
  }
}

.panel-content {
  padding: 60px;
}

@media (max-width: 767px) {
  .panel-content {
    width: 100%;
    padding: 20px;
  }
}

.panel-title {
  font-size: 18px;
  font-weight: bold;
}

.panel-text {
  margin: 24px 0;
  line-height: 16 / 24;
}

.address-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .address-list {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    font-size: 12px;
  }
}

@media (max-width: 450px) {
  .address-list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    font-size: 12px;
  }
}

.address-list li {
  margin-bottom: 5px;
}

.address-list li a {
  text-decoration: none;
  font-size: 14px;
  color: #4D6597;
}

/*faq*/
.faq {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.qa-box-items {
  width: 900px;
  max-width: 100%;
  margin: 80px auto 0 80px;
}

.qa-item:not(:first-child) {
  margin-top: 24px;
}

.qa-box {
  border: #ff7f7f solid 1px;
}

.qa-box-q {
  color: #fff;
  background: #ff7f7f;
  padding: 12px 56px;
  position: relative;
}

@media (max-width: 767px) {
  .qa-box-q {
    padding: 12px 45px;
    font-size: 14px;
  }
}

.qa-box-q::before {
  position: absolute;
  content: "Q";
  top: 12px;
  left: 20px;
}

.qa-box-icon {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa-box-icon.is-open .qa-box-bar2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.qa-box-bar1 {
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.qa-box-bar2 {
  width: 2px;
  height: 14px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.qa-box-a {
  color: #535353;
  background: #fff;
  line-height: 1.5;
  padding: 16px 30px 16px 20px;
  display: none;
}

@media (max-width: 767px) {
  .qa-box-a {
    font-size: 14px;
  }
}

.qa-box-content {
  position: relative;
  padding-left: 25px;
}

.qa-box-content::before {
  position: absolute;
  content: "A";
  top: 0;
  left: 0;
}

/*howto*/
.howto {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.howto h3{
    padding: 0.5em 0;
    border-top: solid 3px #364e96;
    border-bottom: solid 3px #364e96;
    margin-top: 20px;
}

.howtoimg{
  text-align : center;
}

/*column*/
.column {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.column h3{
  color: #505050;/*文字色*/
  padding: 0.5em;/*文字周りの余白*/
  display: inline-block;/*おまじない*/
  line-height: 1.3;/*行高*/
  background: #dbebf8;/*背景色*/
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;/*左側の角を丸く*/
  width: 100%;
}
.column h3:before {
  content: '●';
  color: white;
  margin-right: 8px;
}

.columnimg{
  text-align : center;
}

/*footer*/
footer {
  background-color: #4D6597;
  padding: 60px;
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  footer {
    padding: 40px;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  footer {
    padding: 16px;
    padding-bottom: 0;
  }
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .footer-content {
    display: block;
  }
}

.footer-left img {
  width: 400px;
}

@media (max-width: 1024px) {
  .footer-left img {
    width: 280px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .footer-left img {
    width: 400px;
    margin-top: 20px;
  }
}

.footer-right {
  margin-top: 40px;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  list-style: none;
  color: #fff;
}

@media (max-width: 1024px) {
  .footer-nav {
    gap: 40px;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .footer-nav {
    display: block;
    margin-left: 20px;
    font-size: 14px;
  }
}

.footer-nav li {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .footer-nav li {
    margin-bottom: 20px;
  }
}

.footer-nav a {
  text-decoration: none;
}

.info {
  line-height: 1;
  color: #fff;
  font-size: 12px;
  padding-left: 20px;
  margin-top: 67px;
}

@media (min-width: 1025px) {
  .info br {
    display: none;
  }
}

.info-address {
  line-height: 1.6;
}

.copy {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 20px;
  color: #fff;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}

#page-top a {
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 10px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (max-width: 767px) {
  #page-top a {
    width: 40px;
    padding: 0;
    margin-right: -10px;
  }
}

#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}

#map {
  width: 80%;
  margin: 0 auto;}
#map svg {
    width: 100%;
    height: auto;
}
#map svg a path {
        transition: fill 0.3s linear;
      }
#map svg a:hover path {
          fill: #ffce00;
        }
#map svg a polygon {
        transition: fill 0.3s linear;
      }
#map svg a:hover polygon {
          fill: #ffce00;
        }
#map svg a rect {
        transition: fill 0.3s linear;
      }
#map svg a:hover rect {
          fill: #ffce00;
        }

#map2 {
  width: 100%;
  margin: 0 auto;}
#map2 svg {
    width: 100%;
    height: auto;
}
#map2 svg a path {
        transition: fill 0.3s linear;
      }
#map2 svg a:hover path {
          fill: #ffce00;
        }
#map2 svg a polygon {
        transition: fill 0.3s linear;
      }
#map2 svg a:hover polygon {
          fill: #ffce00;
        }
#map2 svg a rect {
        transition: fill 0.3s linear;
      }
#map2 svg a:hover rect {
          fill: #ffce00;
        }
#map2 svg a circle {
        transition: fill 0.3s linear;
      }
#map2 svg a:hover circle {
          fill: #ffce00;
        }
#map2 svg a text {
        transition: fill 0.3s linear;
      }
#map2 svg a:hover text {
          fill: #ff0000;
        }

.pr {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pr p{
  font-size: 18px;
}

.pr-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.pr-section-title .main-title {
  font-size: 60px;
  color: #707070;
}

.pr h3{
  color: #505050;/*文字色*/
  content: "";
  display: inline-block;
  background: url(../img/point.jpg) no-repeat;
  background-size: contain;
  margin-right: 8px;
  padding: 0 0 0 60px;
  font-size: 32px;
  height: 60px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .pr-section-title .main-title {
    font-size: 28px;
  }
}

.pr-section-title .pr-sub-title {
  font-size: 24px;
  color: #707070;
}

@media (max-width: 767px) {
  .pr-section-title .pr-sub-title {
    font-size: 12px;
  }
    .pr p{
  font-size: 16px;
}
}

.pr-parent{
display: grid;
display: -ms-grid;
max-width: 1100px;
gap: 10px;
grid-template-columns: 2fr 1fr;
-ms-grid-columns: 2fr 1fr;
margin-top: 20px;
margin: 0 auto;
}

.pr-child2{
margin: 0 auto;
}



@media (max-width: 767px) {
  .pr-parent {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 10px;
    max-width: 400px;
  }

.pr h3{
  color: #505050;/*文字色*/
  display: inline-block;/*おまじない*/
  line-height: 1.3;/*行高*/
  vertical-align: middle;
  width: 100%;
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 50px;
}

}

/*PCでは無効（改行しない）*/
.sma{
    display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .sma{
        display: block;
    }
}




