@charset "UTF-8";
/* Googleフォント */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&display=swap");
/* flexbox @mixin */
/* メディアクエリ @mixin */
/* Telリンク制御 */
@media (min-width: 767.98px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* カラーマップ */
/*
	* @Block: Base
	* @Description: 
*/
/* リセット */
fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

main, article, aside, figure, footer, header, hgroup, nav, section, main {
  display: block;
  margin: 0;
  padding: 0;
}

button, fieldset, form, input, label, legend, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: none;
  outline: none;
}

a:focus, *:focus {
  outline: none;
}

input[type=button], input[type=submit] {
  -webkit-appearance: none;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td, img, a, figure {
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Base Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: auto;
  height: auto;
  background: #fff;
  z-index: 0;
  color: #232323;
  font-size: 1rem;
  font-family: "Noto Sans", sans-serif, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 1px;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.main__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  padding: 0 2%;
}

.main__inner-narrow {
  width: 100%;
  max-width: 1008px;
  margin: 0 auto;
  position: relative;
  padding: 0 1%;
}

.main__inner-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 0 2%;
}

h1:not(#top_h1) {
  font-family: "Noto Serif JP", serif;
  font-size: 31px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

h1 + p {
  text-align: center;
  margin-top: 8px;
}
h1 + p span {
  font-family: "Cabin", sans-serif;
  color: #fff;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  border: 1px solid #fff;
  padding: 6px 20px;
}

.hedding-item {
  position: relative;
  text-align: center;
  margin: 0 auto 40px;
  width: 100%;
  padding: 20px 0;
}
.hedding-item::before, .hedding-item::after {
  content: "";
  display: block;
  width: 280px;
  height: 1px;
  background: #232323;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.hedding-item::before {
  top: 0;
}
.hedding-item::after {
  bottom: 0;
}

h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #232323;
}

h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  z-index: 0;
  padding-left: 12px;
  color: #232323;
  border-left: 4px solid #e0a232;
}
h3:nth-of-type(n+2) {
  margin-top: 60px;
}

section {
  padding: 80px 0;
}
section:nth-of-type(even) {
  background: #fffcf8;
}
section#bk {
  padding: 80px 0 0;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.ofcimage {
  -o-object-fit: cover;
     object-fit: cover;
}

.txt_indent {
  padding-left: 16px;
  text-indent: -16px;
}

/* mmenu */
.sp-menu__nav {
  visibility: hidden;
}

.mm-menu, .mm-menu_offcanvas {
  top: 0 !important;
  z-index: 9999 !important;
  visibility: visible !important;
}

.mm-wrapper__blocker {
  z-index: 9998 !important;
}

