@charset "utf-8";

@charset "UTF=8";
 /* font-family: 'EB Garamond', serif; */
/* ーーーーーー共通部分ーーーーーー */
html{
  /* font-size: 100%; */
  font-size: 62.5%;
  /* 16px*62,5%=10px */
  /* ↑こうすると1remが10pxになってくれる、但し基本は16pxがいいためbodyタグには16pxと記載しておく */
}
body{
font-size: 18px;
line-height: 1;
font-family: "YuMincho", "Yu Mincho", "游明朝体", YuMincho, Yu Mincho, serif;
font-weight: normal;
}
@media (min-width:1000px){
  .pc_none{
    display: none!important;
  }
}
/* min-width:769px */
@media (max-width:1000px){
  body{
    font-size: 14px;
  }
  .sp_none{
    display: none!important;
  }
}
/* min-eidth:768px */
a{
  text-decoration: none;
  color: #fff;
  transition: .4s;
  /* 時間をかけて色が変わる */
    display: inline-block;
    letter-spacing: 3px;
    position: relative;
  }
  
  /* 線が2つなので、疑似要素も2つ*/
  a::after,
  a::before {
    content: '';
    display: block;
    /* 初期状態でのwidthは0 */
    width: 0;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    transition: .5s;
  }
  /* 中心から線がスタートするので始点を50%の位置に移動する */
  a::after {
    left: 50%;
  }
  a::before {
    right: 50%;
  }
  
  /* マウスカーソルが乗っかると中心からwidthが50%ずつ伸びて100%の線になる */
  a:hover::before,
  a:hover::after {
    width: 50%;
  }

a:hover{
  opacity: 0.8;
  /* 不透明度 */
}
ul{
  list-style: none;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
h2{
  font-weight: normal;
  font-size: 35px;
}
h3{
  font-weight: normal;
  font-size: 25px;
}
/* 先生は最初にこの設定をまずしておく、varticl-aligne:bottmは下にできる余白をなくす */

/* --------parts--------- */
.flexA{
  display: flex;
}
.flexB{
  display: flex;
  justify-content: space-between;
}
.inner{
  max-width: 1300px;
  margin: 0 auto;
}
section{
  padding-bottom: 150px;
}

@media (max-width:990px){

  .inner{
    max-width: 96%;
  }
  h2{
    font-size: 28px;
  }
  h3{
    font-size: 20px;
  }
  p{
    font-size: 14px;
  }

}

@media (max-width:500px){

  h2{
    font-size: 23px;
  }
  h3{
    font-size: 18px;
  }
}


/* メインビジュアル */


.mainVisual img{
  width: 100%;
}




/* nav */

header{
    background-color: #21427c;
    padding: 30px;
    max-width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
}
header a:first-of-type{
  font-size: 25px;
  padding-bottom: 8px;
  display: block;
}
header a:last-of-type{
  font-size: 20px;
  text-transform: uppercase;
}
ul li{
    padding: 20px 0;
    margin: auto;
    margin-left: 20px;
}


/* 電話番号書くとこ */
.tel{
    align-items: center;
    color: #fff;
}

.tel p{
    font-size: 25px;
}

h2{
    text-align: center;
    padding: 100px;
}


@media (max-width:990px){

  ul li{
    margin-left: 0;

  }

header{
  padding: 15px;
}
  nav .flexB{
    display: block;
  }

  /* ハンバーガーメニュー切り替え */
  .hamburger-menu {
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
  }
  .hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
  }
  .hamburger-menu__bar:first-child {
    top: 16px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 24px;
  }
  .hamburger-menu__bar:last-child {
    top: 32px;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }
  .navigation {
    display: none;
    background: #21427c;
    position: absolute;
    top: 80px;
    width: 100%;
    z-index: 9999;
    left: 0;
    opacity: 0.9;
  }
  .navigation__list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navigation__list-item {
    border-bottom: solid 1px #21427c;
  }
  .navigation__list-item:first-child {
    border-top: solid 1px #21427c;
  }
  .navigation__link {
    color: #fff;
    font-weight: 700;
    display: block;
    padding: 24px 0;
    transition: .5s;
  }
  @media (hover: hover) and (pointer: fine) {
    .navigation__link:hover {
      background: #333;
    }
  }


}

@media (max-width:500px){
  header a:first-of-type{
        font-size: 18px;
  }
  header a:last-of-type {
    font-size: 18px;
  }
} 



/*=========
accordion
=========*/

.accordion_area {}
.accordion_area .accordion_one .ac_header {
  background-color: #ffffff;
  border: 1px solid #b0c4de;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
}
.accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header {
  background-color: #f5f5f5;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
  background-color: #f1f8ff;
}
.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #014897;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #014897;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}
.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  background: #fff;
}
@media screen and (max-width: 736px) {
  .accordion_area .accordion_one .ac_header {
    padding: 1.5rem 2rem 1.5rem 1.0rem;
  }
  .accordion_area .accordion_one .ac_header .i_box {
    right: 0.8rem;
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
  .accordion_area .accordion_one .ac_header .i_box:before {
    width: 15px;
  }
  .accordion_area .accordion_one .ac_header .i_box:after {
    height: 15px;
    right: 7px;
  }
  .accordion_area .accordion_one .ac_inner {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  }
}

/*=========
faq
=========*/

.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__headinner::before {
  position: absolute;
  left: 0;
  content: "Q．";
  color: #09357f;
  font-size: 20px;
  font-weight: bold;
}
.p-faq__headinner p.p-faq__q-txt {
  font-size: 20px;
}
@media screen and (max-width: 736px) {
  .p-faq__headinner {
    padding-left: 25px;
  }
  .p-faq__headinner::before {
    font-size: 14px;
  }
  .p-faq__headinner p.p-faq__q-txt {
    font-size: 14px;
  }
}
.p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}
.p-faq__bodyinner::before {
  position: absolute;
  left: 0;
  content: "A．";
  color: #de0000;
  font-size: 20px;
  font-weight: bold;
}
.p-faq__bodyinner p.p-faq__a-txt {
  font-size: 20px;
}
@media screen and (max-width: 736px) {
  .p-faq__bodyinner {
    padding-left: 25px;
  }
  .p-faq__bodyinner::before {
    font-size: 14px;
  }
  .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 14px;
  }
}

/*=========
base
=========*/


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.s_section {
  max-width: 1020px;
  margin: 0 auto;
  padding: 2rem 10px;
}
.gutter>*:not(:last-child) {
  margin-bottom: 1.5rem;
}
h2 {
  color: #333;
  font-size: 22px;
  font-weight: bold;
  text-align: left;
  border-left: 5px solid #333333;
  padding-left: 8px;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 736px) {
  h2 {
    font-size: 16px;
  }
}
ul.list-disc {
  margin-bottom: 0;
  padding-left: 0;
}
.list-disc__item {
  margin-left: 1.5em;
  list-style: disc;
}
a._a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 2.0em 1.0em;
  border: 1px solid #222222;
  background: linear-gradient(to right, #ffffff 50%, #222222 50%);
  background-size: 200% auto;
  box-sizing: border-box;
  color: #222222;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  transition: .3s;
  position: relative;
}
a._a:after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
}
a._a:hover {
  color: #ffffff;
  background-position: -100% 0;
}