﻿@charset "utf-8";

* {
	margin: 0px;
	padding: 0px;
}
.clear {
	clear: both;
	width: 100%;
}
a {
	text-decoration: none;
    color: inherit;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #262C66;
	padding: 0;
	margin-top: 25px;
	margin-right: 0;
	margin-bottom: 25px;
	margin-left: 0;
}
header,nav,article,footer {
	display: block;
	margin: 0px;
	padding: 0px;
}
body {
	font-size: 16px;
	line-height: 1.8;
	color: #000;
	font-family: "Zen Maru Gothic", sans-serif;

}
@media (min-width: 768px) {
    body {
	font-size: 16px;
	line-height: 1.8;
        font-weight:bold;
	color: #000;
	font-family: "Zen Maru Gothic", sans-serif;
}
}

img {
	display: block;
	margin: 0px;
	padding: 0px;
	border-style: none;
    width: 100%
}

@media (max-width: 767px) {
    img {
	display: block;
	margin: 0px;
	padding: 0px;
	border-style: none;
    width: 100%
}
}

li {
	list-style-type: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


.l-inner {
    width: 100%;
    padding: 0 20px;
        margin: 5rem auto;
}

@media (min-width: 768px) {
    .l-inner {
        width: 980px;
        padding: 20px;
        margin: 5rem auto;
}
}

h2 {
    font-size: 25px;

}

@media (min-width: 768px) {
h2 {
    font-size: 30px;
}
}

h3 {
    font-size: 25px;
}

@media (min-width: 768px) {
h3 {
    font-size: 30px;
}
}

h4 {
    font-size: 20px;
}

@media (min-width: 768px) {
h4 {
    font-size: 25px;
}
}

h5 {
    font-size: 18px;
}

@media (min-width: 768px) {
h5 {
    font-size: 18px;
}
}


p {
    font-size: 16px;
    color: #000;
}

a:hover {
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
}
/* ***********************************
*
*		ブレークポイント
*
* *********************************** */

/* スマホとタブレットのみに適用 */
@media (max-width: 979px) {
	.sp-tablet-none {display: none !important;}
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
	.tablet-pc-none {display: none !important;}
    .pc { display:inline; }
}

/* スマホのみに適用 */
@media (max-width: 767px) {
	.sp-none {display: none !important;}
    .sp { display:inline; }
    .pc { display:none; }
}

/* タブレットのみに適用 */
@media (min-width: 768px) and (max-width: 979px) {
	.tablet-none {display: none !important;}
}

/* PCのみに適用 */
@media (min-width: 1200px) {
	.pc-none {display: none !important;}
    .pc { display:inline; }
    .sp { display:none; }
}

/* PC(大)のみに適用 */
@media (min-width: 1548px) {
	.pcbig-none {display: none !important;}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .pc-none {display: none !important;}
    .pc { display:inline; }
    .sp { display:none; }
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}


/* ***********************************
*
*		ヘッダー
*
* *********************************** */

.menu_blue {
    text-align: left;
    font-size: 10px;
    color: #29abe2;
}
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #fff;
    padding-bottom: 10px
}


.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}


.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: black;
  transition: all 0.4s;
}

.c-hamburger span:nth-of-type(1) {
  top: -4px;
}

.c-hamburger span:nth-of-type(2) {
  top: 1px;

  transform: translateX(-0.45deg);
}

.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}



.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}

.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}

.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}


.p-header__nav {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  right: -100%;

  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: transparent;
  opacity: 0;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content:flex-start;
  height: inherit;
  padding: 0 20px;

}

@media screen and (min-width: 768px) {
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 0 20px;
    width: 1000px;
    margin:2rem auto 0;
}
}
.p-header__hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  height: 100%;
}

.p-header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
  background-color: #fff;
}



.p-nav__list {
  display: block;
  padding-right: 20px;
  padding-left: 20px;


}

.p-nav__item {
  display: inline-block;
  position: relative;
  width: 100%;

}


.p-nav__link {
  color: black;
  display: block;
  padding: 20px;
  cursor: pointer;

}

.p-nav__item.p-nav__item--acMenu>.p-nav__link {
  position: relative;
}

.p-nav__item.p-nav__item--acMenu>.p-nav__link::after {
  position: absolute;
  content: "▼";
  right: 10%;
  top: 65%;
  transform: translateY(-50%);

}


