@charset "UTF-8";
/* Scss Document */
.jp {
 /* font-family: 'Noto Sans', sans-serif; */
font-family: Arial,"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.BtnCommon {
  width: 200px;
  height: 45px;
  font-size: 14px;
  letter-spacing: 2.5px;
  font-weight: 500;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-align: center;
  line-height: 45px;
  color: #333;
}

.BtnCommon:hover {
  background-color: #0375c1;
  -webkit-box-shadow: 0px 15px 20px #DDD;
          box-shadow: 0px 15px 20px #DDD;
  color: #fff;
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

@media (max-width: 960px) {
  .customize-support .only-pc {
    display: none;
  }
}

@media (max-width: 600px) {
  .customize-support .only-sp {
    display: none;
  }
}

.Hamburger {
  display: none;
}

@media (max-width: 960px) {
  .Hamburger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100px;
    height: 50px;
    cursor: pointer;
    z-index: 3;
  }
}

.Hamburger__line {
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px 0;
  background-color: #333;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}

.Hamburger__Text {
  display: none;
}

@media (max-width: 960px) {
  .Hamburger__Text {
    display: block;
    font-size: 0.6875em;
    color: #333;
    text-align: center;
  }
}

.Hamburger__Text--02 {
  display: none;
}

.nav-open .Hamburger__line:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}

.nav-open .Hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.nav-open .Hamburger__line:nth-of-type(3) {
  -webkit-transform: translateY(-16px) rotate(-45deg);
          transform: translateY(-16px) rotate(-45deg);
}

.nav-open .Hamburger__Text--01 {
  display: none;
}

.nav-open .Hamburger__Text--02 {
  display: block;
}

/* 表示された時用のCSS */
.nav-open .global-nav {
  left: 0;
}

.drawer {
  height: 100%;
}

@media (max-width: 960px) {
  .drawer {
    bottom: 26%;
  }
}

.drawer-logo {
  display: none;
}

@media (max-width: 600px) {
  .drawer-logo {
    display: block;
    width: 200px;
    margin: 10px auto 11%;
    text-align: center;
   background: #fff;
/* background: #78bbe6; */
    padding: 0.3em;
  }
}

.drawer-logo a:after {
  display: none !important;
}

.drawer-inner {
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0 auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
/* background: #78bbe6; */
}

@media (max-width: 960px) {
  .drawer-inner {
    display: block;
    margin: 2% auto;
    width: 95%;
  }
}

.drawer-inner > li {
  margin: 2% 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.7em;
  text-align: center;
  font-weight: 500;
  position: relative;
}

@media (max-width: 960px) {
  .drawer-inner > li {
    position: relative;
    width: 100%;
    margin: 6% 0;
    text-align: left;
  }
}

.drawer-inner > li::after {
  content: "\f107";
  /* 初期の下向き矢印アイコン */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  /* 位置調整 */
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  /* サイズ調整 */
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  /* スムーズなアニメーション */
color: #1b435d;


}

@media (max-width: 960px) {
  .drawer-inner > li::after {
    display: none;
  }
}

.drawer-inner > li:hover::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  /* 上向き矢印に回転 */
color: #f99f48;

}

.drawer-inner > li > a:before {
  width: 1px;
  height: 0px;
  position: absolute;
  bottom: -36px;
  content: '';
  background: #333;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 960px) {
  .drawer-inner > li > a:before {
    display: none;
  }
}

.drawer-inner li > a:hover::before {
  height: 20px;
}

.drawer-inner li > a {
  position: relative;
  color: #333;
  font-size: 0.875em;
}

@media (max-width: 960px) {
  .drawer-inner li > a {
    position: static;
  }
}

/* グローバルメニュー */
.global-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media (max-width: 960px) {
  .global-nav {
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 40px 0 100px;
    background-color: #ddd;
    -webkit-transition: all .6s;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: block;
  }
}

.global-nav .menu a {
  display: block;
  color: #333;
  font-weight: 500;
  position: relative;
  font-size: 1em;
}

@media (max-width: 960px) {
  .global-nav .menu a {
    font-size: 1.6vw;
  }
}

@media (max-width: 960px) {
  .global-nav .menu a {
    font-size: 0.875em;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
  }
}

.global-nav .menu a:after {
  content: "Home";
  display: block;
  position: absolute;
  line-height: 1;
  font-size: 0.8125em;
  font-weight: 600;
  text-align: center;
  width: 100%;
  color: #333;
  left: 0;
}

@media (max-width: 960px) {
  .global-nav .menu a:after {
    left: 80px;
    top: 5px;
    line-height: 50px;
  }
}

.global-nav .current-menu-item > a {
  color: #333;
  font-weight: bold;

}

@media (max-width: 960px) {
  .global-nav .menu-item-has-children > a span::before {
    position: absolute;
    right: 0px;
    font-size: 1em;
    line-height: 30px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    color: #333;
    content: "\f078";
   /* font-family: 'FontAwesome'; */

font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;

    font-weight: 900;
    z-index: 10;
    width: 40px;
    height: 40px;
  }
}

.global-nav .menu-item-has-children > a span::before:hover {
  cursor: pointer;
}

.global-nav .menu-item-has-children.active > a span::before {
  content: "\f054";
}

.global-nav .menu-item-has-children > a:before {
  content: "";
}

.global-nav .menu-item-has-children:hover .sub {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  visibility: visible;
}

.global-nav .child-menu-button {
  display: none;
}

.global-nav .sub {
  display: none;
  background: #fff; 

  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 2%;
  -webkit-box-shadow: 0px 4px 4px #d4d4d447;
          box-shadow: 0px 4px 4px #d4d4d447;
  width: 600px;
}

@media (max-width: 960px) {
  .global-nav .sub {
    display: block;
    line-height: 1.5;
    opacity: 0;
    position: absolute;
    top: calc(100% + 35px);
    right: 0;
    -webkit-transform: translate(0, 25%);
            transform: translate(0, 25%);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transition: .5s;
    transition: .5s;
    visibility: hidden;
    opacity: 1;
    position: relative;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
    margin: 0 auto 4%;
    background: none;

    padding: 0;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
  }
}

