@charset "UTF-8";
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/* 管理バーがあるときだけヘッダーを32px下にずらす */
body:has(#wpadminbar) .header {
  top: 32px;
}

/* モバイル（782px以下）は管理バーの高さ46px分ずらす */
@media screen and (max-width: 782px) {
  body:has(#wpadminbar) .header {
    top: 46px;
  }
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: .67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace,monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace,monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: .35em .75em .625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* =========================================================
base - 基本設定
========================================================= */
html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  box-sizing: border-box;
  color: #394656;
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  overflow-x: hidden !important;
  position: relative;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: .4s;
  line-height: 1;
}

p {
  color: #000000;
  margin: 0;
  padding: 0;
}

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

figure {
  margin: 0;
  padding: 0;
}

dl, dt, dd, ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-show {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-show {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .sp-show {
    display: none;
  }
}

.l-main {
  position: relative;
}

/* =========================================================
drawer
========================================================= */
.c-drawer {
  background-color: #0858CA;
  height: 100vh;
  padding: 0;
  max-width: 0;
  width: 90vw;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  right: -390px;
  transition: .4s;
  z-index: 501;
  scrollbar-color: #929292 #fff;
  scrollbar-width: thin;
}
.c-drawer::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
}
.c-drawer::-webkit-scrollbar-thumb {
  background: #929292;
  width: 6px;
  border-radius: 5px;
}
.c-drawer-btn label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}
.c-drawer-btn .icon {
  background-color: #223F88;
  border-radius: 0 0 0 5px;
  cursor: pointer;
  height: 50px;
  width: 50px;
  position: relative;
  transition: .4s;
}
.c-drawer-btn .icon::before, .c-drawer-btn .icon::after {
  background-color: #fff;
  content: '';
  display: block;
  height: 2px;
  width: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-drawer-btn .icon::before {
  top: 14px;
  transition: .4s;
}
.c-drawer-btn .icon::after {
  bottom: 14px;
  transition: .4s;
}
.c-drawer-btn .icon:hover {
  background-color: #000;
}
.c-drawer-btn .icon .border {
  color: #fff;
  font-size: calc(11 * (100vw / 520));
  font-weight: 500;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  letter-spacing: -.1rem;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 430px) {
  .c-drawer-btn .icon .border {
    font-size: calc(11 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-drawer-btn .icon .border {
    font-size: calc(11 * (100vw / 980));
  }
}
@media screen and (min-width: 992px) {
  .c-drawer-btn .icon .border {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.c-drawer-gnav ul {
  margin: 20px auto 0;
}
.c-drawer-gnav ul > li {
  margin: 0 auto 10px;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .c-drawer-gnav ul > li {
    margin: 0 auto 20px;
  }
}
.c-drawer-gnav ul > li a {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 15px 25px;
  max-width: 360px;
  width: 90%;
  transition: .4s;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-drawer-gnav ul > li a {
    margin: 0;
    width: auto;
  }
}
.c-drawer-gnav ul > li a::after {
  background-image: url("../image/icon_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 0 0 15px;
}
@media screen and (min-width: 620px) {
  .c-drawer-gnav ul > li a::after {
    height: 25px;
    width: 25px;
  }
}
.c-drawer-gnav ul > li a:hover {
  background: #def6ff;
}

#drawer:checked + .c-drawer {
  padding: 0 0 25px;
  max-width: 390px;
  right: 0;
}
#drawer:checked + .c-drawer .c-drawer-btn .icon::before {
  top: -5px;
  transform: rotate(45deg);
}
#drawer:checked + .c-drawer .c-drawer-btn .icon::after {
  bottom: 5px;
  transform: rotate(-45deg);
}
#drawer:checked ~ .c-drawer-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 500;
}

.c-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2em auto;
  color: #fff;
}
.c-pagenation .c-pagenation__num {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
}
.c-pagenation .c-pagenation__link {
  color: #fff;
  font-size: clamp(13px, 1.61vw, 18px);
  padding: 0.4em 0.8em;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .c-pagenation .c-pagenation__link {
    font-size: 16px;
  }
}
.c-pagenation .c-pagenation__link a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.c-pagenation .c-pagenation__link a:hover {
  opacity: 0.7;
}
.c-pagenation .c-pagenation__link .current {
  font-weight: bold;
  border-bottom: 2px solid #fff;
}

/* =========================================================
header
========================================================= */
.p-header {
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100vw;
  transition: .4s;
}
.p-header--wrap {
  display: flex;
  padding: 10px;
}
@media screen and (min-width: 620px) {
  .p-header--wrap {
    padding: 20px 40px;
  }
}
.p-header-logo {
  flex-grow: 1;
}
.p-header-logo .logo_bk {
  display: none;
}
.p-header-logo img {
  max-width: 100px;
}
@media screen and (min-width: 992px) {
  .p-header-logo img {
    max-width: 120px;
  }
}
.p-header-gnav {
  display: none;
}
@media screen and (min-width: 992px) {
  .p-header-gnav {
    display: block;
  }
}
.p-header-gnav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.p-header-gnav > ul > li {
  flex-grow: 1;
  position: relative;
}
.p-header-gnav > ul > li > a {
  color: #fff;
  display: block;
  font-size: calc(16 * (100vw / 430));
  padding: 12px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 430px) {
  .p-header-gnav > ul > li > a {
    font-size: calc(16 * (100vw / 620));
  }
}
@media screen and (min-width: 620px) {
  .p-header-gnav > ul > li > a {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-gnav > ul > li > a {
    font-size: calc(16 * (100vw / 992));
  }
}
@media screen and (min-width: 992px) {
  .p-header-gnav > ul > li > a {
    font-size: calc(16 * (100vw / 1200));
  }
}
@media screen and (min-width: 1200px) {
  .p-header-gnav > ul > li > a {
    font-size: 16px;
  }
}
.p-header-gnav > ul > li > a::before {
  background-color: #fff;
  content: '';
  display: block;
  height: 2px;
  width: 0px;
  transition: .2s;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.p-header-gnav > ul > li > a:hover::before {
  width: 80px;
}
.p-header-gnav > ul > li > a.contact {
  background-color: #000;
  border-radius: 50px;
  line-height: 1;
  margin: 0 0 0 15px;
  padding: 12px 25px;
}
.p-header-gnav > ul > li > a.contact::before {
  display: none;
}
.p-header-gnav > ul > li > a.contact:hover {
  background-color: #223f88;
}
.p-header-drawerbtn {
  display: block;
}
@media screen and (min-width: 992px) {
  .p-header-drawerbtn {
    display: none;
  }
}
.p-header-drawerbtn label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.p-header-drawerbtn .icon {
  border-radius: 50px;
  height: 32px;
  width: 40px;
  position: relative;
  transition: .4s;
}
@media screen and (min-width: 768px) {
  .p-header-drawerbtn .icon {
    width: 50px;
  }
}
.p-header-drawerbtn .icon::before, .p-header-drawerbtn .icon::after {
  background-color: #fff;
  content: '';
  display: block;
  height: 2px;
  width: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-header-drawerbtn .icon::before, .p-header-drawerbtn .icon::after {
    width: 40px;
  }
}
.p-header-drawerbtn .icon::before {
  top: 21px;
}
@media screen and (min-width: 768px) {
  .p-header-drawerbtn .icon::before {
    top: 26px;
  }
}
.p-header-drawerbtn .icon::after {
  bottom: 21px;
}
@media screen and (min-width: 768px) {
  .p-header-drawerbtn .icon::after {
    bottom: 26px;
  }
}
.p-header-drawerbtn .icon .border {
  background-color: #fff;
  height: 2px;
  width: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-header-drawerbtn .icon .border {
    width: 40px;
  }
}
.p-header-drawerbtn .text {
  color: #fff;
  font-size: calc(13 * (100vw / 480));
  letter-spacing: .1rem;
  margin: 2px 0 0;
}
@media screen and (min-width: 430px) {
  .p-header-drawerbtn .text {
    font-size: calc(13 * (100vw / 620));
  }
}
@media screen and (min-width: 620px) {
  .p-header-drawerbtn .text {
    font-size: calc(13 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-drawerbtn .text {
    font-size: 13px;
  }
}
.p-header.is-fixed {
  background-color: rgba(250, 250, 250, 0);
  background-color: #FAFAFA;
}
.p-header.is-fixed .p-header-logo .logo_white {
  display: none;
}
.p-header.is-fixed .p-header-logo .logo_bk {
  display: block;
}
.p-header.is-fixed .p-header-gnav > ul > li > a {
  color: #000;
}
.p-header.is-fixed .p-header-gnav > ul > li > a.contact {
  color: #fff;
}
.p-header.is-fixed .p-header-gnav > ul > li > a::before {
  background-color: #000;
}
.p-header.is-fixed .p-header-drawerbtn .icon .border,
.p-header.is-fixed .p-header-drawerbtn .icon::before,
.p-header.is-fixed .p-header-drawerbtn .icon::after {
  background-color: #223F88;
}
.p-header.is-fixed .p-header-drawerbtn .text {
  color: #223F88;
}

/* =========================================================
footer
========================================================= */
.p-footer {
  background: #012E6E;
  color: #fff;
  font-size: clamp(14px, 8px + 1vw, 16px);
  padding: 3% 0 0 0;
}

.p-footer-wrap {
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.p-footer-cont {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.p-footer-cont_left {
}

.p-footer-cont_logo {
}

.p-footer-cont_right {
}

.p-footer-cont_right ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.p-footer-cont_right ul li {
  width: 50%;
  margin: 0 0 16px;
}

.p-footer-cont_right ul li a {
  color: #fff;  
}

.p-footer-cont_right ul li a:hover {
  text-decoration: underline;  
}

.p-footer-copyright {
  font-size: 12px;
  text-align: center;
  padding: 12px 0;
}

@media screen and (max-width: 768px) {
  .p-footer {
    padding: 9% 0 0 0;
  }

  .p-footer-wrap {
  }

  .p-footer-cont {
  }

  .p-footer-cont_left {
	display: none;
  }

  .p-footer-cont_logo {
  }

  .p-footer-cont_right {
  }

  .p-footer-cont_right ul {
  }

  .p-footer-cont_right ul li {
	text-align: center;
    margin: 0 0 14px;
  }

  .p-footer-cont_right ul li a {
  }

  .p-footer-cont_right ul li a:hover {
  }

  .p-footer-copyright {
    padding: 12px 0;
  }
}


/* =========================================================
BNR CONTACT
========================================================= */
.p-bnr-contact {
  background-image: url("../image/bnr-contact.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6% 0;
}

.p-bnr-contact_wrap {
  background-color: #fff;
  border-radius: 10px;
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6% 4%;
}

.p-bnr-contact_ttl {
  text-align: center;
  margin: 0 0 3% 0;
  padding: 0 0 3% 0;
  border-bottom: 1px solid;
}

.p-bnr-contact_ttl .en {
  display: block;
  font-size: clamp(30px, 28px + 1vw, 48px);
  font-weight: bold;
}

.p-bnr-contact_ttl .ja {
  display: block;
  font-size: clamp(16px, 8px + 1vw, 18px);
}

.p-bnr-contact_cont {
  display: flex;
  flex-direction: row;
}

.p-bnr-contact_cont__mail {
  border-right: 1px solid;
  text-align: center;
  width: 50%;
}

.p-bnr-contact_cont__mail .ttl {
}

.p-bnr-contact_cont__mail .ttl p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 12px + 1vw, 24px);
  margin:  0 0 6% 0;
}

.p-bnr-contact_cont__mail .ttl p::before {
  background-image: url("../image/icon_mail.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 48px;
  width: 48px;
  margin: 0 48px 0 0;
}

.p-bnr-contact_cont__mail .btn {
  margin: 50px auto 0;
}

.p-bnr-contact_cont__mail .btn a {
  border: 1px solid #394656;
  border-radius: 50px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  color: #394656;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 8px + 1vw, 16px);
  margin: auto;
  padding: 15px 25px;
  max-width: 300px;
  transition: .4s;
  text-align: center;
}

.p-bnr-contact_cont__mail .btn a::after {
  background-image: url(../image/icon_arrow_bk.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 25px;
  width: 25px;
  margin: 0 0 0 15px;
}

.p-bnr-contact_cont__mail .btn a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.p-bnr-contact_cont__tel {
  text-align: center;
  width: 50%;
}

.p-bnr-contact_cont__tel .ttl {
}

.p-bnr-contact_cont__tel .ttl p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 12px + 1vw, 24px);
  margin:  0 0 6% 0;
}

.p-bnr-contact_cont__tel .ttl p::before {
  background-image: url("../image/icon_tel.svg");
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 48px;
  width: 48px;
  margin: 0 48px 0 0;
}

.p-bnr-contact_cont__tel .btn {
  margin: 50px auto 0;
}

.p-bnr-contact_cont__tel .btn a {
  border: 1px solid #394656;
  border-radius: 50px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  color: #394656;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 8px + 1vw, 16px);
  margin: auto;
  padding: 15px 25px;
  max-width: 300px;
  transition: .4s;
  text-align: center;
}

.p-bnr-contact_cont__tel .btn a::after {
  background-image: url(../image/icon_arrow_bk.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 25px;
  width: 25px;
  margin: 0 0 0 15px;
}

.p-bnr-contact_cont__tel .btn a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}


@media screen and (max-width: 768px) {
  .p-bnr-contact {
    padding: 12% 0;
  }

  .p-bnr-contact_wrap {
    border-radius: 6px;
	width: 84%;
    padding: 6% 4%;
  }

  .p-bnr-contact_ttl {
    margin: 0 0 3% 0;
    padding: 0 0 3% 0;
  }

  .p-bnr-contact_ttl .en {
  }

  .p-bnr-contact_ttl .ja {
  }

  .p-bnr-contact_cont {
    flex-direction: column;
  }

  .p-bnr-contact_cont__mail {
    border-right: none;
    width: 100%;
	margin: 0 0 6% 0;
  }

  .p-bnr-contact_cont__mail .ttl {
  }

  .p-bnr-contact_cont__mail .ttl p {
    margin:  0 0 6% 0;
  }

  .p-bnr-contact_cont__mail .ttl p::before {
    height: 48px;
    width: 48px;
    margin: 0 48px 0 0;
  }

  .p-bnr-contact_cont__mail .btn {
	margin: 30px auto 0;
	width: 90%;
  }

  .p-bnr-contact_cont__mail .btn a {
    padding: 15px 25px;
    max-width: none;
  }
	
  .p-bnr-contact_cont__mail .btn a::after {
    height: 20px;
    width: 20px;
  }
	
  .p-bnr-contact_cont__tel {
    width: 100%;
  }

  .p-bnr-contact_cont__tel .ttl {
  }

  .p-bnr-contact_cont__tel .ttl p {
    margin:  0 0 6% 0;
  }

  .p-bnr-contact_cont__tel .ttl p::before {
    height: 48px;
    width: 48px;
    margin: 0 48px 0 0;
  }

  .p-bnr-contact_cont__tel .btn {
	margin: 30px auto 0;
	width: 90%;
  }

  .p-bnr-contact_cont__tel .btn a {
    padding: 15px 25px;
    max-width: none;
  }
	
  .p-bnr-contact_cont__tel .btn a::after {
    height: 20px;
    width: 20px;
  }
}