.p-nav__middle {
  display: none;
}

.p-nav__middleItem a::before {
  margin-right: 8px;
  margin-left: 8px;
  content: "-";
}


.p-nav__item.is-open .p-nav__middle {
  display: block;
}

@media screen and (min-width: 768px) {

  .p-header__hamburger {
    display: none;
  }

  .p-nav__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;

  }

  .p-header__nav {
    position: static;
    opacity: 1;
    height: inherit;
    width: initial;
    width: 100%;
    max-width: fit-content;
  }

  .p-nav__list {
    padding-right: 0;
    padding-left: 0;
    display: flex;
    flex-direction: row;

  }

  .p-nav__item ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 130px;
    margin: 0;
    padding: 0;
  }

.p-nav__link {
    color: black;
    display: block;
    padding: 20px 0 10px 30px;
    cursor: pointer;
    width: 150px;
    

}

  .p-nav__item ul li {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.1s;
  }

  .p-nav__item ul li a {

    display: flex;
    align-items: center;
    padding: 13px 20px 13px 10px;
    color: #fff;
  }

  .p-nav__item:hover>ul>li {
    height: 48px;
    overflow: visible;
    background-color: rgb(44, 48, 100);
  }

  .p-nav__item:hover>ul>li:not(:first-child) {
    border-top: 1px solid #fff;
  }

  .p-nav__item:hover>ul>li.p-nav__middleItem:hover {
    background-color: #fff;
  }

  .p-nav__item:hover>ul>li.p-nav__middleItem:hover a {
    color: #2C2C2C;
  }

  .p-nav__middle {
    display: block;
    text-align: left;
  }

  .p-nav__middleItem {
    position: relative;
  }

  .p-nav__middleItem a {
    position: relative;
    white-space: nowrap;
  }

}
/*ハンバーガーメニューここまで*/


/*文字サイズ変更ボタン*/

header .box h1 {
	float: left;
	padding-top: 0px;
}


@media (max-width: 767px) {
    header .box .right {
        display: none;
}
}