.mm-menu .mm-navbar, .mm-menu .mm-panels, .mm-menu .mm-listview, .mm-menu .mm-listitem {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.mm-menu, .mm-menu_offcanvas {
  opacity: 0;
  transition: opacity 0.2s ease;
}

html.is-mmenu-opening .mm-menu, html.is-mmenu-opening .mm-menu_offcanvas, html.is-mmenu-open .mm-menu, html.is-mmenu-open .mm-menu_offcanvas {
  opacity: 1;
}

/* Animation */
.fadein {
  opacity: 0;
  transition: opacity 0.8s;
}

.scrollin {
  opacity: 1;
}

/*ユーティリティクラス*/
.u-mt__20 {
  margin-top: 20px;
}

.u-mt__40 {
  margin-top: 40px;
}

.u-mt__80 {
  margin-top: 80px;
}

.u-mb__20 {
  margin-bottom: 20px;
}

.u-mb__40 {
  margin-bottom: 40px;
}

.u-mb__80 {
  margin-bottom: 80px;
}

/* Pc */
@media screen and (min-width: 768px) {
  .u-hide-pc {
    display: none !important;
  }
}
/* Tab */
@media (min-width: 768px) and (max-width: 1024px) {
  .nav-container.u-hide-mobile {
    display: none !important;
  }
  .sp-menu.u-hide-pc {
    display: block !important;
  }
  .main__inner, .main__inner-narrow, .main__inner-wide {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
  .sp-menu {
    position: absolute;
    top: 12px;
    right: 46px;
  }
  .sp-menu i {
    font-size: 30px;
    color: #fff;
  }
  .mm-listitem > a, .mm-listitem > span {
    font-weight: bold;
    padding: 20px 10px 20px 20px !important;
    color: #232323 !important;
  }
  .mm-listitem:nth-child(5) > a {
    background: #e0a232;
    color: #FFF !important;
    width: 80%;
    margin: 0 auto;
    border-radius: 8px;
  }
  .mm-listitem:nth-child(5), .mm-listitem:nth-child(7) {
    margin-top: 20px;
  }
  .mm-listitem:nth-child(5)::after, .mm-listitem:nth-child(6)::after {
    border: none;
  }
  .mm-listitem:nth-child(6) > a {
    background: #fd8399;
    color: #FFF !important;
    width: 80%;
    margin: 10px auto 0;
    border-radius: 8px;
  }
  .mm-listitem:nth-child(7) > a, .mm-listitem:nth-child(8) > a {
    width: 90%;
    margin: 10px auto 0;
  }
  .mm-listitem:nth-child(7) > a i, .mm-listitem:nth-child(8) > a i {
    color: #fa863e;
  }
}
/* Sp landscape */
@media (max-height: 480px) and (orientation: landscape) {
  h1:not(#top_h1) {
    font-size: 28px;
  }
  h3 {
    font-size: 21px;
  }
  h3 + p {
    line-height: 30px;
  }
  section {
    padding: 60px 0;
  }
  section:last-of-type {
    padding: 40px 0 120px;
  }
  section#bk {
    padding: 60px 0 0;
  }
  .u-hide-pc {
    display: block !important;
  }
  .u-hide-mobile {
    display: none !important;
  }
  .main__inner, .main__inner-narrow, .main__inner-wide {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
  .sp-menu {
    position: absolute;
    top: 12px;
    right: 46px;
  }
  .sp-menu i {
    font-size: 30px;
    color: #fff;
  }
  .mm-listitem > a, .mm-listitem > span {
    font-weight: bold;
    padding: 20px 10px 20px 20px !important;
    color: #232323 !important;
  }
  .mm-listitem:nth-child(5) > a {
    background: #e0a232;
    color: #FFF !important;
    width: 80%;
    margin: 0 auto;
    border-radius: 8px;
  }
  .mm-listitem:nth-child(5), .mm-listitem:nth-child(7) {
    margin-top: 20px;
  }
  .mm-listitem:nth-child(5)::after, .mm-listitem:nth-child(6)::after {
    border: none;
  }
  .mm-listitem:nth-child(6) > a {
    background: #fd8399;
    color: #FFF !important;
    width: 80%;
    margin: 10px auto 0;
    border-radius: 8px;
  }
  .mm-listitem:nth-child(7) > a, .mm-listitem:nth-child(8) > a {
    width: 90%;
    margin: 10px auto 0;
  }
  .mm-listitem:nth-child(7) > a i, .mm-listitem:nth-child(8) > a i {
    color: #fa863e;
  }
}
/* Sp */
@media screen and (max-width: 767.98px) {
  h1:not(#top_h1) {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 21px;
  }
  h3:nth-of-type(n+2) {
    margin-top: 40px;
  }
  h3 + p {
    line-height: 30px;
  }
  section {
    padding: 60px 0;
  }
  section:last-of-type {
    padding: 40px 0 120px;
  }
  section#bk {
    padding: 60px 0 0;
  }
  .u-hide-mobile {
    display: none !important;
  }
  .main__inner, .main__inner-narrow, .main__inner-wide {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
  .sp-menu {
    position: absolute;
    top: 16px;
    right: 16px;
  }
  .sp-menu i {
    font-size: 30px;
    color: #fff;
  }
  .mm-listitem > a, .mm-listitem > span {
    font-weight: bold;
    padding: 20px 10px 20px 20px !important;
    color: #232323 !important;
  }
  .mm-listitem:nth-child(5) > a {
    background: #e0a232;
    color: #FFF !important;
    width: 80%;
    margin: 0 auto;
    border-radius: 8px;
  }
  .mm-listitem:nth-child(5), .mm-listitem:nth-child(7) {
    margin-top: 20px;
  }
  .mm-listitem:nth-child(5)::after, .mm-listitem:nth-child(6)::after {
    border: none;
  }
  .mm-listitem:nth-child(6) > a {
    background: #fd8399;
    color: #FFF !important;
    width: 80%;
    margin: 10px auto 0;
    border-radius: 8px;
  }
  .mm-listitem:nth-child(7) > a, .mm-listitem:nth-child(8) > a {
    width: 90%;
    margin: 10px auto 0;
  }
  .mm-listitem:nth-child(7) > a i, .mm-listitem:nth-child(8) > a i {
    color: #fa863e;
  }
}
/* Print */
@media print {
  .u-hide-pc {
    display: none !important;
  }
}
/*
	* @Block: Serch
	* @Description: 検索
*/
/*検索窓*/
.serch_box {
  width: 300px;
  position: relative;
  margin: 20px 40px;
}
.serch_box::before {
  font-family: "Font Awesome 5 free";
  content: "\f002";
  padding-right: 5px;
  font-weight: 900;
  color: #232323;
  position: absolute;
  top: 10px;
  left: 20px;
}
.serch_box #s {
  border-radius: 30px;
  padding: 10px 10px 10px 60px;
  border: 1px solid #ccc;
}
.serch_box #searchsubmit {
  position: absolute;
  top: 5px;
  left: 27px;
  margin: 0;
  width: 30px;
  background: none;
  border: none;
}

