@charset "utf-8";
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosansjp/v42/-F62fjtqLzI2JPCgQBnw7HFowA.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQei0q1A.otf) format('opentype');
}
/*====================================================
# Common
====================================================*/
body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-color: #fff;
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
}
.wrapper {
  max-width: 100%;
  min-width: 1240px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .wrapper {
    min-width: 0;
  }
}
.inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    max-width: none;
    margin: 0 20px;
  }
}
a {
  color: #102343;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
  }
}
:focus {
  outline: none;
}
.bold,
strong {
  font-weight: bold;
  font-weight: 700;
}
/* disallow_scroll */
@media only screen and (max-width: 767px) {
  .disallow_scroll {
    position: fixed;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }
}
/* Hover Animation
----------------------------------------------------*/
.over {
  text-decoration: none;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .over {
    transition: opacity 0.3s ease;
    opacity: 1;
  }
  .over:hover {
    opacity: 0.6;
  }
}
/* Responsive
----------------------------------------------------*/
.pc_only {
  display: block !important;
}
.pc_only.inline {
  display: inline !important;
}
.sp_only {
  display: none !important;
}
.sp_only.inline {
  display: none !important;
}
@media (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
  .pc_only.inline {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
  .sp_only.inline {
    display: inline !important;
  }
}
/*====================================================
# Header
====================================================*/
.site_header {
  position: relative;
  z-index: 300;
  margin-bottom: 30px;
  padding-top: 30px;
  background-color: #fff;
  transition: box-shadow 0.5s ease;
}
@media only screen and (max-width: 767px) {
  .site_header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px;
    padding: 20px 20px 0;
  }
  .float .site_header {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  }
}
.site_header .logo {
  display: block;
  width: 310px;
  height: 140px;
  margin: 0 auto 30px;
}
.site_header .logo img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .site_header .logo {
    width: 200px;
    max-width: 100%;
    height: 90px;
  }
}
.site_header .menu_btn {
  display: none;
}
.site_header .gnavi_container {
  width: 100%;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.site_header .gnavi_container .menu {
  display: flex;
  justify-content: center;
}
.site_header .gnavi_container .menu li a {
  display: block;
  margin: 10px;
  padding: 10px 20px;
  border-radius: 20px;
  color: #000;
  font-weight: bold;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .site_header .gnavi_container .menu li a {
    transition: background-color 0.3s ease;
  }
  .site_header .gnavi_container .menu li a:hover {
    background-color: #EAEEF5;
  }
}
@media only screen and (max-width: 767px) {
  .site_header .gnavi_container {
    display: none;
  }
}
.site_header .btn_menu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
}
.site_header .btn_menu img {
  width: 100%;
  height: auto;
}
.site_header .btn_menu .off {
  display: block;
}
.site_header .btn_menu .on {
  position: absolute;
  display: none;
  top: 0;
}
.site_header .btn_menu.active .off {
  display: none;
}
.site_header .btn_menu.active .on {
  display: block;
}
@media only screen and (max-width: 767px) {
  .site_header .btn_menu {
    display: block;
  }
}
.dnavi_container {
  display: none;
  position: fixed;
  z-index: 200;
  top: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .dnavi_container {
    display: block;
  }
}
.dnavi {
  display: none;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: auto;
}
.dnavi .menu {
  margin: 0 20px;
}
.dnavi .menu li {
  margin: 10px 0;
  text-align: center;
}
.dnavi .menu li a {
  display: block;
  padding: 5px 0;
  font-size: 18px;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}
@supports (-webkit-touch-callout: none) {
  .dnavi {
    height: -webkit-fill-available;
  }
}
@media only screen and (max-width: 767px) {
  .dnavi .menu {
    padding: 120px 0 20px;
  }
}
/*====================================================
# Content
====================================================*/
.content {
  position: relative;
  min-height: 90vh;
}
@media only screen and (max-width: 767px) {
  .content {
    padding-top: 120px;
  }
}
.main {
  padding: 0 0 100px;
}
@media only screen and (max-width: 767px) {
  .main {
    padding: 10px 0 50px;
  }
}
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 240px;
  padding: 15px;
  background-color: #102343;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.btn:hover {
  text-decoration: none;
}
.btn.arrow,
.btn.right {
  padding: 15px 25px;
}
.btn.arrow::after,
.btn.right::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background-image: url(../images/img_btn_arrow_r.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.btn.right::after {
  right: 0;
  left: auto;
  background-image: url(../images/img_btn_arrow_r.png);
}
.btn.left::after {
  right: auto;
  left: 0;
  background-image: url(../images/img_btn_arrow_l.png);
}
@media (hover: hover) and (pointer: fine) {
  .btn {
    transition: opacity 0.3s ease;
  }
  .btn:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    min-width: 170px;
    padding: 14px;
    font-size: 15px;
  }
  .btn.arrow,
  .btn.next {
    padding: 14px 20px;
  }
  .btn.arrow::after,
  .btn.next::after {
    width: 20px;
    height: 20px;
  }
}
.btn_wrap {
  display: flex;
  justify-content: center;
  margin: 30px auto 0;
}
.btn_wrap .btn {
  margin: 0 20px 20px;
}
@media only screen and (max-width: 767px) {
  .btn_wrap {
    margin-top: 20px;
  }
  .btn_wrap .btn {
    max-width: 48%;
    margin: 0 1% 10px;
  }
}
.image {
  width: 100%;
}
.image img {
  width: 100%;
  height: auto;
}
/* anchor */
.anchor {
  position: absolute;
  display: block;
}
/* error */
.error_message {
  text-align: center;
}
/*====================================================
# Footer
====================================================*/
.site_footer {
  position: relative;
  padding: 40px 0 30px;
  background-color: #102343;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .site_footer {
    padding: 20px 0 30px;
  }
}
.site_footer .fnavi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 180px 40px;
  background: url(../images/bg_footer_dots.png) left bottom repeat-x;
  background-size: 4px 1px;
}
.site_footer .fnavi .bullet::before {
  content: "・";
}
.site_footer .fnavi a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.site_footer .fnavi .instagram a {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  font-weight: 700;
}
.site_footer .fnavi .instagram a .icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 18px;
  background: url(../images/ico_sns_instagram.png) no-repeat;
  background-size: contain;
}
@media (hover: hover) and (pointer: fine) {
  .site_footer .fnavi a:hover {
    text-decoration: underline;
  }
}
@media only screen and (max-width: 767px) {
  .site_footer .fnavi {
    display: block;
    margin-bottom: 20px;
    padding: 0 0 20px;
  }
  .site_footer .fnavi p + p {
    margin-top: 10px;
  }
  .site_footer .fnavi a {
    font-size: 14px;
  }
  .site_footer .fnavi .instagram {
    margin-bottom: 12px;
  }
  .site_footer .fnavi .instagram a {
    font-size: 16px;
  }
  .site_footer .fnavi .instagram a .icon {
    width: 26px;
    height: 26px;
    margin-right: 13px;
  }
}
.site_footer .company {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .site_footer .company {
    margin-bottom: 15px;
    font-size: 13px;
  }
}
.site_footer .copyright {
  text-align: center;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .site_footer .copyright {
    font-size: 12px;
  }
}
/* PageTop */
.pagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #102343 url(../images/img_pagetop.png) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .pagetop {
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
}
/*====================================================
 Media Print
====================================================*/
@media print {
  .pagetop {
    display: none !important;
  }
}
/*====================================================
 ***
====================================================*/
