@charset "UTF-8";
/*=============================================
基本設定
==============================================*/
/*基本*/
html {
  font-size: 62.5%;
  font-size: 14px;
  scroll-behavior: smooth;
}

@media only screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1080px) {
  html {
    font-size: 18px;
  }
}
body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
  font-style: normal;
  color: #000000;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/*リセット/ノーマライズ/サニタイズ*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
  font-weight: 0;
  color: #003A66;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/*----- TEL -----*/
@media only screen and (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
li {
  list-style: none;
}

p {
  line-height: 1.8rem;
  color: #003A66;
}

h1 {
  font-size: 3rem;
  font-family: "游明朝体";
}

h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #003A66;
}

h3 {
  font-size: 1.3rem;
  color: #003A66;
}

img {
  width: 100%;
}

section {
  padding: 70px 0 0 0;
  position: relative;
}

article {
  padding: 50px 0;
}

.container {
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  section {
    padding: 100px 0 0 0;
  }
  .container {
    padding: 0 40px;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1080px) {
  html {
    font-size: 62.5%;
    font-size: 16px;
    scroll-behavior: smooth;
  }
  .container {
    width: 1080px;
    margin: 0 auto;
  }
  h3 {
    font-size: 1.5rem;
  }
}
/*=============================================
ヘッダー
==============================================*/
/*----- ヘッダー -----*/
header {
  height: 60px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  height: auto;
  background-color: #DFE9F0;
}

.header_background {
  background-color: rgba(223, 233, 240, 0.8);
}

.header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.top_logo a {
  color: #003A66;
}
.top_logo a h1 {
  font-size: 1.3rem;
}

/* ハンバーガーメニュー */
.hamburger_menu {
  display: flex;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10;
}

.hamburger_menu__line {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #003A66;
  position: relative;
  transition: all 0.5s;
}
.hamburger_menu__line::before, .hamburger_menu__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #003A66;
  position: absolute;
  transition: all 0.5s;
}
.hamburger_menu__line::before {
  transform: translateY(-12px);
}
.hamburger_menu__line::after {
  transform: translateY(12px);
}

.hamburger_menu.open .hamburger_menu__line {
  background-color: transparent;
}
.hamburger_menu.open .hamburger_menu__line::before {
  transform: rotate(45deg);
  background-color: #003A66;
}
.hamburger_menu.open .hamburger_menu__line::after {
  transform: rotate(-45deg);
  background-color: #003A66;
}

/* ナビゲーション */
.nav_sp_area {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: -3000px;
  width: 100%;
  height: 100vh;
  transition: right 0.5s;
}

.nav_sp {
  box-sizing: border-box;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  right: -1000px;
  width: 100%;
  height: 100vh;
  padding: 0px 10px 0;
  background-color: #DFE9F0;
  background-size: cover;
  color: #003A66;
  text-align: left;
  transition: right 0.5s;
}

.nav_sp_wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.nav_sp_wrap ul {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}
.nav_sp_wrap li {
  list-style: none;
  margin-bottom: 20px;
  font-family: "游明朝体";
}
.nav_sp_wrap .menu_sub {
  font-size: 1rem;
  font-weight: 400;
}

.nav_sp a {
  display: inline-block;
  padding: 5px 0;
  color: #003A66;
  font-size: 26px;
  font-weight: 700;
}

.nav_sp_area.open {
  right: 0;
}
.nav_sp_area.open .nav_sp {
  right: 0;
}

.main_menu {
  display: none;
}

@media only screen and (min-width: 768px) {
  .main_menu {
    display: none;
  }
  .nav_sp_wrap li {
    margin-bottom: 30px;
  }
  .nav_sp {
    right: -850px;
  }
  .nav_sp a {
    font-size: 46px;
  }
}
@media only screen and (min-width: 1080px) {
  .hamburger_menu {
    display: none;
  }
  .nav_sp_area {
    display: none;
  }
  .main_menu {
    display: block;
  }
  .main_menu ul {
    display: flex;
  }
  .main_menu li {
    list-style: none;
    margin-right: 25px;
  }
  .main_menu a {
    color: #003A66;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    font-family: "游明朝体";
  }
  .main_menu .menu_sub {
    font-size: 0.8rem;
    font-weight: 400;
  }
}
/*=============================================
共通部品
==============================================*/
.section_title {
  margin: 20px 0;
}
.section_title .sub_title {
  font-family: "游明朝体";
  font-size: 1.1rem;
  border-bottom: 1px solid #003A66;
  margin-bottom: 10px;
  color: #003A66;
}
.section_title h2 {
  font-size: 1.3rem;
}
.section_title h2 .title_point {
  font-family: "游明朝体";
  font-size: 0.8rem;
  margin-left: 10px;
}

.section_text {
  font-size: 1rem;
  line-height: 2rem;
  color: #003A66;
}

.br_pc {
  display: none;
}

.section_image {
  margin: 20px 0;
}

.section_back_area {
  background-color: #DFE9F0;
  padding: 50px 0;
}

.section_title_back_area {
  background-color: #DFE9F0;
  padding: 20px 0;
}

