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

body {
  margin: 0;
}

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: "IBM Plex Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", 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: #01A7EA;
  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(../images/common/icon_arrow02.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_blue {
  display: none;
}
.p-header-logo img {
  max-width: 158px;
}
.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_blue {
  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-color: #223F88;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/common/bg_footer.webp);
  position: relative;
  z-index: 1;
}
.p-footer--wrap {
  margin: auto;
  max-width: 1400px;
  width: 94%;
}
@media screen and (min-width: 768px) {
  .p-footer--wrap {
    max-width: none;
    padding: 0 5vw;
  }
}
.p-footer-primary {
  border-bottom: 1px solid #fff;
  padding: calc(100 * (100vw / 992)) 15px;
}
@media screen and (min-width: 768px) {
  .p-footer-primary {
    padding: calc(100 * (100vw / 1920)) 15px;
  }
}
.p-footer-primary .title {
  color: #fff;
  font-size: calc(20 * (100vw / 430));
  font-weight: 400;
}
@media screen and (min-width: 430px) {
  .p-footer-primary .title {
    font-size: calc(28 * (100vw / 620));
  }
}
@media screen and (min-width: 620px) {
  .p-footer-primary .title {
    font-size: calc(28 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-primary .title {
    font-size: calc(28 * (100vw / 992));
  }
}
@media screen and (min-width: 992px) {
  .p-footer-primary .title {
    font-size: 28px;
  }
}
.p-footer-primary .link {
  color: #fff;
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: calc(45 * (100vw / 430));
  font-weight: 300;
  margin: 6px 0 0;
}
@media screen and (min-width: 430px) {
  .p-footer-primary .link {
    font-size: calc(70 * (100vw / 620));
  }
}
@media screen and (min-width: 620px) {
  .p-footer-primary .link {
    font-size: calc(80 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-primary .link {
    font-size: calc(80 * (100vw / 992));
  }
}
@media screen and (min-width: 992px) {
  .p-footer-primary .link {
    font-size: 80px;
  }
}
.p-footer-primary .link::after {
        /*background-image: url(../images/common/icon_arrow01.svg);
        background-repeat: no-repeat;
        background-size: cover;
        content: '';
        display: block;
        height: 35px;
        width: 35px;
        margin: 0 0 0 15px;

        @include mq(sm, min) {
        height: 45px;
        width: 45px;
      }

      @include mq(slm, min) {
      height: 55px;
      width: 55px;
    }*/
}
@media screen and (min-width: 430px) {
  .p-footer-primary .link {
    margin: 12px 0 0;
  }
}
.p-footer-primary .tel {
  display: flex;
  align-items: center;
  margin: 8px 0 0;
}
@media screen and (min-width: 430px) {
  .p-footer-primary .tel {
    margin: 15px 0 0;
  }
}
.p-footer-primary .tel .number a {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: calc(23 * (100vw / 430));
}
@media screen and (min-width: 430px) {
  .p-footer-primary .tel .number a {
    font-size: calc(32 * (100vw / 620));
  }
}
@media screen and (min-width: 620px) {
  .p-footer-primary .tel .number a {
    font-size: calc(32 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-primary .tel .number a {
    font-size: calc(32 * (100vw / 992));
  }
}
@media screen and (min-width: 992px) {
  .p-footer-primary .tel .number a {
    font-size: 32px;
  }
}
.p-footer-primary .tel .number a::before {
  background-image: url(../images/common/icon_phone.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 5px 0 0;
}
.p-footer-primary .tel .number a:hover {
  opacity: .6;
}
.p-footer-primary .tel .time {
  color: #fff;
  font-size: calc(13 * (100vw / 430));
  margin: 0 0 0 15px;
}
@media screen and (min-width: 430px) {
  .p-footer-primary .tel .time {
    font-size: calc(18 * (100vw / 620));
  }
}
@media screen and (min-width: 620px) {
  .p-footer-primary .tel .time {
    font-size: calc(18 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-primary .tel .time {
    font-size: calc(18 * (100vw / 992));
  }
}
@media screen and (min-width: 992px) {
  .p-footer-primary .tel .time {
    font-size: 18px;
  }
}
.p-footer-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(100 * (100vw / 768)) 15px;
}
@media screen and (min-width: 620px) {
  .p-footer-secondary {
    justify-content: space-between;
    padding: calc(50 * (100vw / 1920)) 15px;
  }
}
.p-footer-secondary--left {
  display: none;
}
@media screen and (min-width: 620px) {
  .p-footer-secondary--left {
    display: block;
    margin: 0 20px 0 0;
  }
}
.p-footer-secondary_logo img {
  max-width: 160px;
}
.p-footer-secondary_news {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 0;
  max-width: 380px;
  padding: 20px;
}
@media screen and (min-width: 430px) {
  .p-footer-secondary_news {
    font-size: calc(16 * (100vw / 620));
  }
}
@media screen and (min-width: 620px) {
  .p-footer-secondary_news {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-secondary_news {
    font-size: calc(16 * (100vw / 992));
  }
}
@media screen and (min-width: 992px) {
  .p-footer-secondary_news {
    font-size: 16px;
  }
}
.p-footer-secondary_news .category {
  background-color: #223F88;
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
  line-height: 1;
  padding: 5px 10px;
  text-align: center;
  max-width: 150px;
  width: 40%;
}
.p-footer-secondary_news .date {
  color: #919191;
  flex-grow: 1;
  text-align: right;
  width: 60%;
}
.p-footer-secondary_news .text {
  margin: 15px 0 0;
}
.p-footer-secondary_news .text a {
  color: #223F88;
  font-size: calc(16 * (100vw / 430));
  text-decoration: underline;
}
@media screen and (min-width: 430px) {
  .p-footer-secondary_news .text a {
    font-size: calc(16 * (100vw / 620));
  }
}
@media screen and (min-width: 620px) {
  .p-footer-secondary_news .text a {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-secondary_news .text a {
    font-size: calc(16 * (100vw / 992));
  }
}
@media screen and (min-width: 992px) {
  .p-footer-secondary_news .text a {
    font-size: 16px;
  }
}
.p-footer-secondary_news .text a:hover {
  text-decoration: none;
}
.p-footer-secondary_link {
  display: flex;
  flex-wrap: wrap;
}
.p-footer-secondary_link > li {
  margin: 0 0 25px;
  width: 50%;
}
.p-footer-secondary_link > li a {
  color: #fff;
  display: block;
  font-size: calc(16 * (100vw / 430));
  text-align: center;
}
@media screen and (min-width: 430px) {
  .p-footer-secondary_link > li a {
    font-size: calc(16 * (100vw / 620));
  }
}
@media screen and (min-width: 620px) {
  .p-footer-secondary_link > li a {
    font-size: calc(16 * (100vw / 768));
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .p-footer-secondary_link > li a {
    font-size: calc(16 * (100vw / 992));
  }
}
@media screen and (min-width: 992px) {
  .p-footer-secondary_link > li a {
    font-size: 16px;
  }
}
.p-footer-secondary_link > li a:hover {
  text-decoration: underline;
}
.p-footer-secondary_copy {
  color: #fff;
  display: block;
  text-align: center;
}
@media screen and (min-width: 620px) {
  .p-footer-secondary_copy {
    text-align: left;
  }
}