/*検索ページ*/
.search_wrap {
  width: 100%;
  padding: 80px 0;
}
.search_wrap ul {
  margin: 40px 26px;
}
.search_wrap ul li {
  margin-bottom: 16px;
  border-bottom: 1px dotted #4d4d4d;
  padding: 4px 4px 8px;
}
.search_wrap ul li p {
  margin-bottom: 8px;
}
.search_wrap ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #4098e5;
  font-weight: bold;
}
.search_wrap ul li a::before {
  display: inline-block;
  font-family: "Font Awesome 5 free";
  content: "\f105";
  font-weight: 900;
  color: #4098e5;
  margin-right: 8px;
}
.search_wrap ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767.98px) {
  .serch_box {
    width: 90%;
    margin: 60px auto !important;
  }
}
/*
	* @Block: Header
	* @Description: 
*/
.global-header {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 4%;
  margin: 0 auto;
  max-width: 1440px;
  min-width: 1120px;
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 2;
}
.global-header__logo {
  max-width: 200px;
  line-height: 0;
}
.global-header__logo #top_h1 {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.global-header__logo a {
  display: block;
}
.global-header__logo img {
  display: block;
  vertical-align: -20%;
}
.global-header__nav {
  width: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 2%;
}
.global-header__nav nav {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 2%;
  border-bottom: 1px solid #fff;
  padding-bottom: 12px;
  min-width: 600px;
}
.global-header__nav nav a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-left: 50px;
  transition: 0.2s;
  text-decoration: none;
}
.global-header__nav nav a:first-of-type {
  margin-left: 0;
}
.global-header__nav nav a:last-of-type {
  background: #e0a232;
  padding: 4px 40px;
  border: 1px solid #e0a232;
}
.global-header__nav nav a:hover:last-of-type {
  background: #fff;
  color: #e0a232;
  transition: 0.2s;
}

.cover-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 80px;
  padding: 0 3%;
  margin: 0 auto;
  min-width: 1120px;
  position: fixed;
  top: -100px;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cover-header__logo {
  max-width: 200px;
  line-height: 0;
}
.cover-header__logo #top_h1 {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.cover-header__logo a {
  display: block;
}
.cover-header__logo img {
  display: block;
  vertical-align: -20%;
}
.cover-header__nav {
  width: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 2%;
}
.cover-header__nav nav {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 2%;
  border-bottom: 1px solid #fff;
  padding-bottom: 12px;
  min-width: 600px;
}
.cover-header__nav nav a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-left: 50px;
  transition: 0.2s;
  text-decoration: none;
}
.cover-header__nav nav a:first-of-type {
  margin-left: 0;
}
.cover-header__nav nav a:last-of-type {
  background: #e0a232;
  padding: 4px 40px;
  border: 1px solid #e0a232;
}
.cover-header__nav nav a:hover:last-of-type {
  background: #fff;
  color: #e0a232;
  transition: 0.2s;
}