.global-nav .sub-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
  z-index: 99;
}

@media (max-width: 600px) {
  .global-nav .sub-menu {
    display: block;
  }
}

.global-nav .sub-menu li {
  width: calc(97% / 2);
  margin: 0.6%;
}

@media (max-width: 960px) {
  .global-nav .sub-menu li {
    width: 90%;
    margin: 4% 0;
  }
}

.global-nav .sub-menu li a {
 /* background: #f7f5f1; */
background: #78bbe6;

  color: #333;
  display: block;
  text-align: center;
  padding: 17px 20px;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
  -webkit-box-shadow: 0px 1px 1px #d4d4d447;
          box-shadow: 0px 1px 1px #d4d4d447;
}

@media (max-width: 960px) {
  .global-nav .sub-menu li a {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (max-width: 600px) {
  .global-nav .sub-menu li a {
    padding: 1em 15px;
    text-align: justify;
  }
}

.global-nav .sub-menu li a::after {
  display: none;
}

.global-nav .sub-menu li a:hover {
  background: #d4d4d447;
  -webkit-transition: .3s;
  transition: .3s;
}

.SpDrawer {
  display: none;
  width: 100%;
  height: 100%;
  /*スクロールバー全体*/
  /*スクロールバーの軌道*/
  /*スクロールバーの動く部分*/
}

@media (max-width: 960px) {
  .SpDrawer {
    display: block;
  }
}

.SpDrawer-Inner {
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 0 0 0 12%;
}

@media (max-width: 960px) {
  .SpDrawer-Inner {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .SpDrawer-Inner {
    max-width: auto;
    width: 600px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-flex-wrap: inherit;
        -ms-flex-wrap: inherit;
            flex-wrap: inherit;
  }
}

.SpDrawer-Inner > li {
  margin: 2% 0;
  width: 130px;
  text-align: center;
  position: relative;
}

@media (max-width: 600px) {
  .SpDrawer-Inner > li {
    width: 120px;
  }
}

@media (max-width: 600px) {
  .SpDrawer-Inner > li a {
    width: 120px;
  }
}

.SpDrawer-Inner > li > a:before {
  width: 1px;
  height: 0px;
  position: absolute;
  bottom: -36px;
  content: '';
  background: #333;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.SpDrawer-Inner li > a:hover::before {
  height: 20px;
}

.SpDrawer-Inner::-webkit-scrollbar {
  height: 5px;
}

.SpDrawer-Inner::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(126, 117, 117, 0.1);
          box-shadow: inset 0 0 6px rgba(126, 117, 117, 0.1);
}

.SpDrawer-Inner::-webkit-scrollbar-thumb {
  background-color: #aa7b1e;
  border-radius: 10px;
}


.slide-img {
  display: block;
  height: 500px;
  border-radius: 10px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 600px) {
  .slide-img {
    height: 300px;
  }
}


@media (max-width: 600px) {
  .news {
    border: none;
  }
}

.news-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news-body {
  margin: 1em 0;
}

.news-heading {
  font-size: 1.5625em;
  border-bottom: 1px solid #d2d3d5;
  margin: 0;
}

@media (max-width: 600px) {
  .news-heading {
    margin: 2% 0;
    width: 100%;
  }
}

.news-heading a {
  color: #1b435d;
font-family: "Kiwi Maru", serif;

}

.news-date {
  color: #78bbe6;
  font-size: 1em;
  margin: 0.2em 0;
}

@media (max-width: 600px) {
  .news-date {
    margin: 0;
  }
}

.news-category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.news-category a {
  color: #fff;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #78bbe6;
  border: 1px solid #7fbfff;
  padding: 0.2rem 1em;
  margin: 0.5em 0;
  border-radius: 5px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin: 0.2em;
}

@media (max-width: 600px) {
  .news-category a {
    font-size: 0.8125em;
  }
}

.news-category a:hover {
  color: #333;
  background: #fff;
  border: 1px solid #7fbfff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news-Btn {
  width: 100px;
  text-align: center;
}

@media (max-width: 600px) {
  .news-Btn {
    width: 80px;
    margin: 2% 0;
  }
}

.news-Btn a {
  border-bottom: 1px solid #d2d3d5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
  color: #333;
}

.news-Btn a:before {
  position: absolute;
  content: '';
  background: #fff;
  height: 1px;
  width: 0%;
  -webkit-transition: .4s;
  transition: .4s;
  left: 0;
  bottom: -1px;
}

.news-Btn a:hover {
  border-bottom: 1px solid #0375c1;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: translateX(0.3rem);
          transform: translateX(0.3rem);
}

.header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 4;

max-width: 1100px;
margin: 0 auto;
}

.header.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.header-hover {
  -webkit-transition: ease-out .7s;
  transition: ease-out .7s;
  padding: 0.5% 0 0;
  border-bottom: 1px solid #fff;
}

.header-hover:hover {
  background: #fff;
}

.header-content {
  max-width: 90%;
  margin: 0 auto;
}

.header-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 1em;
}

.header-head-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-head-button {
  margin: 0 0.2em;
}

.header-head-button a {
  display: block;
  padding: 0.8em 1.5em;
  font-size: 1.1em;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 200px;
  text-align: center;
 /* border: 1px solid #fff; */
}

.header-head-button a:hover {
  color: #333;
}

.header-head-color-green {
  background: #1b435d;
  -webkit-transition: .3s;
  transition: .3s;
}

.header-head-color-green a:hover {
  background: #fff;
  border: 1px solid #42bf86;
  -webkit-transition: .3s;
  transition: .3s;
}

.header-head-color-yellow {
  background: #f99f48;
  -webkit-transition: .3s;
  transition: .3s;
}

.header-head-color-yellow a:hover {
  background: #fff;
  border: 1px solid #ffcd35;
  -webkit-transition: .3s;
  transition: .3s;
}

.header-logo {
  width: 250px;
}

@media (max-width: 768px) {
  .header-logo {
    width: 150px;
    margin: 0 2%;
  }
}

.header-menu-sp {
  display: none;
}

