@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,600&display=swap&subset=japanese);
/*======================================
[1] 共通設定
-default
-scrollbar

[2] 共通パーツ
-header
-footer

[3] ボタン
[4] リスト
[5] テキスト
[6] 余白
[7] レイアウト
======================================*/
/* **************************
  [1] 共通設定
************************** */
/*------------------
default
------------------*/
html {
  font-size: 62.5%;
  width: 100%;
}

body {
  position: relative;
  width: 100%;
  font-size: 1.6em;
  color: rgba(10, 0, 90, 1);
  font-family: Meiryo, sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .05rem;
  word-break: break-word;
}

*, *:before, *:after {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

main {
  display: block;
}

a, a:visited {
  color: rgba(10, 0, 90, 1);
}

button, button:active {
  background: none;
  border: none;
  cursor: pointer;
}

dl, dd {
  margin: 0;
}

th, td {
  padding: 10px;
}

h1, h2, h3, h4, h5 {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

p {
  margin: 0;
}

ul,ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.clearfix {
  zoom: 1;
  /* for IE6/7 */
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.br {
  display: inline-block;
}

@media screen and (max-width: 959px) {
  .sp-hide {
    display: none;
  }
}

/*------------------
ページトップボタン
------------------*/
.sticky-btn {
  position: fixed;
  right: 5vw;
  bottom: 16px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(10, 0, 90, 1);
  transition: opacity .3s;
  opacity: 0;
  z-index: 9999;
}

.sticky-btn--show {
  opacity: 1;
  transition: opacity .3s;
}

.sticky-btn--sticky {
  position: absolute;
}

.sticky-btn-top {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.sticky-btn-top::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 15px;
  left: 15px;
  background: url(../img/icn_arrow-wh.svg) center no-repeat;
  transform: rotate(-90deg);
}

/*------------------
scrollbar
------------------*/
.simplebar-scrollbar {
  right: 0;
}

.simplebar-scrollbar::before,
.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
  background: rgba(10, 0, 90, 1);
  opacity: 1;
}

.simplebar-track {
  background: rgba(226, 226, 226, 1);
  border-radius: 7px;
  height: 90%;
  margin: auto 0 auto 12px;
}

.simplebar-track.simplebar-vertical {
  width: 7px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 0;
  bottom: 0;
}

/* **************************
  [2] 共通パーツ
************************** */
/*------------------
header
------------------*/
.gheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 68px;
  padding: 0 5%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gheader::after {
  content: "";
  position: absolute;
  background-size: 33px 42px;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 42px;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 1) 20px, rgba(255, 255, 255, 0) 21px, rgba(255, 255, 255, 0) 42px);
  background-repeat-x: repeat;
  z-index: 1;
}

.header-ttl {
  margin: 0 20px 0 0;
  z-index: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.link-logo {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin-right: 20px;
  text-decoration: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 2;
}

.heading-logo {
  margin-top: 12px;
  width: auto;
  max-width: 260px;
  vertical-align: middle;
}

/* btn-burger */
.btn-burger {
  position: relative;
  margin: 6px 0 0 auto;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 10;
}

.btn-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: rgba(10, 0, 90, 1);
  transition: all .4s;
}

.btn-bar-1 {
  top: 0;
}

.btn-bar-2 {
  top: 8px;
}

.btn-bar-3 {
  top: 17px;
}

/* btn-burger open */
.state-open .btn-bar-1 {
  top: 10px;
  transform: rotate(135deg);
}

.state-open .btn-bar-2 {
  opacity: 0;
}

.state-open .btn-bar-3 {
  top: 10px;
  transform: rotate(-135deg);
}

/* gnav */
.gnav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  padding: 18px 5%;
  background-color: rgba(255, 255, 255, 1);
  z-index: 999;
}

.gnav::before {
  content: "";
  position: absolute;
  bottom: -130px;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(rgba(233, 245, 255, .9) 0, rgba(240, 248, 255, 0) 100%);
  z-index: -2;
}

.gnav::after {
  content: "";
  position: absolute;
  background-size: 33px 42px;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 42px;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 1) 20px, rgba(255, 255, 255, 0) 21px, rgba(255, 255, 255, 0) 42px);
  background-repeat-x: repeat;
  z-index: -1;
}

.gnav-item {
  border-bottom: 2px solid rgba(233, 245, 255, .9);
  font-size: 1.6rem;
  line-height: 1;
}