/* mmenuオープン中は通常ヘッダーを隠す */
html.mm-wrapper_opened .global-header, html.mm-wrapper_opened .cover-header {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .global-header {
    height: 60px;
    min-width: 100%;
  }
  .global-header__nav nav, .cover-header {
    display: none;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .global-header {
    height: 60px;
    min-width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .global-header {
    width: 100%;
    height: 60px;
    min-width: 100%;
    padding: 0 2%;
    position: fixed;
    top: 0;
    transition: 0.2s;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
  }
  .global-header .global-header__logo {
    width: 40%;
    max-width: 224px;
  }
  .global-header.hide {
    transform: translateY(-100%);
  }
  .global-header .global-header__logo img {
    vertical-align: -10%;
  }
}
/*
	* @Block: Footer
	* @Description: 
*/
.footer-contact {
  padding: 80px 0;
}
.footer-contact__item {
  align-items: center !important;
}
.footer-contact__item p {
  width: 70%;
}
.footer-contact__item .hedding-item {
  margin: 0 auto;
}
.footer-contact__item .phone-item {
  margin-left: 4%;
}
.footer-contact__item .phone-item a {
  text-decoration: none;
  font-family: "Cabin", sans-serif;
  font-size: 48px;
  color: #e0a232;
  font-weight: 500;
}
.footer-contact__item .phone-item i {
  font-size: 41px;
  margin-right: 12px;
}
.footer-contact__item .phone-item span {
  display: block;
  text-align: right;
  font-size: 14px;
  color: #232323;
}
.footer-contact__item .c-btn--large {
  margin: 0;
}
.footer-contact__item:nth-of-type(2) {
  margin: 40px 0 0;
}

.global-footer {
  width: 100%;
  background: #1e52a5;
  padding: 40px 2%;
}

.footer-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 2%;
  max-width: 1440px;
  margin: 0 auto;
}
.footer-container figure {
  max-width: 250px;
}
.footer-container address {
  color: #fff;
}
.footer-container address a {
  text-decoration: none;
  color: #fff;
}

.copyright {
  max-width: 1440px;
  margin: 0 auto;
  text-align: right;
  color: #fff;
}

.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.page-top a {
  display: block;
  text-decoration: none;
  background: #1e52a5;
  color: #FFF;
  text-align: center;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  opacity: 0.5;
  transition: all 0.5s ease;
  padding: 16px 0;
}
.page-top a:hover {
  opacity: 1;
  transition: all 0.5s ease;
}
.page-top a i {
  display: block;
  font-size: 28px;
}

.copyright_container {
  width: 100%;
  text-align: center;
  background: #000;
  font-size: 14px;
  color: #FFF;
  padding: 14px 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer-contact__item p {
    width: 100%;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .footer-contact__item .c-btn--large {
    width: 40%;
  }
}
@media screen and (max-width: 767.98px) {
  .footer-contact {
    padding: 60px 0 120px;
  }
  .footer-contact__item p {
    width: 100%;
  }
  .footer-contact__item .phone-item {
    margin-left: 0;
  }
  .footer-contact__item .phone-item a {
    font-size: 10vw;
  }
  .footer-contact__item .phone-item i {
    font-size: 31px;
  }
  .footer-contact__item.content-2col {
    justify-content: center;
  }
  .footer-container {
    justify-content: center;
  }
  .footer-container address {
    text-align: center;
  }
  .copyright {
    text-align: center;
    margin-top: 24px;
  }
}
/*404*/
.global-header-404 {
  background: #1e52a5;
  position: static;
  max-width: 100%;
}

.not-found__inner, .not_found_container {
  width: 100%;
  padding: 80px 0;
}
.not-found__inner > p, .not_found_container > p {
  font-size: 16px;
  color: #333;
  padding: 30px 0;
}
.not-found__inner > p span, .not_found_container > p span {
  color: #de0515;
  display: block;
  word-wrap: break-word;
}
.not-found__inner h3, .not_found_container h3 {
  font-size: 18px;
  margin-bottom: -14px;
}

/*
	* @Block: Components
	* @Description: 共通パーツ
*/
/* ページャー */
.pager {
  padding: 0;
  width: 100%;
  position: relative;
  text-align: center;
}
.pager .page-numbers {
  display: inline-block;
  margin: 12px 0 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  padding: 0;
  font-size: 16px;
  border: 2px #1e52a5 solid;
  color: #1e52a5;
  background: #fff;
  transition: 0.3s;
}
.pager .page-numbers:hover {
  background: #FFF;
  border: 2px #0E6B9E solid;
  color: #FF7300;
  opacity: 1;
  transition: 0.3s;
}
.pager a {
  text-decoration: none;
}
.pager .current {
  background: #1e52a5;
  border: 2px #1e52a5 solid;
  color: #FFF;
}

/* parts */
.common-parts table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.common-parts table tr {
  border-bottom: 1px solid #ddd;
}
.common-parts table tr:last-of-type {
  border-bottom: none;
}
.common-parts table th a, .common-parts table td a {
  text-decoration: none;
  color: inherit;
}
.common-parts table th {
  width: 30%;
  padding: 24px 0;
}
.common-parts table td {
  width: 70%;
  padding: 24px 0;
}
.common-parts ul {
  width: 100%;
  margin-top: 40px;
}
.common-parts ul li {
  list-style: disc;
  margin: 8px 0 8px 24px;
}
.common-parts .history_container {
  position: relative;
}
.common-parts .history_container .history_item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.common-parts .history_container .history_item p {
  font-size: 16px;
}
.common-parts .history_container .history_item p:first-of-type {
  width: 20%;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-right: 40px;
  text-align: right;
}
.common-parts .history_container .history_item p:first-of-type::after {
  content: "";
  width: 11px;
  height: 11px;
  background: #e0a232;
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  right: -9px;
}
.common-parts .history_container .history_item p:last-of-type {
  width: 80%;
  border-left: 1.5px solid #4d4d4d;
  padding: 0 0px 40px 50px;
  text-align: left;
}
.common-parts .history_container .history_item:last-of-type p:last-of-type {
  border: none;
}

.c-btn--large {
  overflow: hidden;
  z-index: 1;
  display: block;
  position: relative;
  width: 540px;
  margin: 40px auto 0;
  background: #1e52a5;
  padding: 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  font-size: 18px;
}
.c-btn--large i {
  font-size: 21px;
}
.c-btn--large::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgb(37.8461538462, 103.4461538462, 208.1538461538);
  transition: all 0.2s;
  z-index: -1;
}
.c-btn--large:hover::before {
  width: 100%;
}

.c-btn--small {
  overflow: hidden;
  z-index: 1;
  display: block;
  position: relative;
  width: 420px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid #1e52a5;
  padding: 20px;
  color: #1e52a5;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  font-size: 18px;
}
.c-btn--small i {
  font-size: 21px;
}
.c-btn--small::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgb(37.8461538462, 103.4461538462, 208.1538461538);
  transition: all 0.2s;
  z-index: -1;
}
.c-btn--small:hover {
  color: #FFF;
}
.c-btn--small:hover::before {
  width: 100%;
}

.content-2col {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px 2%;
}
.content-2col .content-2col__item, .content-2col figure {
  width: 48.21%;
}