@media (max-width: 960px) {
  .header-menu-sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 999;
  }
}

.breadcrumb-content-inner {
  margin: 0 2%;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .breadcrumb-list-01 {
    width: 50px;
  }
}

.breadcrumb-list-01 a {
  padding: 0 0 0 1em;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* 横並びに配置 */
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* 垂直方向の中央揃え */
  text-decoration: none;
  /* 下線を除去 */
  color: #0375c1;
  /* テキストカラー */
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  /* ホバー時のアニメーション */
}

.breadcrumb-list-01 a:after {
  content: "\f015";
  /* Font Awesomeアイコン（家アイコン） */
  font-family: "Font Awesome 6 Free";
  /* Font Awesomeのフォントファミリー */
  font-weight: 900;
  /* Font Awesomeのスタイルを適用 */
  margin-left: 8px;
  /* テキストとの間隔 */
  color: #0375c1;
  /* アイコンカラー */
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  /* ホバー時のアニメーション */
  left: 0;
  margin: 0;
  font-size: 0.8125em;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li a {
  color: #0375c1;
  font-size: 1em;
}

@media (max-width: 600px) {
  .breadcrumb li a {
    font-size: 0.75em;
  }
}

.breadcrumb li a:hover {
  border-bottom: 1px solid #0375c1;
  -webkit-transition: .3s;
  transition: .3s;
}

.breadcrumb li span {
  font-size: 0.875em;
}

@media (max-width: 600px) {
  .breadcrumb li span {
    font-size: 0.75em;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .Breadcrumb-Separator {
    font-size: 0.625em;
  }
}

.Backtop {
  margin: 0 auto;
  padding: 0.5em 0;
}

@media (max-width: 600px) {
  .Backtop {
    margin: 5% auto 10%;
  }
}

.Backtop a {
  display: block;
  width: 60px;
  height: 60px;
  background: #fdfbf6;
  border-radius: 100%;
  margin: 2% auto;
}

.Backtop a:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  margin: 0;
  padding: 0;
  top: 40%;
  content: '\f106';
  font-size: 1.5625em;
  color: #333;
}

.Backtop a span {
  font-size: 0.75em;
  display: block;
  text-align: center;
  color: #333;
  padding: 63% 0 0;
}

.footer {
  background: #b4e1ff;
  padding: 2em 0 0;
  margin: 2em auto 0;
}

.footer-menu {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .footer-menu {
    padding: 0 1%;
  }
}

@media (max-width: 600px) {
  .footer-menu {
    padding: 0 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.footer-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  padding: 0 0 2em;
}

@media (max-width: 768px) {
  .footer-inner {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer-inner > .menu-item {
  font-size: 1.0625em;
  text-align: left;
  width: calc(91% / 3);
}

@media (max-width: 768px) {
  .footer-inner > .menu-item {
    width: calc(93% / 2);
  }
}

.footer-inner > .menu-item a {
  color: #333;
  position: relative;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.footer-inner > .menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #0375c1;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.footer-inner > .menu-item a:hover {
  color: #7fbfff;
}

.footer-inner > .menu-item a:hover::after {
  width: 100%;
}

.footer .sub-menu {
  margin: 0.5em 0 0 1.3em;
}

.footer .sub-menu > .menu-item {
  position: relative;
  padding-left: 0.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer .sub-menu > .menu-item::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.6875em;
  color: #0375c1;
}

.footer .sub-menu > .menu-item a {
  color: #666;
  font-size: 0.875em;
}

.copyright {
  font-size: 0.8125em;
  text-align: center;
  margin: 0.5em auto 0;
}

@media (max-width: 768px) {
  .copyright {
    font-size: 0.6875em;
    margin: 0 0 9%;
  }
}

@media (max-width: 600px) {
  .copyright {
    margin: 0 0 19%;
  }
}

@media (max-width: 768px) {
  #footerFloatingMenu {
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 9999;
    text-align: center;
    padding: 0.5%;
    background: #f7f5f1;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  }
}

.floating-menu {
  display: none;
}

@media (max-width: 768px) {
  .floating-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.floating-inner {
  display: none;
}

@media (max-width: 768px) {
  .floating-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .floating-inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.floating-item {
  width: calc(100%/ 2);
  border-right: 1px solid #fff;
  display: block;
  padding: 1em;
  background: #ddd;
}

.floating-item a {
  color: #333;
  font-size: 0.875em;
}

.floating-item:nth-of-type(2) {
  border-right: none;
  background: #aa7b1e;
}

.floating-item:nth-of-type(2) a {
  color: #fff;
}

html, body, div, span, applet, object, iframe,
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  padding: 0;
  border: 0;
  margin: 0;
  vertical-align: baseline;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

table, caption, tbody, tfoot, thead, tr, th, td {
  font-size: 100%;
  font: inherit;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 2.0;
  word-wrap: break-word;
  text-align: justify;
  text-justify: inter-ideograph;
  overflow: hidden;
  min-width: 100%;
  font-size: 1.0625em;
  color: #333;
}

ol, ul {
  list-style: none;
  text-decoration: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

input {
  border: 0;
  background: none;
  font-family: 'Noto Sans', sans-serif;
}

textarea {
  border: 0;
  background: #fff;
  font-family: 'Noto Sans', sans-serif;
}

a {
  color: #0044cc;
}

.type-A {
  display: none;
}

p, span, a {
  letter-spacing: 1px;
  font-size: 1.0625em;
}

@media (max-width: 600px) {
  p, span, a {
    font-size: 0.875em;
  }
}

p {
  margin: 1em 0;
}

html {
  overflow: auto;
  font-size: 100%;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .inner {
    padding: 0 1em;
  }
}

.Under {
  border-bottom: 1px solid #0044cc;
  font-weight: 500;
  color: #0375c1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.Under:after {
  font-family: "FontAwesome";
  content: "\f08e";
  font-size: 0.9em;
  margin: 0 3px 0 2px;
}

.-bold {
  font-weight: bold;
}

.IconCom {
  position: relative;
}

.IconCom::after {
  content: "\f054";
  position: absolute;
  font-family: "FontAwesome";
  font-size: 1em;
  margin: 0 5px 0 3px;
}

.wrapper {
  /* スマートフォン用スタイル */
  /* =============================
    ページネーションの見栄えを調整
============================= */
  /* ==========================
    円形のページネーションを作成
  ========================== */
}

.wrapper-common-heading {
  font-size: 2.25em;
  border-bottom: 2px solid #1b435d;
  color: #1b435d;
  margin: 1em 0 0;
text-align: center;
font-family: "Kiwi Maru", serif;
}

@media (max-width: 980px) {
  .wrapper-common-heading {
    font-size: 1.5625em;
  }
}

.wrapper-common-subheading {
  font-size: 1.5625em;
  border-bottom: 2px solid #0375c1;
  margin: 0.5em 0 0;
}

@media (max-width: 600px) {
  .wrapper-common-subheading {
    font-size: 1.25em;
  }
}

.wrapper-content {
  margin: 1em 0;
}

.wrapper-text {
  line-height: 1.8;
  text-align: left;
}

.wrapper-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.wrapper-side {
  width: 30%;
}

@media (max-width: 600px) {
  .wrapper-side {
    width: 100%;
    margin: 2em auto;
  }
}

.wrapper-main {
  width: 67%;
  margin: 0 0 0 3%;
}

@media (max-width: 600px) {
  .wrapper-main {
    width: 100%;
    margin: 2em auto;
  }
}

.wrapper-column-2items {
  width: calc(94% / 2);
  margin: 1%;
}

.wrapper-column-3items {
  width: calc(94% / 3);
  margin: 1%;
}

@media (max-width: 600px) {
  .wrapper-column-3items {
    width: calc(94% / 2);
  }
}

.wrapper-column-4items {
  width: calc(92% / 4);
  margin: 1%;
}

@media (max-width: 600px) {
  .wrapper-column-4items {
    width: calc(94% / 2);
  }
}

.wrapper-column-subtext {
  margin: 1% auto;
  font-size: 0.875em;
  text-align: center;
  display: block;
  color: #333;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.wrapper-column-subtext:hover {
  color: #7fbfff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.wrapper-remarks {
  display: block;
}

.wrapper-images__figure {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.wrapper-images__figure img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.wrapper-images__figure:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  /* Zoom in the image */
}




.wrapper-common-button a {
  display: block;
  width: 300px;
  text-align: center;
  padding: 1em;
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #f99f48;
text-align: center !important;
  /* 水平方向の中央揃え */
  margin: 0 0 0 auto;

}

.wrapper-common-button a :hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
text-align: center !important;
  /* 水平方向の中央揃え */
  margin: 0 0 0 auto;
}

.wrapper-common-button .-orange {
  background: #f99f48;
text-align: center !important;
  /* 水平方向の中央揃え */
  margin: 0 0 0 auto;

}

.wrapper-common-button .-orange :hover {
  background: #ffd572;
text-align: center !important;
  /* 水平方向の中央揃え */
  margin: 0 0 0 auto;
}

.wrapper-common-button .-blue {
  background: #78bbe6;
text-align: center !important;
  /* 水平方向の中央揃え */
  margin: 0 0 0 auto;
}

.wrapper-common-button .-blue :hover {
  background: #0375c1;
text-align: center !important;
  /* 水平方向の中央揃え */
  margin: 0 auto;
}

.wrapper-common-border {
  border: 2px solid #ddd;
  padding: 1em;
  border-radius: 5px;
  background-image: -webkit-repeating-linear-gradient(45deg, #dcdcdc1f, #dcdcdc1f 3px, transparent 3px, transparent 13px);
  background-image: repeating-linear-gradient(45deg, #dcdcdc1f, #dcdcdc1f 3px, transparent 3px, transparent 13px);
}

.wrapper-common-bg_grid {
  background-image: -webkit-linear-gradient(transparent calc(100% - 1px), #ddd 50%, #ddd), -webkit-linear-gradient(left, transparent calc(100% - 1px), #ddd 50%, #ddd);
  background-image: linear-gradient(transparent calc(100% - 1px), #ddd 50%, #ddd), linear-gradient(90deg, transparent calc(100% - 1px), #ddd 50%, #ddd);
  background-repeat: repeat;
  background-size: 16px 16px;
  padding: 1.5em;
}

@media (max-width: 600px) {
  .wrapper .is-style-stripes tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #ddd;
  }
}

@media (max-width: 600px) {
  .wrapper .is-style-stripes td {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: none;
  }
}

@media (max-width: 600px) {
  .wrapper .is-style-stripes td:first-child {
    font-weight: bold;
    background-color: #f5f5f5;
  }
}

.wrapper .side-content-text {
  font-size: 0.875em;
}

.wrapper .red {
  color: #a3130e;
}



.wrapper .circle-pagination {
  position: relative;
  width: 25px;
  height: inherit;
  z-index: 1;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
  opacity: 1;
  display: inline-block;
  outline: none;
}

.wrapper .circle-pagination .circle-pagination__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #bfbfbf;
  font-size: 12px;
  font-weight: 500;
  position: relative;
}

.wrapper .circle-pagination__inner svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}

.wrapper .circle-pagination__inner circle {
  fill: transparent;
  stroke: #0375c1;
  stroke-width: 1.5;
  -webkit-animation: circle 5s linear forwards;
          animation: circle 5s linear forwards;
}

@-webkit-keyframes circle {
  0% {
    stroke-dasharray: 0 69;
  }
  99.9%,
  to {
    stroke-dasharray: 69 69;
  }
}

@keyframes circle {
  0% {
    stroke-dasharray: 0 69;
  }
  99.9%,
  to {
    stroke-dasharray: 69 69;
  }
}


#Chase a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#Chase a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wp-block-separator {
  margin: 0;
}

.wp-block-heading {
  margin: 1em 0 0;
}

@media (max-width: 600px) {
  .wp-block-heading {
    font-size: 1.5625em;
  }
}

.under-line {
  border-bottom: 2px solid #0375c1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto 0;
}

@media (max-width: 600px) {
  .wp-block-haeding-common {
    font-size: 1.5625em !important;
  }
}

@media (max-width: 600px) {
  .wp-block-text-common {
    font-size: 0.9625em !important;
  }
}

@media (max-width: 600px) {
  .wp-block-text-left {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .sp-16 {
    font-size: 1em !important;
  }
}

@media (max-width: 600px) {
  .sp-18 {
    font-size: 1.1em !important;
  }
}

/* 改行 */
.pc-only {
  display: none;
}

.sp-only {
  display: none;
}

@media (min-width: 960px) {
  .pc-only {
    display: inline;
  }
}

@media (max-width: 960px) {
  .sp-only {
    display: inline;
  }
}

.padding-top-2 {
  padding-top: 2em;
}

.padding-top-3 {
  padding-top: 3em;
}

.padding-bottom-3 {
  padding-bottom: 3em;
}

.margin-0 {
  margin: 0;
}

.margin-1 {
  margin: 1em auto;
}

@media (min-width: 600px) {
  .l-content {
    padding-top: 4em;
  }
}

.l-content {
  margin: 0 auto 4em;
  padding-top: 2em;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hover-line-blue {
  position: relative;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.hover-line-blue::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #0375c1;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.hover-line-blue:hover {
  color: #7fbfff;
}

.hover-line-blue:hover::after {
  width: 100%;
}

.search-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background-color: #f8f9fa;
}

.search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 30px;
  overflow: hidden;
  background-color: #fff;
}

.search-input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  outline: none;
}

.search-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.search-button:hover {
  background-color: #0056b3;
}

/* カラムの高さ合わせる */
@media (min-width: 960px) {
  .eight-frame1006-main .ark-block-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .eight-frame1006-arrange {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 10px;
    border: 2px solid #d2d3d5;
  }
  .eight-frame1006-arrange .wp-block-group__inner-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .eight-frame1006-arrange .wp-block-group__inner-container .eight-frame1006-arrange-text {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.ark-block-toc {
  border-bottom: 3px double #0375c1;
  border-top: 3px double #0375c1;
  max-width: 900px;
  margin: 1em auto 2.5em;
}

.ark-block-toc ::marker {
  color: #059bff;
}

/*side全体*/
.sidebar {
  width: 30%;
  margin: 0 0 5%;
  padding: 0 1%;
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin: 15% auto 0;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (max-width: 600px) {
  .sidebar {
    display: block;
  }
}

.archives {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: 'Noto Sans', sans-serif;
  margin: 5% auto;
}

.archives-Tit {
  text-align: center;
  color: #333;
  background: #ddd;
  padding: 5%;
  font-size: 1em;
}

@media (max-width: 600px) {
  .archives {
    display: block;
    margin: 2% 0 0;
  }
}

/*--------------------Accordion*/
.accordion {
  position: relative;
}

.accordion li {
  text-align: center;
}

.accordion-Year {
  display: block;
  color: #333;
  font-size: 1em;
  padding: 5%;
  text-align: center;
}

.accordion-Year:hover {
  background: #fff;
  color: #333;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 15px 20px rgba(216, 214, 206, 0.4);
          box-shadow: 0px 15px 20px rgba(216, 214, 206, 0.4);
}

.accordion-Year.open:hover {
  background: #fff;
  color: #333;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/*Accordionの中身*/
.accordionInner {
  display: none;
  padding: 10px;
  font-size: 1em;
}

.accordionInner-Item {
  border-top: 1px dashed #ccc;
}

.accordionInner-Item--01 {
  display: block;
  padding: 5%;
  text-decoration: none;
  color: #333;
  text-align: center;
}

.accordionInner-Item--01:hover {
  background: #059bff;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.categories {
  margin: 0 0 10%;
  font-family: 'Noto Sans', sans-serif;
}

.categories-Tit {
  color: #333;
  background: #ddd;
  text-align: center;
  padding: 6%;
  font-size: 1em;
}

.categories-menu {
  text-align: center;
}

/*//ここからli aのクラス名*/
.cat-item {
  border-radius: 10px;
  margin: 1% auto;
}

.cat-item a {
  font-size: 1em;
  padding: 5%;
  display: block;
  text-decoration: none;
  color: #333;
}

.cat-item a:hover {
  -webkit-box-shadow: 0px 15px 20px rgba(216, 214, 206, 0.4);
          box-shadow: 0px 15px 20px rgba(216, 214, 206, 0.4);
  -webkit-transition: .5s;
  transition: .5s;
}

/*Pagenation*/
.pagenation {
  margin: 1em 0;
}

.pagenation :after, .pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.pagenation ul {
  margin: 0;
}

.pagenation li {
  float: left;
  list-style: none outside none;
  margin-left: 3px;
}

.pagenation li:first-child {
  margin-left: 0;
}

.pagenation li.active {
  background-color: #059bff;
  border-radius: 3px;
  color: #fff;
  cursor: not-allowed;
  padding: 10px 20px;
}

.pagenation li a {
  background: none repeat scroll 0 0 #ccc;
  border-radius: 3px;
  color: #fff;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .pagenation li a {
    padding: 10px 16px;
  }
}

.pagenation li a:hover {
  background-color: #059bff;
  color: #fff;
  opacity: 0.8;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

/*post---------------------------------
---------------------------------------*/
.PathnaviTit {
  margin: 2% 0;
  border-bottom: 2px dashed #ffb6c1;
  padding: 0 0 1%;
  font-size: 1em;
  max-width: 300px;
}

.Pathnavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.Pathnavi__Item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.Pathnavi__Item a {
  display: block;
  margin: 0 0 0 2%;
  font-size: 0.5em;
  color: #333;
}

.Pathnavi__Item a span {
  color: #333;
}

.Pathnavi__Item a:hover {
  -webkit-transition: .9s;
  transition: .9s;
  color: #7fbfff;
}

.resulte {
  text-align: center;
  font-size: 1.125em;
  margin: 3% auto;
}

.no-page {
  text-align: center;
  font-size: 1em;
  margin: 6% auto;
}

@media (max-width: 600px) {
  .no-page {
    font-size: 0.875em;
  }
}

.link {
  text-align: center;
}

.menu-search {
  /* width: 20%; */
margin: 0 auto;
}

@media (max-width: 768px) {
  .menu-search {
    margin: 0 auto;
    width: 80%;
  }
}

.search {
  position: relative;
  margin-bottom: 20px;
}

.search-inner {
  height: 50px;
  padding: 0 10px;
  width: 80%;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #333;
}

@media (max-width: 768px) {
  .search-inner {
    width: 220px;
  }
}

.search-icon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: #aa7b1e;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.search-icon:hover {
  background: #ccc;
  color: #f7f5f1;
  -webkit-transition: .5s;
  transition: .5s;
}

.post-date {
  padding: 2% 0;
}

.post-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 2% 2% 0;
  width: 70%;
}

@media (max-width: 768px) {
  .post-inner {
    margin: 0 auto 10%;
    width: 90%;
  }
}

@media (max-width: 600px) {
  .post-inner {
    width: 100%;
  }
}

.post-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.post-category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.post-category .CategoryName {
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.post-category .CategoryName a {
  display: block;
  font-size: 0.75em;
  padding: 0.4em;
  background: #7fbfff;
  border-radius: 10px;
  margin: 0 0.2em;
  color: #fff;
}

.post-time {
  position: relative;
  line-height: 2;
}

@media (max-width: 600px) {
  .post-time {
    width: 100%;
  }
}

.post-time .time-icon {
  font-size: 0.75em;
  display: initial;
  padding: 0 0 0 1.5%;
}

.post-time .time-icon::after {
  font-size: 14px;
  color: #989999;
  left: 0px;
  top: 50%;
  line-height: 3px;
  margin: 0;
  font-weight: 100;
}

.post .release::after {
  content: "\f073";
}

.related {
  /*スクロールバーの軌道*/
  /*スクロールバーの動く部分*/
}

.related-heading {
  font-size: 1.375em;
  border-bottom: 2px solid #0375c1;
  margin: 0.5em 0 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 600px) {
  .related-heading {
    font-size: 1.125em;
  }
}

.related-Inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 auto 4%;
}

@media (max-width: 600px) {
  .related-Inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: inherit;
        -ms-flex-wrap: inherit;
            flex-wrap: inherit;
    padding: 8% 3% 5%;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

.related-inner::-webkit-scrollbar {
  height: 3px;
}

.related-inner::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(126, 117, 117, 0.1);
          box-shadow: inset 0 0 6px rgba(126, 117, 117, 0.1);
}

.related-inner::-webkit-scrollbar-thumb {
  background-color: #3333337d;
  border-radius: 10px;
}

.related-heading {
  text-align: center;
  margin: 8% auto 1%;
  max-width: 400px;
  text-transform: uppercase;
}

.related .related-post {
  width: calc(100% / 4 - 40px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 20px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .related .related-post {
    width: 200px;
    overflow: visible;
  }
}

.related .related-post-thumb {
  text-align: center;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  border: 1px solid #ddd;
}

.related .related-post-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
  aspect-ratio: 16/9;
}

.related .related-post-thumb :hover img {
  overflow: hidden;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
  border-radius: 10px;
  opacity: 0.7;
}

.related .related-post-heading {
  font-size: 0.875em;
  padding: 2%;
  line-height: 1.7;
  border-bottom: 1px solid #0375c1;
}

@media (max-width: 600px) {
  .related .related-post-heading {
    font-size: 0.875em;
    padding: 2%;
    margin: 2% auto;
  }
}

.related .related-post-heading span {
  border-bottom: 1px solid #0375c1;
  display: block;
}

.related .related-post-heading a {
  font-size: 0.875em;
}

.related .related-post-heading :hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: underline;
}

.postlist-date {
  margin: 2% 2% 2% 0;
  font-size: 0.875em;
  border: 1px solid #0375c1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.7em;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .postlist-date {
    font-size: 0.75em;
  }
}

.postlist-catalog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media (max-width: 768px) {
  .postlist-catalog {
    display: block;
  }
}

@media (max-width: 600px) {
  .postlist-catalog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin: 0 auto;
  }
}

.postlist-inner {
  width: 65%;
  margin: 0 2% 2% 0;
}

@media (max-width: 768px) {
  .postlist-inner {
    width: 100%;
    margin: 3% auto;
  }
}

@media (max-width: 600px) {
  .postlist-inner {
    margin: 0 auto 10%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}

/*-------------------
loop-main*/
.postloop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.postloop-inner {
  position: relative;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  margin: 0 2% 3% 0;
  width: calc(96% / 2);
}

@media (max-width: 768px) {
  .postloop-inner {
    margin: 2% 1%;
  }
}

.postloop-img {
  text-align: center;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  margin: 0 auto;
}

.postloop-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
  aspect-ratio: 16/9;
}

.postloop-img img:hover {
  overflow: hidden;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
  border-radius: 10px;
}

.postloop-text {
  padding: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.postloop-entryinfo {
  text-align: center;
}

.postloop-date {
  font-size: 0.875em;
  text-align: end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0 0 1em;
}

@media (max-width: 600px) {
  .postloop-date {
    font-size: 0.75em;
    width: 95px;
  }
}

.postloop-date::after {
  content: "\f017";
  font-size: 12px;
  color: #989999;
  left: 0;
  top: 50%;
  margin: 0;
  margin-top: -8.1px;
}

.postloop-heading {
  font-size: 1em;
  padding: 2%;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .postloop-heading {
    font-size: 0.875em;
    padding: 2%;
    margin: 2% auto;
  }
}

.postloop-heading span {
  border-bottom: 1px solid #0375c1;
  display: block;
}

.postloop-text-01 {
  padding: 0.7em;
  line-height: 1.5;
  font-size: 0.75em;
}

.postloop-button {
  margin: 3% auto;
  position: relative;
  width: 70%;
}

@media (max-width: 768px) {
  .postloop-button {
    width: 90%;
  }
}

.postloop-button a {
  width: 200px;
  height: 45px;
  font-size: 14px;
  letter-spacing: 2.5px;
  font-weight: 500;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-align: center;
  line-height: 45px;
  color: #333;
  display: block;
  margin: 1em auto;
  border-radius: 10px;
}

.postloop-button a:hover {
  background-color: #0375c1;
  -webkit-box-shadow: 0px 15px 20px #DDD;
          box-shadow: 0px 15px 20px #DDD;
  color: #fff;
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

.wrapper-Tit {
  font-size: 1.125em;
  text-align: center;
  margin: 0 auto 2%;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .wrapper-Tit {
    font-size: 1em;
  }
}

.wrapper-Tit span {
  display: block;
  max-width: 20px;
  margin: 0 auto;
  border: 0.3px solid #0375c1;
}

.wrapper-Text {
  text-align: center;
  margin: 2% auto;
}

@media (max-width: 600px) {
  .wrapper-Text {
    width: 90%;
  }
}

.wrapper-Btn {
  margin: 2% auto;
}

.wrapper .ComBtn a {
  max-width: 200px;
  display: block;
  color: #333;
  border-bottom: 1px solid #d2d3d5;
  text-align: center;
  padding: 0.5% 0;
  margin: 0 auto;
  -webkit-transition: ease-out .5s;
  transition: ease-out .5s;
}

.wrapper .ComBtn a:hover {
  -webkit-transition: ease-in .5s;
  transition: ease-in .5s;
  background: #f7f5f1;
}

.wrapper .ComBtn02 {
  max-width: 250px;
  margin: 2% auto;
}

.wrapper .ComBtn02 a {
  display: block;
  padding: 5%;
  color: #333;
  -webkit-transition: .3s;
  transition: .3s;
  text-align: center;
  border-bottom: 1px solid #d2d3d5;
}

.wrapper .ComBtn02 a:after {
  content: "\f249";
  font-size: 20px;
  color: #333;
  left: 30px;
  top: 50%;
  margin-top: -14.7px;
}

.wrapper .ComBtn02 a:hover {
  -webkit-transition: .3s;
  transition: .3s;
  background: #f7f5f1;
}

.wrapper .ComBtn02 .InstaIcon:after {
  content: "\f16d";
  font-size: 20px;
  color: #333;
  left: 30px;
  top: 50%;
  margin-top: -14.7px;
}

.wrapper .Concept {
  margin: 8% auto 0;
  background: #7fbfff;
  padding: 2% 0;
}

.wrapper .Concept-Text {
  text-align: center;
  line-height: 2;
}

@media (max-width: 768px) {
  .wrapper .Concept-Text {
    padding: 0 3%;
  }
}

.wrapper .Concept-Text a {
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  color: #333;
  line-height: 3;
  font-size: 0.8125em;
}

.wrapper .Concept-Text a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 0.5px;
  background: #0375c1;
  bottom: -1px;
  opacity: 0;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.wrapper .Concept-Text a:hover::after {
  opacity: 1;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.wrapper .Blog {
  position: relative;
  margin: 8% auto 0;
}

@media (max-width: 600px) {
  .wrapper .Blog {
    margin: 5rem auto 0;
  }
}

.wrapper .Blog-Area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 auto;
  width: 80%;
}

@media (max-width: 600px) {
  .wrapper .Blog-Area {
    width: 90%;
  }
}

.wrapper .Blog-Inner {
  position: relative;
  width: calc(100% / 4);
}

@media (max-width: 600px) {
  .wrapper .Blog-Inner {
    width: calc(100% / 2);
  }
}

.wrapper .Blog-Img {
  text-align: center;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper .Blog-Img:hover a {
  opacity: 1;
}

.wrapper .Blog-Img a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  color: #333;
  background-color: #e7e7e769;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wrapper .Blog-Img img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
  width: 100%;
}

.wrapper .Blog-Img img:hover {
  overflow: hidden;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.7s;
          transition-duration: 0.7s;
  border-radius: 10px;
}

.Insta {
  margin: 8% auto 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 4%;
}

@media (max-width: 600px) {
  .Insta {
    display: block;
    margin: 5rem auto 0;
  }
}

.Insta-Main {
  margin: 0 auto;
}

@media (max-width: 600px) {
  .Insta-Main {
    margin: 0 auto;
    width: 90%;
  }
}

.Insta #sb_instagram {
  padding-bottom: 0 !important;
}

@media (max-width: 600px) {
  .Insta .sbi_item {
    width: 33% !important;
  }
}

@media (max-width: 600px) {
  .Insta #sbi_images {
    flex-wrapper: wrapper !important;
  }
}

.radioactivity {
  margin: 20px;
}

.radioactivity__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .radioactivity__header {
    display: block;
  }
}

.radioactivity__column {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 1%;
}

@media (max-width: 600px) {
  .radioactivity__column {
    width: 100%;
    margin: 1%;
  }
}

.radioactivity__label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.radioactivity__select {
  width: 100%;
  padding: 8px;
  font-size: 14px;
}

.radioactivity__button {
  padding: 10px 20px;
  background-color: #0375c1;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.radioactivity__button:hover {
  background-color: #7fbfff;
}

.radioactivity__info {
  margin-bottom: 20px;
}

.radioactivity__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.radioactivity__table-container {
  overflow-x: auto;
}

@media (max-width: 600px) {
  .radioactivity__table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.radioactivity .scroll-notice {
  display: none;
  font-size: 14px;
  color: #fff;
  background-color: #f39c12;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .radioactivity .scroll-notice {
    display: block;
  }
}

.radioactivity__table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.radioactivity__table-header th {
  background-color: #f4f4f4;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #ddd;
}

.radioactivity__table-body td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

.radioactivity__table-subheading {
  background-color: #e9e9e9;
  padding: 8px;
  font-size: 12px;
  text-align: center;
}

.radioactivity__table-cell {
  font-size: 14px;
}

/* 材料リスト */
.wrapper-column-2items ul {
  list-style-type: disc;
  /* 点付きリスト */
  margin-left: 20px;
  /* 左余白 */
  padding-left: 10px;
  color: #555;
}

.wrapper-column-2items ul li {
  margin-bottom: 8px;
  /* 各アイテムの間隔 */
  line-height: 1.6;
  /* 行間の調整 */
}

.recipe {
  /* 作り方リスト */
  /* 各リストアイテムの強調 */
}

.recipe-heading {
  font-size: 1em;
  color: #333;
  margin-bottom: 10px;
  border-left: 4px solid #f39c12;
  /* 左線のデザイン */
  padding-left: 10px;
}

.recipe-number {
  list-style-type: decimal;
  /* 数字リスト */
  margin-left: 20px;
  padding-left: 10px;
  color: #444;
}

.recipe-number .recipe-items {
  margin-bottom: 10px;
  line-height: 1.6;
}

.recipe ul li::marker {
  color: #f39c12;
  /* リストマーカーの色 */
  font-weight: bold;
}

.results {
  /* ページネーション */
}

.results__count {
  font-size: 18px;
  color: #333;
}

.results .pagination {
  margin-top: 20px;
  text-align: center;
}

.results .pagination__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.results .pagination__item {
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #fff;
}

.results .pagination__item a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}

.results .pagination__item--current a {
  font-weight: bold;
  background-color: #007bff;
  color: #fff;
}

.results .pagination__item--prev a,
.results .pagination__item--next a {
  font-weight: bold;
}

.results .pagination__item:hover a {
  background-color: #f0f0f0;
}

.results-subtext {
  font-size: 0.75em;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f9f9f9;
  /* 背景色 */
}

@media (max-width: 600px) {
  .results-table {
    margin: 1em auto;
  }
}

.results-table__body {
  width: 100%;
}

.results-table__row {
  border: 1px solid #ccc;
}

.results-table__header, .results-table__data {
  padding: 8px 10px;
}

@media (max-width: 600px) {
  .results-table__header, .results-table__data {
    display: block;
    width: 100%;
    text-align: left;
  }
}

.results-table__header {
  background-color: #f4f4f4;
  /* ヘッダー背景色 */
  font-weight: bold;
  width: 30%;
  /* 必要に応じて調整 */
  text-align: left;
}

@media (max-width: 600px) {
  .results-table__header {
    background-color: #eaeaea;
    padding: 5px;
    width: 100%;
  }
}

.results-table__data {
  font-weight: normal;
  text-align: left;
}

.results-table__row:nth-child(odd) {
  background-color: #fcfcfc;
  /* 奇数行の背景色 */
}



.wrapper-common-button {
font-family: "Kiwi Maru", serif;
text-align: center !important;
}


.is-opened>.ark-block-accordion__title .ark-block-accordion__icon {
    transform: rotate(180deg);
background-color:#f99f48;
}

/* faq */



#faq .heading-1 {
    margin-bottom: 75px;
}

#faq .back-bord {
    padding: 55px 0;
}