.gnav-item:last-of-type {
  border-bottom: none;
}

.gnav-item-link {
  position: relative;
  display: inline-block;
  padding: 20px 32px 20px 0;
  width: 100%;
  color: rgba(10, 0, 90, 1);
  font-size: 1.8rem;
  text-decoration: none;
  text-align: left;
}

.gnav-item-link.acordion-button::after {
  position: absolute;
  content: "";
  top: calc(50% - 8px);
  right: 0;
  width: 16px;
  height: 16px;
  background: url(../img/icn_arrow-bl.svg) center no-repeat;
  transform: rotate(90deg);
  transition: .3s ease;
}

.gnav-item-link.acordion-button.state-open::after {
  transform: rotate(270deg);
  transition: .3s ease;
}

.gnav-item-child-link-master {
  position: relative;
  display: inline-block;
  width: calc(100% - 16px);
  margin-left: 16px;
  padding: 12px 12px 12px 30px;
  border-bottom: 1px solid rgba(10, 0, 90, 1);
  text-decoration: none;
}

.gnav-item-child-link-master::after {
  position: absolute;
  content: "";
  top: calc(50% - 8px);
  left: 5px;
  width: 16px;
  height: 16px;
  background: url(../img/icn_arrow-bl.svg) center no-repeat;
}

.gnav-item-child-list {
  margin-top: 8px;
  text-decoration: none;
  font-size: 1.4rem;
}

.gnav-item-child-link {
  margin: 32px 16px;
}

.gnav-item-child-link a {
  text-decoration: none;
}

/*------------------
footer
------------------*/
.footer {
  position: relative;
  margin: 160px 0 0;
  padding: 28px 5% 16px;
}

.footer::before {
  position: absolute;
  content: "";
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
  background-image: url(../img/line_star-blue.svg);
  background-size: 27px 18px;
  background-position: center;
  background-repeat: repeat-x;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  max-width: 300px;
}

.footer-ttl {
  margin: 0;
  font-size: 3.0rem;
}

.footer-list-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 26px 0 0;
  justify-content: center;
}

.footer-list01 {
  padding: 0 18px 0 0;
}

.footer-list-item {
  position: relative;
  padding: 0.4rem 0;
  letter-spacing: 0.1rem;
}

.footer-list01 .footer-list-item {
  font-weight: bold;
}

.footer-list01 .footer-list-item::before {
  content: ">";
  padding: 0 0.5rem;
}

.footer-list-item-link {
  text-decoration: none;
}

.footer-list02 {
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(10, 0, 90, 1);
}

.footer-list-item02-img {
  height: 1.4rem;
  padding-left: 0.8rem;
}

.footer-address {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-map {
  margin: 30px 0 0;
  flex: 1;
}

.map {
  margin: 0 0 8px;
  width: 100%;
  height: 300px;
}

.footer-bnr-img {
  width: auto;
  height: 100%;
  border: 1px solid rgba(10, 0, 90, 1);
}

/* **************************
  [3]  ボタン
************************** */
/*------------------
link
------------------*/
.link-filled {
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  padding: 11px 60px;
  width: 100%;
  background: rgba(10, 0, 90, 1);
  border: 1px solid rgba(10, 0, 90, 1);
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
  text-decoration: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  justify-content: center;
}

a.link-filled {
  color: rgba(255, 255, 255, 1);
}

a.link-filled-lb {
  background: rgb(179, 209, 234);
  border: 1px solid rgb(179, 209, 234);
  color: rgba(10, 0, 90, 1);
}

a.link-filled-rd {
  background: rgb(210 79 132);
  border: 1px solid rgb(210 79 132);
}

.link-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.8rem;
  padding: 0 4rem;
  min-height: 4.2rem;
  background-repeat: no-repeat, no-repeat;
  background-position: 5px center, right center;
  background-image: url(../img/icn_arrow-bl.svg), url(../img/flower01-lb.svg);
  background-size: 1.5em 1em, auto;
  border: 1px solid rgba(10, 0, 90, 1);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.link-border-icon01 {
  background-image: url(../img/icn_arrow-bl.svg), url(../img/flower01-lb.svg);
}

.link-border-icon02 {
  background-image: url(../img/icn_arrow-bl.svg), url(../img/flower02-lb.svg);
}

.link-border-icon03 {
  background-image: url(../img/icn_arrow-bl.svg), url(../img/flower03-lb.svg);
}

.link-border-icon04 {
  background-image: url(../img/icn_arrow-bl.svg), url(../img/flower04-lb.svg);
}

.link-border-icon05 {
  background-image: url(../img/icn_arrow-bl.svg), url(../img/flower05-lb.svg);
}

.link-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-direction: column;
}