.content-3col {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px 2%;
}
.content-3col .content-3col__item {
  width: 32%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .c-btn--large, .c-btn--small {
    width: 48%;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .c-btn--large, .c-btn--small {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .c-btn--large, .c-btn--small {
    width: 100%;
  }
  .content-2col .content-2col__item, .content-2col figure {
    width: 100%;
  }
  .content-3col .content-3col__item {
    width: 100%;
  }
  .content__table tbody th, .content__table tbody td {
    display: block;
    width: 100%;
  }
  .content__table tbody th {
    padding: 16px 0 8px;
  }
  .content__table tbody td {
    padding: 8px 0 16px;
  }
  .common-parts table th {
    width: 100%;
    display: block;
    padding: 16px 0 8px;
  }
  .common-parts table td {
    width: 100%;
    display: block;
    padding: 8px 0 16px;
  }
  .common-parts .history_container .history_item p:first-of-type {
    width: 40%;
    font-size: 16px;
    padding-right: 20px;
  }
  .common-parts .history_container .history_item p:last-of-type {
    width: 60%;
    padding: 0 0px 20px 30px;
  }
}
/*
	* @Block: News
	* @Description: お知らせ
*/
/* エディター */
.editor_area {
  width: 100%;
  margin: 20px 0;
}
.editor_area img {
  max-width: 100%;
  margin: 20px 0;
  border: none !important;
  width: auto;
  height: auto; /*min-width:50%;*/
}
.editor_area .size-thumbnail {
  width: 32% !important;
  margin-right: 16px !important;
}
.editor_area .size-thumbnail:nth-of-type(3n) {
  margin-right: 0 !important;
}
.editor_area .size-medium {
  width: 49% !important;
  margin-right: 15px !important;
}
.editor_area .size-medium:nth-of-type(2n) {
  margin-right: 0 !important;
}
.editor_area .size-large {
  width: 100% !important;
}
.editor_area p {
  margin-top: 16px;
  font-size: 16px;
  color: #444;
  word-break: break-all;
}
.editor_area strong {
  font-weight: 700;
}
.editor_area em {
  font-style: italic;
}
.editor_area ul {
  margin-top: 24px;
  list-style: disc;
  padding-left: 4.2rem;
}
.editor_area ul li {
  margin-top: 8px;
}
.editor_area ul li:first-child {
  margin-top: 0;
}
.editor_area ol {
  margin-top: 24px;
  list-style: decimal;
  padding-left: 4.2rem;
}
.editor_area ol li {
  margin-top: 8px;
}
.editor_area ol li:first-child {
  margin-top: 0;
}
.editor_area hr {
  border-top: 1px #cccccc dotted;
  margin-top: 32px;
  margin-bottom: 32px;
}
.editor_area > h4 {
  margin: 12px 0;
  color: #444;
  font-size: 16px;
}
.editor_area h3 + p, .editor_area h3 + ul, .editor_area h3 + ol {
  margin-top: 10px;
}
.editor_area h4 + p, .editor_area h4 + ul, .editor_area h4 + ol {
  margin-top: 10px;
}
.editor_area a { /*text-decoration: none;*/
  color: #DE0515;
  font-size: 16px;
  margin: 10px 0;
}
.editor_area blockquote {
  position: relative;
  padding: 30px 15px 8px 15px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
  width: 80%;
  margin: 30px auto;
}
.editor_area blockquote:before {
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 15px;
  content: "\f10d";
  font-family: FontAwesome;
  color: #cfcfcf;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}
.editor_area blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}
.editor_area blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
.editor_area table {
  border: 1px solid #333;
  max-width: 100%;
  padding: 4px;
  box-sizing: border-box;
  border-collapse: collapse;
}
.editor_area table tr {
  border-bottom: 1px solid #333;
}
.editor_area table td {
  border-right: 1px solid #333;
  padding: 6px;
  box-sizing: border-box; /*&:last-of-type {border:none;}*/
}

@media screen and (max-width: 767.98px) {
  .editor_area .size-thumbnail {
    width: 30% !important;
  }
  .editor_area .size-medium {
    width: 47.78% !important;
    margin: 0 0 10px !important;
  }
  .editor_area {
    padding-bottom: 40px;
  }
}
/*
	* @Block: home
	* @Description: トップページ
*/
.cover-wrap {
  width: 100%;
  background: linear-gradient(180deg, #fff 0%, #fff 30%, #1e52a5 30%, #1e52a5 100%);
  padding: 40px 0;
  position: relative;
  z-index: 0;
  min-width: 1120px;
}
.cover-wrap__bk {
  width: 96%;
  height: 600px;
  max-width: 1800px;
  border-radius: 40px;
  background: url("../images/home/top-cover.webp") center/cover no-repeat;
  margin: 0 auto;
  padding: 210px 0;
  position: relative;
}
.cover-wrap__bk--lead {
  position: absolute;
  top: 38%;
  right: 4%;
}
.cover-wrap__bk--lead p {
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 24px;
}
.cover-wrap__bk--lead span {
  font-family: "Cabin", sans-serif;
  font-size: 25px;
  color: #fff;
  font-weight: bold;
  font-style: italic;
  padding: 10px 20px;
  border: 1px solid #fff;
}
.cover-wrap__lead {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 60px 0 0;
}
.cover-wrap__lead figure {
  width: 48.21%;
}
.cover-wrap__lead--text {
  width: 48.21%;
}
.cover-wrap__lead--text span {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}
.cover-wrap__lead--text p {
  font-size: 18px;
  color: #fff;
  line-height: 36px;
  margin-top: 24px;
}

.top-products {
  padding: 80px 0;
}
.top-products .hedding-item + p {
  width: 70%;
  text-align: center;
  margin: 0 auto 60px;
}
.top-products__item p:first-of-type {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 8px 0 16px;
  gap: 0 4%;
}
.top-products__item p:first-of-type span {
  font-family: "Noto Serif JP", serif;
  line-height: 31px;
  font-size: 21px;
  color: #232323;
  font-weight: bold;
}
.top-products__item p:first-of-type span:first-of-type {
  font-family: "Cabin", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #e0a232;
  font-size: 38px;
  border: 1px solid #e0a232;
  width: 60px;
  height: 60px;
  line-height: 60px;
  padding-left: 1%;
}

.top-about {
  padding: 80px 0;
  background: #fffcf8;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .cover-wrap {
    min-width: 100%;
  }
  .cover-wrap__bk {
    height: 460px;
    padding: 180px 0;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .cover-wrap {
    min-width: 100%;
    padding: 20px 0 40px;
  }
  .cover-wrap__lead--text span {
    font-size: 22px;
  }
  .cover-wrap__lead--text p {
    font-size: 16px;
    line-height: 28px;
  }
  .cover-wrap__bk {
    height: 340px;
    padding: 130px 0;
  }
  .cover-wrap__bk p {
    font-size: 38px;
  }
  .cover-wrap__bk span {
    font-size: 21px;
  }
  .top-products .hedding-item + p {
    width: 100%;
  }
  .top-products__item p:first-of-type span {
    font-size: 19px;
  }
}
@media (max-width: 767.98px) {
  .cover-wrap {
    min-width: 100%;
    padding: 0;
    background: #1e52a5;
  }
  .cover-wrap__bk {
    width: 100%;
    height: 330px;
    padding: 120px 0 0;
    border-radius: 0;
  }
  .cover-wrap__bk p {
    font-size: 28px;
    line-height: 45px;
  }
  .cover-wrap__bk span {
    font-size: 18px;
  }
  .cover-wrap__lead {
    padding: 40px 0;
  }
  .cover-wrap__lead figure {
    width: 100%;
  }
  .cover-wrap__lead--text {
    width: 100%;
  }
  .cover-wrap__lead--text span {
    font-size: 21px;
  }
  .cover-wrap__lead--text p {
    font-size: 16px;
    line-height: 28px;
  }
  .top-products {
    padding: 60px 0;
  }
  .top-products .hedding-item + p {
    width: 100%;
    text-align: left;
  }
}
/*
	* @Block: lv1-common
	* @Description: 下層共通
*/
.lv1-cover {
  width: 100%;
  background: linear-gradient(180deg, #fff 0%, #fff 30%, #1e52a5 30%, #1e52a5 100%);
  padding: 40px 0;
  position: relative;
  z-index: 0;
  min-width: 1120px;
}
.lv1-cover__bk {
  width: 96%;
  height: 300px;
  max-width: 1800px;
  border-radius: 40px;
  margin: 0 auto;
  padding: 120px 0;
}
.lv1-cover__bk.about {
  background: url("../images/lv1/lv1_cover_about.webp") center/cover no-repeat;
}
.lv1-cover__bk.products {
  background: url("../images/lv1/lv1_cover_products.webp") center/cover no-repeat;
}
.lv1-cover__bk.facility {
  background: url("../images/lv1/lv1_cover_facility.webp") center/cover no-repeat;
}
.lv1-cover__bk.contact {
  background: url("../images/lv1/lv1_cover_contact.webp") center/cover no-repeat;
}
.lv1-cover__lead {
  padding: 40px 0 0;
}
.lv1-cover__lead p {
  font-size: 18px;
  color: #fff;
  line-height: 36px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lv1-cover {
    min-width: 100%;
  }
  .lv1-cover__bk {
    height: 300px;
    padding: 110px 0;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .lv1-cover {
    min-width: 100%;
    padding: 20px 0 40px;
  }
  .lv1-cover__bk {
    height: 240px;
    padding: 90px 0;
  }
  .lv1-cover__lead p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 767.98px) {
  .lv1-cover {
    min-width: 100%;
    padding: 0 0 40px;
    background: #1e52a5;
  }
  .lv1-cover__bk {
    width: 100%;
    height: 240px;
    padding: 90px 0 0;
    border-radius: 0;
  }
  .lv1-cover__lead p {
    font-size: 16px;
    line-height: 28px;
  }
}
/*
	* @Block: about
	* @Description: 
*/
.overview {
  background: url("../images/lv1/about_bk01.png") bottom center/cover no-repeat;
  padding: 0 0 60px;
}

.access {
  padding: 80px 0;
}

.company-policy {
  background: #1e52a5 url("../images/lv1/about_bk02.png") right/cover no-repeat;
  padding: 80px 0;
  color: #fff;
}
.company-policy .hedding-item::before, .company-policy .hedding-item::after {
  background: #fff;
}
.company-policy .hedding-item h2 {
  color: #fff;
}
.company-policy__text {
  text-align: center;
  color: #fff;
}
.company-policy__text span {
  color: #ffea80;
}

@media (max-height: 480px) and (orientation: landscape) {
  .access {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .access {
    padding: 60px 0;
  }
  .company-policy {
    background-position: 40%;
  }
  .company-policy__text {
    text-align: left;
  }
}
/*
	* @Block: product
	* @Description: 
*/
.product-item {
  margin-top: 60px;
}
.product-item h3 {
  margin: 10px 0;
}

@media (max-width: 767.98px) {
  .product-item {
    margin-top: 0;
  }
}
/*
	* @Block: Facility
	* @Description: 
*/
.facility-slide {
  margin-bottom: 60px;
}

.simply-scroll {
  width: 100%;
}
.simply-scroll .simply-scroll-clip {
  width: 100%;
  height: 238px;
}
.simply-scroll .simply-scroll-clip li {
  float: left;
  width: 367px;
  height: 100%;
}

.simply-scroll-container {
  position: relative;
}

.simply-scroll-clip {
  position: relative;
  overflow: hidden;
}

.simply-scroll-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}
.simply-scroll-list li {
  padding: 0;
  margin: 0 10px;
  list-style: none;
}
.simply-scroll-list li img {
  border: none;
  display: block;
}

.facility__lead {
  margin-bottom: 40px;
}
.facility__lead h3 {
  margin-top: 0;
}
.facility__lead:nth-of-type(n+2) {
  margin-top: 60px;
}

.facility__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #4d4d4d; /*table-layout: fixed;*/
}
.facility__table:nth-of-type(n+2) {
  margin-top: 24px;
}
.facility__table td {
  padding: 8px;
  text-align: center;
}
.facility__table thead td {
  background: #1e52a5;
  color: #fff;
  border-bottom: 1px solid #4d4d4d;
  border-right: 1px solid #fff;
}
.facility__table thead td:last-of-type {
  border-right: none;
}
.facility__table tbody tr {
  border-bottom: 1px solid #4d4d4d;
}
.facility__table tbody td {
  border-right: 1px solid #4d4d4d;
}
.facility__table tbody td:first-of-type {
  width: 30%;
}
.facility__table tbody td:nth-of-type(2) {
  width: 14%;
}
.facility__table tbody td:last-of-type {
  border-right: none;
}
.facility__table tbody td a {
  text-decoration: none;
  color: #1e52a5;
}

@media (max-width: 767.98px) {
  .simply-scroll .simply-scroll-clip {
    height: 120px;
  }
  .simply-scroll .simply-scroll-clip li {
    width: 195px;
  }
}
/*
	* @Block: Contact
	* @Description: お問い合わせ
*/
.contact-phone {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 20px 2%;
}
.contact-phone p {
  width: 40%;
}
.contact-phone div {
  text-align: right;
}
.contact-phone div a {
  text-decoration: none;
  font-family: "Cabin", sans-serif;
  font-size: 48px;
  color: #e0a232;
  font-weight: 500;
}
.contact-phone div i {
  font-size: 41px;
  margin-right: 12px;
}
.contact-phone div span {
  display: block;
  text-align: right;
  font-size: 14px;
  color: #232323;
}

.contact-form ul {
  width: 100%;
  margin: 0 auto;
}
.contact-form li {
  list-style: disc;
  margin: 6px 0 6px 20px;
}

.contact-form__container {
  width: 100%;
  margin: 0 auto;
}
.contact-form__container table {
  width: 100%;
  margin-top: 50px;
  table-layout: fixed;
  border-collapse: collapse;
}
.contact-form__container table tr {
  border-bottom: 1px solid #ccc;
}
.contact-form__container table tr:last-child {
  border-bottom: none;
}
.contact-form__container table th {
  width: 30%;
  padding: 24px;
  vertical-align: top;
}
.contact-form__container table th span {
  font-size: 14px;
  color: #fff;
  background: #d63317;
  padding: 0 10px;
  float: right;
  border-radius: 2px;
}
.contact-form__container table td {
  padding: 24px;
}
.contact-form__container table .optionalicon {
  font-size: 14px;
  color: #2D4675;
  text-align: center;
  padding: 2px 15px;
  background: #ABD8FF;
  border-radius: 12px;
  margin-right: 30px;
}

.agreementicon {
  font-size: 14px;
  color: #fff;
  background: #d63317;
  padding: 0 10px;
  margin-right: 20px;
}

.privacypolicy {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 24px auto;
  padding: 24px;
  border: 1px #ddd solid;
  background: #fffcf8;
  overflow-y: scroll;
  text-align: left !important;
}
.privacypolicy p {
  text-align: left !important;
}
.privacypolicy p:first-of-type {
  font-size: 18px;
  font-weight: bold;
}
.privacypolicy h4 {
  margin: 20px 0 5px;
  font-weight: bold;
}

.privacypolicy::-webkit-scrollbar {
  width: 8px;
}

.privacypolicy::-webkit-scrollbar-track {
  background: #ccc;
}

.privacypolicy::-webkit-scrollbar-thumb {
  background: #999;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha_policy {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 11px !important;
  color: #888 !important;
}

.recaptcha_policy a {
  font-size: 11px !important;
  color: #666 !important;
}

.thanks_container {
  text-align: center;
}
.thanks_container h3 {
  border-left: none;
  padding-left: 0;
}
.thanks_container .c-btn--large {
  margin: 40px auto 0;
}

/* フォーム */
input[type=text], input[type=tel], input[type=email], textarea, select {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 15px;
  background: #FFF;
  border-radius: 3px;
  transition: all 0.3s;
  border: 1px solid #ccc;
}
input[type=text].w100, input[type=tel].w100, input[type=email].w100, textarea.w100, select.w100 {
  width: 98%;
}
input[type=text].w80, input[type=tel].w80, input[type=email].w80, textarea.w80, select.w80 {
  width: 80%;
}
input[type=text].w60, input[type=tel].w60, input[type=email].w60, textarea.w60, select.w60 {
  width: 60%;
}
input[type=text].w40, input[type=tel].w40, input[type=email].w40, textarea.w40, select.w40 {
  width: 40%;
}
input[type=text].w30, input[type=tel].w30, input[type=email].w30, textarea.w30, select.w30 {
  width: 30%;
}

/*input[type="text"]:focus , input[type="tel"]:focus , input[type="email"]:focus , textarea:focus {
  box-shadow: 0 0 4px #86BBCD;
  border: 1px solid #86BBCD;
}*/
input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  display: inline-block;
  position: relative;
  text-align: center;
  cursor: pointer;
  width: 18px;
  height: 18px;
  margin: 0 10px;
  vertical-align: middle;
}
input[type=checkbox]::before {
  display: block;
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  border: solid 1px rgb(74.7692307692, 131.5692307692, 222.2307692308);
  margin-top: -2px;
}
input[type=checkbox]:checked::before {
  background-color: #1e52a5;
}
input[type=checkbox]::after {
  display: block;
  content: "";
  position: absolute;
  left: 8px;
  top: 2px;
  width: 4px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
}
input[type=checkbox]:checked::after {
  opacity: 1;
}

input[type=file] {
  padding: 10px 0;
  transition: all 0.3s;
}

input[type=radio] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

textarea {
  height: 160px;
}

::-webkit-input-placeholder {
  color: #cccccc;
}

::-moz-placeholder {
  color: #cccccc;
}

:-ms-input-placeholder {
  color: #cccccc;
}

input[type=submit] {
  display: block;
  width: 320px;
  margin: 40px auto;
  border: 1px solid #1e52a5;
  background: #1e52a5;
  padding: 14px;
  box-sizing: border-box;
  font-size: 16px;
  color: #fff;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
input[type=submit]:hover {
  background: #fff;
  color: #1e52a5;
  transition: 0.3s;
}

input[type=button] {
  display: block;
  width: 320px;
  margin: 40px auto;
  border: 1px solid #a4a4a5;
  background: #a4a4a5;
  padding: 14px;
  box-sizing: border-box;
  font-size: 16px;
  color: #fff;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact-phone p {
    width: 48%;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .contact-phone p, .contact-phone div {
    width: 100%;
    text-align: center;
  }
  .contact-phone div, .contact-phone div span {
    text-align: center;
  }
}
@media screen and (max-width: 767.98px) {
  .contact-phone p, .contact-phone div {
    width: 100%;
  }
  .contact-phone div a {
    font-size: 38px;
  }
  .contact-form ul {
    width: 100%;
  }
  .contact-form {
    padding: 40px 0;
  }
  .contact-form__container {
    width: 90%;
    margin: 40px auto 0;
  }
  .contact-form__container table tr:last-of-type th {
    padding-top: 16px;
  }
  .contact-form__container table th {
    width: 100%;
    display: block;
    padding: 10px 0 0;
  }
  .contact-form__container table td {
    width: 100%;
    display: block;
    padding: 20px 0;
    border-bottom: 0;
  }
  .privacypolicy {
    width: 100%;
  }
  input[type=button] {
    width: 80%;
    margin: -10px auto 0;
  }
  input[type=submit] {
    width: 80%;
  }
  input[type=text], input[type=tel], input[type=email], textarea, select {
    background: #fff;
  }
  input[type=text].w40, input[type=tel].w40, input[type=email].w40, textarea.w40, select.w40 {
    width: 100%;
    margin: 0;
  }
  input[type=text].w60, input[type=tel].w60, input[type=email].w60, textarea.w60, select.w60 {
    width: 100%;
    margin: 0;
  }
  input[type=text].w80, input[type=tel].w80, input[type=email].w80, textarea.w80, select.w80 {
    width: 100%;
    margin: 0;
  }
  input[type=text].w100, input[type=tel].w100, input[type=email].w100, textarea.w100, select.w100 {
    width: 100%;
    margin: 0;
  }
  textarea {
    margin-left: 0;
  }
}/*# sourceMappingURL=style.css.map */