@charset "UTF-8";

@media screen and (min-width: 960px) {

  /*======================================
  [1] 共通設定
  -default
  -scrollbar

  [2] 共通パーツ
  -header
  -footer

  [3] ボタン
  [4] リスト
  [5] テキスト
  [6] 余白
  [7] レイアウト
  ======================================*/
  /* **************************
  [1] 共通設定
************************** */
  /*------------------
default
------------------*/
  a, button {
    transition: .3s ease;
  }

  a:hover {
    color: rgba(10, 0, 90, .3);
    transition: .3s ease;
  }

  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }

  .link-img {
    transition: opacity .3s ease;
  }

  .link-img:hover {
    opacity: .5;
    transition: opacity .3s ease;
  }

  .pc-hide {
    display: none;
  }
  /*------------------
    ページトップボタン
    ------------------*/
    .sticky-btn {
      right: calc(50% - 535px);
      width: 60px;
      height: 60px;
    }
    .sticky-btn-top::before {
      top: 20px;
      left: 20px;
    }

    @media screen and (max-width: 1079px) {
      .sticky-btn {
        right: 5px;
      }
    }

  /* **************************
  [2] 共通パーツ
************************** */
  /*------------------
header
------------------*/
  .gheader {
    height: 90px;
    padding: 14px 0;
    margin: 0 auto;
    max-width: 945px;
    flex-direction: column;
    align-items: flex-end;
  }

  .gheader::after {
    display: none;
  }

  .gnav::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 43px;
    background-repeat-x: repeat;
    background-size: 38px 43px;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 1) 21px, rgba(255, 255, 255, 0) 22px, rgba(255, 255, 255, 0) 43px);
    z-index: -1;
  }

  .heading-logo {
    margin-top: 0;
    margin-right: 12px;
  }

  /* gnav */
  .gnav {
    position: relative;
    display: block;
    top: auto;
    padding: 16px 0 0;
  }

  .gnav::before {
    display: none;
  }

  .gnav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .gnav-item {
    margin: 12px 0;
    border: none;
    align-self: center;
  }

  .gnav-item-line {
    font-size: 2.7rem;
  }

  .gnav-item-link {
    position: relative;
    padding: 0;
    font-size: 2.0rem;
    transition: .3s ease;
    z-index: 10;
  }

  .gnav-item-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(transparent 60%, rgba(252, 215, 221, 1) 40%);
    transform: scale(0, 1);
    transition: .3s ease;
    z-index: -1;
  }

  .gnav-item-link:hover::before,
  .gnav-item-link.state-open::before {
    transform: scale(1, 1);
    transition: .3s ease;
  }

  .gnav-item-link.state-current::before {
    background: linear-gradient(transparent 60%, rgba(213, 236, 255, 1) 40%);
    transform: scale(1, 1);
    transition: .3s ease;
  }

  .gnav-item-link.acordion-button::after {
    display: none;
  }

  .gnav-item-child {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    padding: 40px 32px 16px;
    background: rgba(240, 247, 254, 1);
    z-index: -10;
  }

  .gnav-item-child::after {
    content: "";
    position: absolute;
    background-size: 38px 43px;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 43px;
    background-image: radial-gradient(circle at center, rgba(240, 247, 254, 1) 21px, rgba(255, 255, 255, 0) 22px, rgba(255, 255, 255, 0) 43px);
    background-repeat-x: repeat;
    z-index: -1;
  }

  .gnav-item-child-list {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.4rem;
  }

  .gnav-item-child-link {
    margin: 16px;
  }

  .gnav-item-child-link-master,
  .gnav-item-child-link-master:visited {
    width: auto;
    background: rgba(255, 255, 255, 1);
    color: rgba(10, 0, 90, 1);
    border: 1px solid rgba(10, 0, 90, 1);
  }

  .gnav-item-child-link-master:hover {
    background: rgba(10, 0, 90, 1);
    color: rgba(255, 255, 255, 1);
  }

  .gnav-item-child-link-master::after {
    left: 7px;
  }

  .gnav-item-child-link-master:hover::after {
    background: url(../img/icn_arrow-wh.svg) center no-repeat;
  }

  .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.6rem;
    line-height: 1;
    align-items: center;
  }

  .item-btn {
    position: relative;
    color: rgba(10, 0, 90, .3);
  }

  .item-btn.state-active {
    color: rgba(10, 0, 90, 1);
  }

  .item-btn:first-child {
    margin-left: 100px;
  }

  .item-btn:first-child::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -90px;
    width: 80px;
    height: 1px;
    background: rgba(10, 0, 90, 1);
  }

  .item-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20%;
    width: 60%;
    height: 3px;
    margin: 0 auto;
    background: rgba(10, 0, 90, 1);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }

  .item-btn:hover::after {
    transform: scale(1, 1);
  }

  /*------------------
footer
------------------*/
  .footer {
    margin: 160px auto 0;
    padding: 32px 0 16px;
    max-width: 945px;
  }

  .footer-inner {
    display: flex;
    justify-content: center;
  }

  .footer-nav {
    flex: none;
  }

  .footer-map {
    margin: 0 0 0 32px;
  }

  .map {
    height: 223px;
  }

  .footer-bnr-img {
    margin-left: 18px;
  }

  /* **************************
  [3]  ボタン
************************** */
  /*------------------
link
------------------*/
  .link-filled {
    width: auto;
  }
  a.link-filled:hover {
    background: rgba(255, 255, 255, 1);
    color: rgba(10, 0, 90, 1);
  }

  .link-border {
    width: 100%;
    height: 42px;
    align-self: flex-end;
  }

  .link-border:hover {
    background-color: rgba(10, 0, 90, 1);
    color: rgba(255, 255, 255, 1);
  }

  .link-border-icon01:hover {
    background-image: url(../img/icn_arrow-wh.svg), url(../img/flower01-wh.svg);
  }

  .link-border-icon02:hover {
    background-image: url(../img/icn_arrow-wh.svg), url(../img/flower02-wh.svg);
  }

  .link-border-icon03:hover {
    background-image: url(../img/icn_arrow-wh.svg), url(../img/flower03-wh.svg);
  }

  .link-border-icon04:hover {
    background-image: url(../img/icn_arrow-wh.svg), url(../img/flower04-wh.svg);
  }

  .link-border-icon05:hover {
    background-image: url(../img/icn_arrow-wh.svg), url(../img/flower05-wh.svg);
  }

  .link-wrapper {
    justify-content: center;
    gap: 24px;
    flex-direction: row;
  }

  .link-wrapper .link-filled {
    width: 300px;
    justify-content: center;
  }

  /* **************************
  [5]  テキスト
************************** */
  /*------------------
text
------------------*/
  /* **************************
  [7]  レイアウト
************************** */
  /*------------------
装飾
------------------*/
  /*------------------
2col
------------------*/
  .box-2col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .box-2col-inner:last-of-type {
    margin: 0 0 0 18px;
  }

  .box-2col-inner img {
    width: 100%;
  }

  .box-width-half {
    width: calc(50% - 9px);
  }

  .img-middle {
    max-width: 250px;
  }

  .img-large {
    max-width: 300px;
  }

  .img-220--pc {
    max-width: 220px;
  }

  /*------------------
3col
------------------*/
  .box-3col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .box-3col-inner {
    width: 100%;
    margin: 0 0 0 18px;
  }
  .box-3col-inner:first-of-type {
    margin: 0;
  }
  /*------------------
アコーディオン
------------------*/
  .acordion-button-bl:hover {
    background: rgba(255, 255, 255, 1);
  }
}