.link-wrapper .link-filled {
  display: inline-flex;
  justify-content: center;
}
/* **************************
  [4]  リスト
************************** */
.list-item-flower {
  position: relative;
  padding-left: 30px;
}

.list-item-flower::before {
  content: "";
  position: absolute;
  background-image: url(../img/flower01-pk.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 32px;
  height: 18px;
  top: -1px;
  left: -4px;
}

.list-item-flower02::before {
  background-image: url(../img/flower02-pk.svg);
  width: 29px;
  height: 22px;
  transform: rotate(-107deg);
}

.list-item-flower03::before {
  background-image: url(../img/flower03-pk.svg);
  width: 29px;
  height: 22px;
  top: -2px;
}

.list-item-flower04::before {
  background-image: url(../img/flower04-pk.svg);
  width: 29px;
  height: 27px;
  top: -8px;
}

.list-item-flower05::before {
  background-image: url(../img/flower05-pk.svg);
  width: 29px;
  height: 22px;
}

.list-item-flower-lb::before {
  background-image: url(../img/flower01-lb.svg);
  top: calc(1em - 8px);
}

.list-item-star {
  position: relative;
  padding-left: 16px;
}

.list-item-star::before {
  content: "";
  position: absolute;
  background-image: url(../img/icn_star-blue.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 9px;
  height: 11px;
  top: calc(1em - 5.5px);
  left: 0;
}

.list-number {
  counter-reset: number;
}

.list-item-number {
  position: relative;
  padding: 8px 0 0 30px;
}

.list-item-number::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  display: flex;
  top: calc(1em - 5px);
  left: 0;
  background-color: rgba(233, 245, 255, .9);
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 100%;
  border: 2px solid rgba(10, 0, 90, 1);
  width: 24px;
  height: 24px;
  padding-left: 1px;
  font-weight: bold;
  font-family: helvetica, sans-serif;
  justify-content: center;
  align-items: center;
}

/* **************************
  [5]  テキスト
************************** */
/*------------------
text
------------------*/
/* color */
.txt-wh {
  color: rgba(255, 255, 255, 1);
}

.txt-red {
  color: #e60d44;
}

/* bg-color */

.txt-decoration-pk {
  background: linear-gradient(transparent 60%, rgb(252, 215, 221) 40%);
}

.txt-decoration-lb {
  background: linear-gradient(transparent 60%, rgb(247, 247, 255) 40%);
}

.txt-decoration-wh {
  background: linear-gradient(transparent 60%, rgb(255, 255, 255) 40%);
}

/* weight */
.txt-regular {
  font-weight: 400;
}

.txt-bold {
  font-weight: 700;
}

/* align */
.txt-right {
  text-align: right !important;
}

.txt-center {
  text-align: center !important;
}

.txt-left {
  text-align: left !important;
}

/* wrap */
.txt-nowrap {
  display: inline-block;
}

.txt-al-top {
  vertical-align: top;
}

/* size */
.txt-12px {
  font-size: 1.2rem;
}

.txt-14px {
  font-size: 1.4rem;
}

.txt-16px {
  font-size: 1.6rem;
}

.txt-18px {
  font-size: 1.8rem;
}

.txt-20px {
  font-size: 2.0rem;
}

.txt-22px {
  font-size: 2.2rem;
}

.txt-24px {
  font-size: 2.4rem;
}

.txt-26px {
  font-size: 2.6rem;
}

.txt-28px {
  font-size: 2.8rem;
}

.txt-30px {
  font-size: 3.0rem;
}

/* **************************
  [6]  余白
************************** */
/*------------------
margin
------------------*/
/* top */
.mgTp0 {
  margin-top: 0 !important;
}

.mgTp16 {
  margin-top: 16px !important;
}

.mgTp24 {
  margin-top: 24px !important;
}

.mgTp32 {
  margin-top: 32px !important;
}

.mgTp40 {
  margin-top: 40px !important;
}

.mgTp64 {
  margin-top: 64px !important;
}

.mgTp80 {
  margin-top: 80px !important;
}

/* bottom */
.mgBt0 {
  margin-bottom: 0;
}

.mgBt16 {
  margin-bottom: 16px !important;
}

.mgBt24 {
  margin-bottom: 24px !important;
}

.mgBt32 {
  margin-bottom: 32px !important;
}

.mgBt40 {
  margin-bottom: 40px !important;
}

.mgBt80 {
  margin-bottom: 80px !important;
}

/* left */
.mgLf0 {
  margin-left: 0;
}

.mgLf16 {
  margin-left: 16px !important;
}

.mgLf24 {
  margin-left: 24px !important;
}

.mgLf32 {
  margin-left: 32px !important;
}

.mgLf40 {
  margin-left: 40px !important;
}

/* right */
.mgRg0 {
  margin-right: 0;
}

.mgRg16 {
  margin-right: 16px !important;
}

.mgRg24 {
  margin-right: 24px !important;
}

.mgRg32 {
  margin-right: 32px !important;
}

.mgRg40 {
  margin-right: 40px !important;
}

/* **************************
  [7]  レイアウト
************************** */

article img {
  width: 100%;
}

.img-icon {
  width: 1.2em;
  margin: 0 .5em;
  padding-bottom: .3em;
  vertical-align: middle;
}

.border-content {
    margin: 32px 16px 0;
    padding: 22px 18px;
    border: 1px solid rgba(10, 0, 90, 1);
    background-color: #fde2ed;
}
/*------------------
装飾
------------------*/

/* 角丸内側枠 */
.box-decoration-frame-wh-bl {
  padding: 16px 8px 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(circle at left top, rgba(255, 255, 255, 1) 14px, rgba(10, 0, 90, 1) 14.5px, rgba(10, 0, 90, 1) 15px, rgba(255, 0, 0, 0) 15.5px), radial-gradient(circle at right top, rgba(255, 255, 255, 1) 14px, rgba(10, 0, 90, 1) 14.5px, rgba(10, 0, 90, 1) 15px, rgba(255, 0, 0, 0) 15.5px), radial-gradient(circle at right bottom, rgba(255, 255, 255, 1) 14px, rgba(10, 0, 90, 1) 14.5px, rgba(10, 0, 90, 1) 15px, rgba(255, 0, 0, 0) 15.5px), radial-gradient(circle at left bottom, rgba(255, 255, 255, 1) 14px, rgba(10, 0, 90, 1) 14.5px, rgba(10, 0, 90, 1) 15px, rgba(255, 0, 0, 0) 15.5px), linear-gradient(to bottom, rgba(10, 0, 90, 1) 1px, rgba(255, 0, 0, 0) 1px), linear-gradient(to left, rgba(10, 0, 90, 1) 1px, rgba(255, 0, 0, 0) 1px), linear-gradient(to top, rgba(10, 0, 90, 1) 1px, rgba(255, 0, 0, 0) 1px), linear-gradient(to right, rgba(10, 0, 90, 1) 1px, rgba(255, 0, 0, 0) 1px);
  background-size:
    auto auto;
}

.box-decoration-frame-pr-bl {
  padding: 16px 16px 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(circle at left top, rgba(247, 247, 255, 1) 14px, rgba(10, 0, 90, 1) 14.5px, rgba(10, 0, 90, 1) 15px, rgba(255, 0, 0, 0) 15.5px), radial-gradient(circle at right top, rgba(247, 247, 255, 1) 14px, rgba(10, 0, 90, 1) 14.5px, rgba(10, 0, 90, 1) 15px, rgba(255, 0, 0, 0) 15.5px), radial-gradient(circle at right bottom, rgba(247, 247, 255, 1) 14px, rgba(10, 0, 90, 1) 14.5px, rgba(10, 0, 90, 1) 15px, rgba(255, 0, 0, 0) 15.5px), radial-gradient(circle at left bottom, rgba(247, 247, 255, 1) 14px, rgba(10, 0, 90, 1) 14.5px, rgba(10, 0, 90, 1) 15px, rgba(255, 0, 0, 0) 15.5px), linear-gradient(to bottom, rgba(10, 0, 90, 1) 1px, rgba(255, 0, 0, 0) 1px), linear-gradient(to left, rgba(10, 0, 90, 1) 1px, rgba(255, 0, 0, 0) 1px), linear-gradient(to top, rgba(10, 0, 90, 1) 1px, rgba(255, 0, 0, 0) 1px), linear-gradient(to right, rgba(10, 0, 90, 1) 1px, rgba(255, 0, 0, 0) 1px);
  background-size:
    auto auto;
}

/* 雲形枠 */
.box-decoration-clound {
  position: relative;
  width: 85%;
  margin: 0 auto;
  padding: 16px;
  background: rgba(255, 255, 255, 1);
}

.box-decoration-clound::before,
.box-decoration-clound::after {
  content: "";
  position: absolute;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 1) 13px, rgba(10, 0, 90, 1) 14px, rgba(255, 255, 255, 0) 15px, rgba(255, 255, 255, 0) 35px);
  z-index: -1;
  background-position: top;
}