#faq .back-bord__title {
    font-size: 24px;
    margin-bottom: 20px;
}

#faq_list {
    padding-top: 65px;
    padding-bottom: 78px;
}

.faq__list:not(:last-child) {
    margin-bottom: 60px;
}

.faq__list-btn {
    width: 18px;
    height: 18px;
    position: absolute;
    right: 15px;
    top: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__list-open {
    display: none;
}

.icon:before,
.icon:after {
    position: absolute;
    content: "";
    display: block;
    transition: all 0.4s;
    background: #e95504;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.icon:before {
    width: 2px;
    height: 15px;
    transform: translate(-50%, -50%) rotate(0deg);
}

.icon::after {
    width: 15px;
    height: 2px;
}

/*＋、－切り替え*/
.faq__list li.active .icon:before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__list li {
    position: relative;
}

.faq__list li:first-child:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    height: 3px;
    width: 100%;
    background-size: cover;
}

.faq__list li::after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    height: 3px;
    width: 100%;
    background-size: cover;
}

.faq__list-a,
.faq__list-q {
  /*  padding-top: 20px; */
  /*  padding-bottom: 20px; */
    padding-right: 52px;
}

.faq__list-a span,
.faq__list-q span {
    color: #e95504;
}

.faq__list-q  {
    padding-left: 4.5em;
    text-indent: -2.6em;
}