@media only screen and (min-width: 768px) {
  .section_back_area {
    padding: 100px 0;
  }
  .section_title {
    display: table;
  }
  .section_title .sub_title {
    font-family: "游明朝体";
    font-size: 1.5rem;
    border-bottom: 1px solid #003A66;
    margin-bottom: 10px;
    color: #003A66;
  }
  .section_title h2 {
    font-size: 2rem;
  }
  .br_pc {
    display: block;
  }
}
/* スクロールすると要素がフェードイン */
.is-fadein {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.detail_button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  margin: 0 auto;
  padding: 10px 0px 10px;
  background-color: #003A66;
  border-radius: 15px;
  box-shadow: 5px 5px 1px #dfe9f0;
  color: white;
  font-weight: 500;
  text-align: center;
}
.detail_button:hover {
  opacity: 0.8;
}
.detail_button .butoon_image {
  margin-left: 10px;
}
.detail_button .butoon_image img {
  width: 20px;
  height: auto;
}

@media only screen and (min-width: 1080px) {
  .detail_button {
    max-width: 500px;
    font-size: 1.5rem;
    border-radius: 20px;
    padding: 15px 0px 15px;
  }
}
/*----- FAQ -----*/
.faq_wrap {
  margin: 30px 0;
}

.faq_inner {
  padding: 10px;
}

.question {
  position: relative;
  cursor: pointer;
  color: white;
  font-size: 1rem;
  background-color: #003A66;
  /*　closeというクラスがついたら形状変化　*/
}
.question::before, .question::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #003A66;
  right: 0;
}
.question::before {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.question::after {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.question.close::before {
  transform: rotate(45deg);
}
.question.close::after {
  transform: rotate(-45deg);
}

.question_text {
  color: white;
}

.answer {
  color: #003A66;
  display: none;
  font-size: 1rem;
}

.answer_text {
  color: #003A66;
}

.symbol {
  font-size: 1.5rem;
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 700;
  margin-right: 10px;
}

.faq_inner_box {
  display: flex;
  width: 93%;
}
.faq_inner_box p {
  padding: 5px 0;
}

@media only screen and (min-width: 768px) {
  .symbol {
    margin-right: 30px;
  }
}
/*----- COMPANY -----*/
#company {
  padding: 70px 0;
}

.company_wrap {
  border-bottom: 1px solid #000000;
  padding: 10px 0;
  color: #003A66;
}
.company_wrap dt {
  font-family: "游明朝体";
  margin-bottom: 10px;
}
.company_wrap dd {
  color: #000000;
  font-weight: 600;
  color: #003A66;
}
.company_wrap dd p {
  font-weight: 600;
  color: #003A66;
}
.company_wrap .font_size {
  font-weight: 600;
  font-size: 1.2rem;
}
.company_wrap a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.company_wrap a {
  color: #003A66;
}

@media only screen and (min-width: 768px) {
  #company {
    padding: 100px 0;
  }
  .company_table {
    width: 700px;
    margin: 30px auto 0;
  }
  .company_wrap {
    display: flex;
    align-items: center;
  }
  .company_wrap dt {
    width: 20%;
    font-size: 1.2rem;
  }
  .company_wrap dd {
    width: 80%;
    font-size: 1.2rem;
  }
  .company_wrap .font_size {
    font-size: 1.5rem;
  }
}
.scroll_contact_button {
  position: fixed;
  bottom: 0px;
  right: 10px;
  z-index: 9999;
}
.scroll_contact_button a {
  display: block;
  width: 350px;
}

@media only screen and (min-width: 768px) {
  .scroll_contact_button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
  }
  .scroll_contact_button a {
    display: block;
    width: 400px;
  }
}
/*=============================================
フッター
==============================================*/
footer {
  background-color: #003A66;
  color: white;
  padding: 50px 0 10px 0;
}

.footer_logo {
  text-align: center;
}
.footer_logo a {
  color: white;
  font-size: 2rem;
  font-family: "游明朝体";
}

.footer_menu {
  text-align: center;
  margin: 30px 0;
}
.footer_menu li {
  margin-top: 10px;
}
.footer_menu li a {
  color: white;
  font-family: "游明朝体";
  font-size: 1.2rem;
}

.copyright {
  text-align: center;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .footer_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 700px;
    margin: 0px auto 30px;
  }
  .footer_menu li {
    margin: 30px 20px 0 20px;
  }
}
@media only screen and (min-width: 1080px) {
  .footer_menu {
    width: 850px;
  }
  .footer_menu li {
    margin: 30px 30px 0 30px;
  }
}
/*=============================================
プライバシーポリシー
==============================================*/
.policy_list {
  margin: 30px 0 0 30px;
}
.policy_list li {
  list-style: square;
}

.policy_contact {
  margin-top: 20px;
}
.policy_contact li {
  margin-bottom: 5px;
}
.policy_contact li a {
  color: #003A66;
}

/*=============================================
プライバシーポリシー
==============================================*/
.commercial_title {
  font-family: "游明朝体";
  font-size: 2rem;
  font-weight: 700;
  color: #003A66;
  margin: 30px 0;
}

.commercial_table dl {
  margin-bottom: 30px;
}
.commercial_table dt {
  margin-bottom: 10px;
  font-weight: 700;
}

.policy_list {
  margin: 30px 0 0 30px;
}
.policy_list li {
  list-style: square;
}

.policy_contact {
  margin-top: 20px;
}
.policy_contact li {
  margin-bottom: 5px;
}
.policy_contact li a {
  color: #003A66;
}/*# sourceMappingURL=policy.css.map */