.box-decoration-clound-v::before {
  top: 0;
  left: -11px;
  width: 37px;
  height: 100%;
  background-size: 37px 24px;
  background-repeat-y: repeat;
  background-repeat-x: no-repeat;
}

.box-decoration-clound-v::after {
  top: 0;
  right: -11px;
  width: 37px;
  height: 100%;
  background-size: 37px 24px;
  background-repeat-y: repeat;
  background-repeat-x: no-repeat;
}

.box-decoration-clound-h::before {
  top: -11px;
  left: 0;
  width: 100%;
  height: 37px;
  background-size: 24px 37px;
  background-repeat-y: no-repeat;
  background-repeat-x: repeat;
}

.box-decoration-clound-h::after {
  bottom: -11px;
  right: 0;
  width: 100%;
  height: 37px;
  background-size: 24px 37px;
  background-repeat-y: no-repeat;
  background-repeat-x: repeat;
}

/* 破線枠 */
.box-decoration-dot {
  border: 1px dashed rgba(10, 0, 90, 1);
  background: #fff;
  padding: 8px 16px;
}

.box-decoration-bg {
  position: relative;
  padding: 16px;
  background: rgba(247, 247, 255, 1);
}

.box-decoration-bg::after {
  content: "";
  position: absolute;
  background-size: 33px 42px;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 42px;
  background-image: radial-gradient(circle at center, rgba(247, 247, 255, 1) 20px, rgba(255, 255, 255, 0) 21px, rgba(255, 255, 255, 0) 42px);
  background-repeat-x: repeat;
  z-index: -1;
}

