@charset "UTF-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;900&display=swap');*/
/* ==========================================================================
Typography
========================================================================== */
/* 
font-family: "游明朝体", "Yu Mincho", serif;
font-family: "游ゴシック体", "Yu Gothic", sans-serif;
*/
h2,
h3,
h4,
h5,
h6 {
  margin-top: 15px;
  /*margin-bottom: 20px;*/
}

h1 {
  margin: 0;
  padding: 0;
  font-size: 0;
}

h2 {
  color: #014da7;
  font-size: 48px;
  text-align: center;
  margin: 10px 0 40px;
}
h2 span {
  color: #333;
  display: block;
  font-size: 24px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 36px;
  }
  h2 span {
    font-size: 18px;
  }
}

main {
  margin: 0 auto;
}

section {
  padding-top: 60px;
}
section .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1230px) {
  section .inner {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 600px) {
  section {
    padding-top: 60px;
  }
}

/* ==========================================================================
	General Styles
========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  margin: 0 auto;
  padding-top: 120px;
  font-family: "游ゴシック体", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 600px) {
  body {
    padding-top: 50px;
  }
}

p {
  text-align: justify;
  letter-spacing: initial;
  font-size: 16px;
}

dt,
dd,
li {
  text-align: justify;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  dt,
  dd,
  li {
    font-size: 14px;
  }
}

.section__lead {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section__lead {
    text-align: justify;
  }
  .section__lead br {
    display: none;
  }
}

a {
  text-decoration: none;
}

a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 200px;
  margin: 0 0 20px;
  padding: 10px 20px;
  background-color: #013a80;
  color: #FFF;
  font-size: 1rem;
}
a.btn::after {
  position: absolute;
  right: 0.5em;
  transform: translateY(-30%);
  transform-origin: left;
  width: 2em;
  height: 0.5em;
  background-color: #FFF;
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: "";
  transition: transform 0.3s;
}
a.btn:hover::after {
  transform: translateY(-30%) translateX(7px);
}

small {
  font-size: 80%;
}

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

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

@media screen and (max-width: 768px) {
  p {
    font-size: 14px;
  }
  a.btn {
    font-size: 14px;
  }
}
/* ==========================================================================
	$Header
========================================================================== */
#header {
  background-color: #FFF;
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 999;
}

/* ==========================================================================
	$menu
========================================================================== */
.logo {
  max-width: 1200px;
  width: auto;
  height: 50px;
  margin: 5px auto;
}
.logo img {
  width: auto;
  height: 100%;
}

nav {
  width: 100%;
  height: 0px;
  position: relative;
  border-bottom: 1px solid #FFF;
}

.drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/*ナビゲーション部分*/
.menu {
  text-align: center;
  transition: 0.5s ease;
  /*滑らかに表示*/
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
}
.menu li {
  background-color: #e2e2e2;
  list-style: none;
  border-bottom: 1px solid #FFF;
}
.menu a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.menu a::before {
  content: "";
  background-color: transparent;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.menu a:hover {
  color: #FFF;
  background-color: #013a80;
  transition: all 0.3s;
}
.menu a:hover::before {
  background-color: #ffb401;
  transition: all 0.3s;
}

/*OPEN時の動き*/
.menu.open {
  transform: translateX(0%);
  /*メニューを元の位置へ戻す*/
}

/*トグルボタンのスタイルを指定*/
.Toggle {
  display: block;
  position: fixed;
  /* bodyに対しての絶対位置指定 */
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 999;
  top: 13px;
  right: 15px;
}
.Toggle span {
  display: block;
  position: absolute;
  width: 35px;
  border-bottom: solid 3px #333;
  /*変化の速度を指定*/
  /*変化の速度を指定*/
  transition: 0.35s ease-in-out;
  /*変化の速度を指定*/
  /*各ボーダー少しずつずらす*/
}
.Toggle span:nth-child(1) {
  top: 5px;
}
.Toggle span:nth-child(2) {
  top: 15px;
}
.Toggle span:nth-child(3) {
  top: 26px;
}

.Toggle.active span {
  /* 2番目と3番目のspanを45度に */
}
.Toggle.active span:nth-child(1) {
  top: 18px;
  /* 1番目のspanをマイナス45度に */
  transform: rotate(-45deg);
}
.Toggle.active span:nth-child(2), .Toggle.active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
}

/*------------ ↓↓↓↓↓ PC版 ↓↓↓↓↓ --------------------------*/
@media screen and (min-width: 601px) {
  .Toggle {
    display: none;
  }
  nav {
    display: flex;
    height: 60px;
    background-color: #e2e2e2;
  }
  .menu {
    width: 100%;
    background-color: transparent;
    margin: 0 10px;
    transform: translateX(0);
  }
  .menu ul {
    max-width: 1200px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu li {
    width: 20%;
    height: 100%;
    border-left: 1px solid #FFF;
  }
  .menu li:last-child {
    border-right: 1px solid #FFF;
  }
  .menu li a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  .menu li a {
    font-size: 16px;
  }
}
/* ==========================================================================
	$page top
========================================================================== */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #333;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.pagetop .pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: translateY(20%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    height: 40px;
    width: 40px;
    right: 10px;
    bottom: 10px;
  }
}

/* ==========================================================================
	$Footer
========================================================================== */
.footer {
  text-align: center;
  color: #FFF;
  background-color: #013a80;
  padding: 20px;
  /*height: 50px;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
}/*# sourceMappingURL=style.css.map */