@charset "utf-8";

/* --------------------------------------
　　reset.css
-------------------------------------- */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: 'Noto Sans JP', 'Arial', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', Meiryo, 'ＭＳ ゴシック', sans-serif;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: hidden;
    position: relative;
}
body.open .overlay {
  background-color: #000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  height: 100vh;
  z-index: 1;
  opacity: 0.5;
}
img {
    vertical-align: bottom;
}

a {
    text-decoration: none;
    transition: all .2s;
}


/* --------------------------------------
　　全体の記述
-------------------------------------- */
:root {
    --font_color: #333333;
    --gray: #AFB8BF;
    --white: #ffffff;
    --red: #E03F3F;
    --red_pale: #FFE6E6;
    --purple: #B80EA5;
    --purple_dark: #830675;
    --blue_dark: #1F368F;
    --blue_sky: #2765C1;
    --blue_cerulean: #56BDDE;
    --blue_bright: #4A91D2;
    --blue_light: #EDFAFF;
    --background_lightbluegray: #F1F3F6;
    --background_lightgray: #F8F8F8;
}

* {
    box-sizing: border-box;
}

html {
    color: var(--font_color);
    font-size: 14px;
    line-height: 25px;
}

body {
    background-color: var(--white)
}
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 375px;
}
/* Top Logo */
.logo-section {
    position: relative;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 375px;
}
.header-section{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: var(--white);
    z-index: 99;
    border-bottom: 2px solid #E7F4F9;
}
.logo{
    text-align: center;
}
footer img {
    width: 82px;
}
.logo img{
    width: 60px;
    height: auto
}
/* ハンバーガーボタン部分 */
.hamburger{
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 4px;
    z-index: 999999
}

#nav-icon3{
  width: 32px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon3 span{
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #1F368F;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon3 span:nth-child(1) {
  top: 3px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 13px;
}

#nav-icon3 span:nth-child(4) {
  top: 23px;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
/* ドロワー部分 */
#SPNav{
    background: #fff;
    padding: 16px 24px;
    width: 100%;
    max-height: 100vh; /* メニュー部分を除いた全画面 */
    transform: translateX(100%);  /* 画面外に隠す */
    transition: ease .4s;
    overflow: hidden;
    display: none;
}
#SPNav.open {
    transform: unset;
    display: block;
}

#SPNav ul li{
    max-width: 100%;
    height: 46px;
    border-bottom: 2px solid #E7F4F9;
    margin-bottom: 6px
}
#SPNav ul li a {
    font-size: 16px;
    color: #1F368F;
    line-height: 46px;
    display: block;
    width: 100%;
    padding-left: 16px;
    font-weight: 500;
    background-image: url("../img/icon_arrow.svg");
    background-position: center right 10px;
    background-repeat: no-repeat;
    background-size: 26px 26px
}
#SPNav ul li a:hover{
    background-color: #AFB8BF
}
#SPNav ul{
    margin-bottom: 38px
}
#SPNav .contact_btn{
    background-color: #B80EA5;
    width: 327px;
    height: 63px;
    line-height: 63px;
    color: #fff;
    font-weight: 500;
    text-align: left;
    background-image: url("../img/icon_next_active.svg");
    background-position: center right 30px;
    background-repeat: no-repeat;
    background-size: 26px 27px;
    display: block;
    border-radius: 12px;
    box-shadow: 0px 6px 12px 0px rgba(74, 115, 176, 0.30);
    font-size: 20px;
    margin-bottom: 35px;
    padding-left: 40px
}
#SPNav .contact_btn:hover{
    background-color: var(--purple_dark, #830675);
}
.hide{
  display: none!important;
}
.show{
  display: block!important;
}
.fa {
  margin-left: -12px;
  margin-right: 8px;
}
section h2{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; 
    text-align: center;
    color: #1F368F;
    margin-bottom: 32px
}
#section3{
  background-color: #F1F3F6
}
#price{
  background-color: #F1F3F6
}
footer{
  background-color: #F1F3F6;
  border-top: 4px solid #fff;
}
.container_title_contact {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 375px;
    padding: 0px 24px
}
@media only screen and (min-width: 641px) and (max-width: 1024px) {
    /*-- Code Table --*/
}

@media only screen and (min-width: 1025px) {
    /*-- Code PC --*/
}