/*------------------
2col
------------------*/
.box-2col-inner:last-of-type {
  margin-top: 16px;
}

.box-width-auto {
  flex: 1;
}

.box-2col-inner.box-2col-inner-vertical-center {
  align-self: center;
}

.box-2col-inner.box-2col-inner-img {
  text-align: center;
}

.box-2col-inner figure {
  margin: 0;
  display: inline-block;
}

.box-2col-inner figcaption {
  margin: -8px 0 8px;
}

.img-middle {
  max-width: 500px;
}

/*------------------
3col
------------------*/
.box-3col-inner {
  margin-top: 16px;
}
.box-3col-inner:first-of-type {
  margin-top: 0;
}

/*------------------
中央テキスト
------------------*/
.box-center-paragraph {
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
}
/*------------------
アコーディオン
------------------*/
.acordion-button-bl,
.acordion-button-bl:active {
  position: relative;
  width: 100%;
  padding: 12px 48px 12px 16px;
  background: rgba(233, 245, 255, .9);
  border: 1px solid rgba(10, 0, 90, 1);
  color: rgba(10, 0, 90, 1);
  text-align: left;
}

.acordion-button-bl::before {
  content: "";
  position: absolute;
  top: calc(50% - 14px);
  right: 16px;
  width: 28px;
  height: 28px;
  background: url(../img/icn_plus-bl.svg) no-repeat;
}

.acordion-button-bl.state-open::before {
  top: calc(50% - 5px);
  background: url(../img/icn_minus-bl.svg) no-repeat;
}

.acordion-cont {
  display: none;
}

.acordion-cont-box {
  display: none;
  position: relative;
  padding: 16px 16px 32px;
  background: rgb(240, 248, 255);
}

.acordion-cont-box::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 18px;
  background-image: url(../img/line_star-white.svg);
  background-size: 27px 18px;
  background-position: center;
  background-repeat: repeat-x;
}