@charset "utf-8";
/* CSS Document */
/*★★ common.css ★★*/
/*
----------------------------
　共通                        
----------------------------
*/
html {
    font-size: 62.5%;
}
body {
    font-family: kinto-sans, 'メイリオ', Meiryo, 'ヒラギノ角ゴシック', 'Hiragino Sans', sans-serif;
    line-height: 1.5;
    line-height: 1.7;
    font-size: 1.4rem;
    font-weight: 500;
    color: #252525;
}
body.open {
    overflow: hidden !important;
}
.pc {
    display: none;
}
a:hover {
}
section {
    padding: 3em 1.5rem;
}
.sc_ttl {
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: #003466;
    margin-bottom: 15px;
}
.sc_ttl span {
    display: block;
    font-size: 1.4rem;
    color: #111111;
}
.bg_gray {
    background: #F9F9F9;
}
.bg_black {
    background: #252525;
}
/*
----------------------------
　SP                        
----------------------------
*/
/*●●●●●●●● header ●●●●●●●● */
header {
  padding: 12px 15px 14px;
}
header h1 {
    width: 200px;
    position: relative;
}
header h1 a {
  display: block;
}
/*　ハンバーガーボタン　*/
.hamburger {
    position: absolute;
    top: 8px;
    right: 15px;
    z-index: 999;
}
.menu_trigger {
    display: inline-block;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    cursor: pointer;
    transform: translateX(0);
    transition: transform .5s;
}
.menu_trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    color: #fff;
    transition: all .5s;
}
.menu_trigger span:nth-of-type(1) {
    top: 2px;
}
.menu_trigger span:nth-of-type(2) {
    top: 13.5px;
}
.menu_trigger span:nth-of-type(3) {
    bottom: 3px;
}
.menu-trigger.active {
    transform: translateX(-250px);
}
.menu_trigger.active span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
    background-color: #fff;
}
.menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu_trigger.active span:nth-of-type(3) {
    transform: translateY(-11px) rotate(45deg);
    background-color: #fff;
}
/*●●●●●●●● nav ●●●●●●●● */
nav {
    width: 100%;
    height: 100vh;
    background: rgba(0, 52, 102, 0.9);
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 300;
    transform: translate(350px);
    transition: all .5s;
}
nav.open {
    display: flex;
    transform: translateZ(0);
    height: 500vh;
}
nav ul {
    width: 100%;
    position: absolute;
    top: 60px;
}
nav ul li a {
    color: #fff;
    display: block;
    text-align: center;
    margin: 0 100px;
    padding: 15px 0;
    letter-spacing: 2px;
    text-decoration: none;
}
/*●●●●●●●● common_contact ●●●●●●●● */
.common_contact {
	clear: both;
    text-align: center;
}
.common_contact .telnumber {
    font-size: 2.5rem;
    letter-spacing: 1.2px;
    font-weight: bold;
}
.common_contact .telnumber::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f095";
    margin-right: 5px;
    font-size: 2.3rem;
    color: #113D97;
}
.common_contact .teltime {
    margin-bottom: 20px;
}
.common_contact .mail_btn {
    position: relative;
    height: 54px;
}
.common_contact .mail_btn a {
    display: inline-block;
    border: 1px solid #113D97;
    color: #113D97;
    margin: auto;
    padding: 15px;
    position: absolute;
    left: 20%;
    right: 20%;
    overflow: hidden;
    width: 30%;
    min-width: 240px;
}
.common_contact .mail_btn a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    width: 120%;
    height: 100%;
    background: #113D97;
    transform-origin: right top;
    transform: skewX(-30deg) scale(0, 1);
    transition: transform .3s;
}
.common_contact .mail_btn a::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-left: 10px;
}
.common_contact .mail_btn a:hover {
    color: #fff;
}
.common_contact .mail_btn a:hover:before {
    transform-origin: left top;
    transform: skewX(-30deg) scale(1, 1);
}
/*●●●●●●●● footer ●●●●●●●● */
footer {
    padding: 3em 1.5rem 0;
    color: #fff;
    font-size: 90%;
	letter-spacing: 1.2px;
    text-align: center
}
footer .logo {
    width: 200px;
    margin: 0 auto 20px;
}
footer ul li {
    margin-bottom: 10px;
}
footer .copyright {
    font-size: 80%;
    padding: 3rem 0;
}
/*●●●●●●●● page_top ●●●●●●●● */
#page_top {
  position: fixed;
  bottom: 20px;
  right: 10px;
}

#page_top a {
  background-color: rgba(255, 255, 255, 0.8);
  color: rgba(0,52,102,0.7);
  border: 1px solid rgba(0,52,102,0.6);
  text-align: center;
  text-decoration: none;
  padding: 12px 19px 10px;
  font-size: 2rem;
}

#page_top a:hover {
  background: #fff;
  color: #003466;
  border-color: #003466;
  opacity: 1;
}


/*
----------------------------
　TB                        
----------------------------
*/
@media screen and (min-width: 768px) {
}

/*
----------------------------
　PC                        
----------------------------
*/
@media screen and (min-width: 1140px) {
body {
    font-size: 1.6rem;
}
.sp {
    display: none;
}
.pc {
    display: block;
}
.sc_ttl {
    font-size: 3.5rem;
    margin-bottom: 30px;
}
a[href^="tel:"] {
    pointer-events: none;
}
section {
    max-width: 1100px;
    margin: auto;
    padding: 3em 0;
}
/*----------header----------*/
header {
  width: 25%;
    padding: 35px 20px;
}
header h1 {
  width: 100%;
  max-width: 340px;
  margin: auto;
}
/*----------nav----------*/
nav {
    display: block;
    transform: translate(0);
    background: transparent;
    height: 75px;
}
nav ul {
/*  background: rgba(255,255,255,0.8);*/
    background: #003466;
    top: 30px;
    right: 0px;
    width: 51%;
    padding-right: 15px;
}
nav ul li {
    position: relative;
}
nav ul li::after {
    font-weight: normal;
    position: absolute;
    top: 16px;
}
nav ul li:last-child::after {
    content: "";
}
nav ul li a {
    position: relative;
    color: #fff;
    width: 16.66%;
    float: left;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
padding: 10px 0;
}
  nav ul li a:hover {
    opacity: 0.8;
  }
/*
nav ul li a::after {
    position: absolute;
    bottom: 10px;
    left: 50px;
    right: 50px;
    content: '';
    width: 60px;
    height: 2px;
    background: #113d97;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}
nav ul li a:hover::after {
    transform: scale(1, 1);
}
*/
}