.faq__list-q span {
    font-size: 16px;
    letter-spacing: 0.25em;
}

.faq__list-a span {
    font-size: 26px;
    letter-spacing: 0.16em;
}

.faq__list-a {
    background: #fef8f1;
    font-size: 18px;
    padding-left: 4.5em;
    text-indent: -2.9em;
}

@media screen and (max-width: 1440px) {
    .inner-1100 {
        padding: 0 5%;
    }

    .back-bord .inner-1000 {
        padding: 0 3%;
    }
}

@media screen and (max-width: 1100px) {

}

@media screen and (max-width: 1000px) {
    
    .inner-1000 {
        padding: 0 3%;
    }


}

@media screen and (max-width: 750px) {

}

@media screen and (max-width: 480px) {
    #faq .back-bord__title {
        font-size: 18px;
    }

    .faq__list-q {
        font-size: 13px;
        text-indent: -3em;
    }

    .faq__list-a {
        font-size: 15px;
    }
}

@media screen and (max-width: 375px) {
    
}


.c-arrow-label {
  margin: 100px auto;
  width: 100%;
  max-width: 200px;
font-family: "Kiwi Maru", serif;
}
.c-arrow-label__item {
  position: relative;
  background-color: #f99f48;
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  height: 50px;
  width: 100%;
  &::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    border-top: solid 25px transparent;
    border-bottom: solid 25px transparent;
    border-left: solid 20px  #f99f48;
  }
}

.c-arrow-label2 {
  margin: 100px auto;
  width: 100%;
  max-width: 200px;
font-family: "Kiwi Maru", serif;
}
.c-arrow-label2__item {
  position: relative;
  background-color: #78bbe6;
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  height: 50px;
  width: 100%;
  &::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    border-top: solid 25px transparent;
    border-bottom: solid 25px transparent;
    border-left: solid 20px  #78bbe6;
  }
}

/*コピーペーストして作るとき移動させたら更新
@import  "./base/lib/variables";
@import  "./base/lib/mixins";
これがトップにこないと反映されない*/

/*# sourceMappingURL=css/styles.css.map */
