@charset "UTF-8";

/* インナー幅 */
.conInr{
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

/* CSS Document */
html {
  font-size: 62.5%;
  width: 100%;
}
body {
  color: #333;
  background-color: #f6f8f9;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center
}

li {
  list-style: none;
}

section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.header {
  width: 100%;
  padding-bottom: 20px;
  color: #003eca;
}
@media(max-width:964px) {
  .header {
    width: 100%;
    padding: 0px;
    background-color: #bbdbf3;
  }
}
.header__left {
  margin-top: 50px;
}
.header__contents {
  width: 86%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.header h1 {
  font-size: 6.6rem;
  letter-spacing: 5px;
}
.header h1 span {
  font-size: 3rem;
  letter-spacing: normal;
}
.header h1 a {
  text-decoration: none;
  color: #003eca;
}
@media(max-width:964px) {
  .header__left {
    margin-top: 0px;
  }
  .header__contents {
    width: 82%;
    margin: 0 auto;
  }
  .header h1 {
    font-size: 2.4rem;
    width: 100%;
    text-align: left;
    margin: 10px auto;
    letter-spacing: 2px;
  }
  .header h1 span {
    font-size: 1.2rem;
  }
}
.registration-number {
  text-align: left;
}
@media(max-width:964px) {
  .registration-number {
    display: none;
  }
}
.inquiry-button {
  background-color: #003eca;
  width: 150px;
  height: 77px;
  position: absolute;
  top: 0;
  right: 0;
}
.inquiry-button a {
  text-decoration: none;
  color: #fff;
  line-height: 77px;
  vertical-align: middle;
}
.header h4 {
  font-size: 4rem;
  position: absolute;
  top: 100px;
  right: 0;
}
.header h4 a {
  text-decoration: none;
}
.header__business-hours {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media(max-width:964px) {
  .header__right {
    display: none;
  }
}
/*メールアイコンとドロワーメニュー*/
.header__mail-contents {
  display: none;
}
.open-button, .header__nav-top {
  display: none;
}
@media(max-width:964px) {
  .header__mail-contents {
    display: block;
    position: absolute;
    right: 75px;
    top: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .header__mail a {
    text-decoration: none;
    color: #003eca;
  }
  .header__mail img {
    width: 27px;
    height: 19px;
  }
  .header__mail p {
    font-size: 1rem;
    position: absolute;
    right: 7px;
    top: 25px;
  }
  /* ドロワーメニュー */
  .open-button { /*ドロワーを表示するエリア*/
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px; /*クリックするスペースは40pxが理想とされている*/
    cursor: pointer; /*（必要に応じて。特にpcのとき）マウスが上に乗ったときにカーソルがポインターに変わる*/
  }
  .open-button span, /*spanの中の線　1本目*/ .open-button span:before, .open-button span:after {
    /*擬似要素は重なっている状態*/
    position: absolute; /*親要素に大して固定*/
    height: 3px; /*線の太さ*/
    width: 25px; /*ドロワーのエリアよりも狭く*/
    background-color: #003eca; /*線の色*/
    display: block; /*表示させる*/
    content: ""; /*beforeとafterの要素を表示させるために記述する*/
  }
  .open-button span:before {
    bottom: -8px; /*beforeとafterの要素は重なっているため、下(bottom)に8px分下がる*/
  }
  .open-button span:after {
    bottom: -16px /*1番上からの距離＝beforeの2倍*/
  }
  /* MENU */
  .open-button p {
    color: #003eca;
    font-size: 1rem;
    position: absolute;
    right: 13px;
    top: 25px;
  }
  .close-button {
    display: block; /*表示*/
    position: absolute;
    /*nav-pageの形が変わっても、右上に絶対座標で指定
      親要素にposition:static以外が指定されていれば適用される。
      今回は親要素（nav-page）にposition:fixedが指定されているためＯＫ*/
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: #003eca;
    font-size: 2rem; /*remで指定してもOK*/
  }
  .close-button p {
    font-size: 0.8rem;
  }
  .header__nav-top {
    display: none; /*ちゃんと画面に表示できるように念のため*/
    z-index: 1000; /*重ね合わせの順。ページの一番上に重ねたいので大きな値で設定*/
    position: fixed; /*absoluteは親要素に対して絶対要素になるが、fixedだとウィンドウに対してきめることができる*/
    top: 0;
    left: 0; /*ウィンドウに対して、top0、left0から表示*/
    background-color: #bbdbf3; /*nav-pageの背景色*/
    width: 90%; /*ウィンドウに対して横幅70%で表示*/
    height: 100%; /*ウィンドウに対して縦幅70%で表示*/
    padding-top: 200px; /*nav-pageの余白。カンプにあわせて上下左右を調整*/
    /*    box-shadow: 10px 10px 25px rgba(0,0,0,0.5)*/
  }
  .header__nav-top ul li {
    width: 30%;
    max-width: 150px;
    margin: 0 auto 35px;
    border-bottom: solid 1px #fff; /*下線をつける。liのデザインに応じて*/
  }
  .header__nav-top ul li a {
    line-height: 25px; /*文字の高さ幅*/
    vertical-align: middle; /*文字に高さを設けたときに、その高さの真ん中に来る指定*/
    text-decoration: none;
    color: #003cea;
  }
}
@media(max-width:360px) {
  .header__nav-top {
    padding-top: 100px;
  }
  .header__nav-top ul li {
    width: 40%;
  }
  .header__nav-top ul li a {
    font-size: 1.2rem;
  }
}
/*メールアイコンとドロワーメニューここまで。*/
.navigation {
  height: 60px;
  width: 100%;
  background-color: #bbdbf3;
}
@media(max-width:964px) {
  .navigation {
    display: none;
  }
}
.navigation a {
  text-decoration: none;
  color: #003eca;
  font-weight: bold;
  line-height: 60px;
  vertical-align: middle;
}
.navigation ul {
  width: 86%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.footer {
  background-color: #bbdbf3;
  padding-top: 60px;
}
/*スクロールボタン*/
#page_top {
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.6;
}
#page_top a {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #3f98ef;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after {
  content: 'PAGE TOP';
  font-size: 13px;
  font-weight: bold;
  color: #666666;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media(max-width:800px) {
  #page_top a::after {
    font-weight: normal;
  }
}
.address-detail {
  font-style: normal;
  font-size: 1.4rem;
  font-weight: bold;
  width: 76%;
  max-width: 1100px;
  margin: 0 auto;
}
@media(max-width:590px) {
  .address-detail {
    font-weight: normal;
  }
}
.address-br1, .address-br2 {
  display: none;
}
@media(max-width:590px) {
  .address-br1, .address-br2 {
    display: block;
  }
}
.footer__tel-number {
  font-size: 1.4rem;
  font-weight: bold;
}
@media(max-width:590px) {
  .footer__tel-number {
    font-weight: normal;
  }
}
.footer__business-hours {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 20px 0 60px 0;
}
@media(max-width:590px) {
  .footer__business-hours {
    font-weight: normal;
  }
}
.footer ul {
  font-size: 1.4rem;
  width: 76%;
  max-width: 1100px;
  display: flex;
  justify-content: space-around;
  margin: 0 auto 60px;
}
@media(max-width:590px) {
  .footer ul {
    font-size: 1.2rem;
    font-weight: normal;
  }
}
@media(max-width:410px) {
  .footer ul {
    display: block;
  }
}
.footer ul li {
  list-style: none;
}
@media(max-width:410px) {
  .footer ul li {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}
.footer a {
  text-decoration: none;
  color: #fff;
}
.copyright {
  text-align: center;
  font-size: 1rem;
}

/* 20231003追加 問い合わせ　SNSアイコン */
.sns-button{
  padding: 30px 0;
  background-color: #bbdbf3;
  border-radius: 20px;
  width: 43%;
  max-width: 360px;
}

.sns-button_ttl{

}

.sns-button_list{
  width: 60%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.sns-button_list_item{
  padding: 30px 0;
}

.sns-button_list_item a{
  display: block;
  width: 43px;
  height: 50px;
}

.sns-button_list_item .fab.fa-twitter-square,
.sns-button_list_item .fab.fa-instagram{
  font-size: 50px;
  color: #003eca;
}

@media(max-width:800px) {
  .sns-button {
    margin: 0 auto;
    width: 100%;
    padding: 20px 0;
    margin-bottom: 30px;
  }
}

/* 20231003追加 ヘッダー　SNSアイコン */
.header_sns-button_list .fab.fa-twitter-square,
.header_sns-button_list .fab.fa-instagram{
  font-size: 34px;
  color: #003eca;
}

.header_sns-button_list .fab.fa-twitter-square{
  display: block;
  position: absolute;
  right: 170px;
  top: 10px;
}

.header_sns-button_list .fab.fa-instagram{
  display: block;
  position: absolute;
  right: 130px;
  top: 10px;
}

@media(min-width:800px) {
  .header_sns-button_list{
    display: none;
  }
}