@media screen and (min-width: 768px) {
header .box .right {
    position: absolute;
	float: right;
	padding-top: 0px;
    top: 0%;
    right: 11%
}

@media (min-width: 1548px) { 
    header .box .right {
    position: absolute;
	float: right;
	padding-top: 0px;
    top: 0%;
    right: 25.5%;
}
 }   
    
header .box .right ul li {
	float: left;
	list-style-type: none;
}
header .box .right .bana {
	padding-right: 7px;
	height: 30px;
	width: 240px;
}
header .box .right .large {
	background-image: url(../images/common/header_font_size_large.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 30px;
	width: 31px;
	display: block;
    margin: .5rem auto 0;
}
header .box .right .normal {
	background-image: url(../images/common/header_font_size_normal.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 30px;
	width: 31px;
	display: block;
    margin: .5rem auto 0;
}
header .box .right .small {
	background-image: url(../images/common/header_font_size_small_on.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 30px;
	width: 31px;
	display: block;
    margin: .5rem auto 0;
}
header .box .right a:hover {
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
}
}
/*文字サイズ変更ボタンここまで*/

@media (max-width: 767px) {
.tel-text{
    display: none;
}
}
@media screen and (min-width: 768px) {

.tel-text{
    font-family: "Noto Serif JP", serif;

    padding: 0px 20px;
}
.tel-number{
    font-family: "Noto Serif JP", serif;
    font-size: 25px
}
}






/* ***********************************
*
*	コンタクト
*
* *********************************** */
.l-top-contact{
    padding-top: 10px
}

.contact-area {
    width: 100%;
    background-color: #c0ddf7;
    border-radius: 20px;
    padding: 20px;
    color: #2c3064;
}


.contact-box {
    display: block;
    width: 100%;
    padding: 10px 0
}

@media (min-width: 768px) {
    .contact-box {
        display: flex;
        padding: 0px;
        width: 100%;
        margin:2rem auto;
}
}

.contact-box>div {
    width: 100%;
    padding: 10px 0;
    margin: 0rem
}

@media (min-width: 768px) {
.contact-box>div {
    width: 50%;
    padding:20px;
}
}

.contact-box>div:last-child {
    border-left: 0;
}

@media (min-width: 768px) {
.contact-box>div:last-child {
    border-left: 1px solid #2c3064;
}
}
.reception_hours {
    font-size: 21px;
    color: #2c3064;
}

.tel_img {
    width:42px;
    height: 55px
}

.tel_number {
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.tel_number li {
    display: flex;
    width: auto;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    color: #2c3064;
}

@media (min-width: 768px) {
.tel_number li {
    display: flex;
    width: auto;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 55px;
}
}
.contact-area .btn a {
    position: relative;
    display: flex;
    width: 100%;
    padding: 20px;
    background-image: linear-gradient(90deg, rgba(41, 171, 226, 1), rgba(46, 49, 146, 1));
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    align-items: center; 
    margin:1rem 0 0;
    font-size: 15px;

}

@media (min-width: 768px) {
.contact-area .btn a {
    position: relative;
    display: flex;
    width: 100%;
    padding: 20px;
    background-image: linear-gradient(90deg, rgba(41, 171, 226, 1), rgba(46, 49, 146, 1));
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    align-items: center; 
    margin:1rem 0 0;
    font-size: 20px;

}
}

.contact-area .btn-circle-right a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 22px;
    height: 22px;
    margin: auto;
    border-radius: 20px;
    background-color: #fff;
}

.contact-area .btn-circle-right a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #2c3064;
    border-right: 2px solid #2c3064;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.contact_mail_img{
    width: 40px;
    height: 30px;
    margin-right: 1rem;
}

/* ***********************************
*
*	フッター
*
* *********************************** */


.footer-box {
    display: block;
    width: 100%;
    padding: 10px 0
}

@media (min-width: 768px) {
    .footer-box {
        display: flex;
        padding: 0px;
        width: 1000px;
        margin:2rem auto;
        align-items: center;
}
}

.footer-box>div {
    width: 100%;
    padding: 10px 0;
    margin: 0rem;
}

@media (min-width: 768px) {
.footer-box>div {
    width: auto;
    padding:20px;
}
}
.footer-box>div img{
    width: 180px;
    padding: 10px 0;
    margin: 0rem;
}

.nav_area {
    display: block;
}

@media (min-width: 768px) {
.nav_area {
    display: flex;
}
}


.footer-3 {
    padding: 3rem 2rem 1rem;
    background-color: #ebf7fc;
    margin-top: 8rem;
}

@media (min-width: 768px) {
.footer-3 {
    padding: 3rem 2rem 1.5rem;
    background-color: #ebf7fc;
    margin-top: 13rem;
}
}

.footer-3__container {
    display: grid;
    justify-items:center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-3__logo {
    width: 104px;
    height: 26px;
    margin-bottom: 1rem;
}

.footer-3__caption {
    margin-top: 1rem;
    font-size: 12px;
}

.footer-3__title,
.footer-3__link {
    margin: .5rem;
    color: #333;
    font-size: 14px;
    width: 100px;
}

.footer-3__title {
    font-weight: 600;
}

.footer-3__list {
    padding: 0;
    list-style-type: none;
}

.footer-3__link {
    display: block;
}

.footer-3__link:not(:hover) {
    text-decoration: none;
}

@media only screen and (max-width: 768px) {
    .footer-3__container {
        justify-items: start;
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
    }

    .footer-3__head {
        grid-column: 1/3;
    }

    .footer-3__caption br {
        display: none;
    }
}

.copyright{
    font-size: 11px;
    text-align: center
}
    
 /* ***********************************
*
*	個別ページ
*
* *********************************** */

.p-page_title {
    font-size: 25px;
    color: #2c3064;
}

@media (min-width: 768px) {   
.p-page_title {
    font-size: 45px;
}
}    

.en_title {
    font-size: 16px;
    color: #2c3064;
}

@media (min-width: 768px) {
    .en_title {
        font-size: 20px;
}
}  


.p-page_title-area .inner {
    width: 100%;
    padding: 0 20px;
    margin:7rem auto 5rem;
    text-align: center;
}

@media (min-width: 768px) {
.p-page_title-area .inner {
        width: 980px;
        padding: 20xp;
        margin:12.5rem auto  6rem;
}
}

.grecaptcha-badge {
  visibility: hidden;
}