@charset "UTF-8";
/* CSS Document */ /* ###################  ブレイクポイントの設定  ################### */
/*ブレイクポイント*/
/* ###################  ブレイクポイントの設定  ################### */
/*ブレイクポイント*/
/* ####  マージン　パディング  #####*/
.mt_00 {
  margin-top: 0px !important;
}

.mb_00 {
  margin-bottom: 0px !important;
}

.pt_00 {
  padding-top: 0px !important;
}

.pb_00 {
  padding-bottom: 0px !important;
}

.mt_10 {
  margin-top: 10px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.pt_10 {
  padding-top: 10px !important;
}

.pb_10 {
  padding-bottom: 10px !important;
}

.mt_20 {
  margin-top: 20px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.pt_20 {
  padding-top: 20px !important;
}

.pb_20 {
  padding-bottom: 20px !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.pt_30 {
  padding-top: 30px !important;
}

.pb_30 {
  padding-bottom: 30px !important;
}

.mt_40 {
  margin-top: 40px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.pt_40 {
  padding-top: 40px !important;
}

.pb_40 {
  padding-bottom: 40px !important;
}

.mt_50 {
  margin-top: 50px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.pt_50 {
  padding-top: 50px !important;
}

.pb_50 {
  padding-bottom: 50px !important;
}

.mt_60 {
  margin-top: 60px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

.pt_60 {
  padding-top: 60px !important;
}

.pb_60 {
  padding-bottom: 60px !important;
}

.mt_70 {
  margin-top: 70px !important;
}

.mb_70 {
  margin-bottom: 70px !important;
}

.pt_70 {
  padding-top: 70px !important;
}

.pb_70 {
  padding-bottom: 70px !important;
}

.mt_80 {
  margin-top: 80px !important;
}

.mb_80 {
  margin-bottom: 80px !important;
}

.pt_80 {
  padding-top: 80px !important;
}

.pb_80 {
  padding-bottom: 80px !important;
}

.mt_90 {
  margin-top: 90px !important;
}

.mb_90 {
  margin-bottom: 90px !important;
}

.pt_90 {
  padding-top: 90px !important;
}

.pb_90 {
  padding-bottom: 90px !important;
}

.mt_100 {
  margin-top: 100px !important;
}

.mb_100 {
  margin-bottom: 100px !important;
}

.pt_100 {
  padding-top: 100px !important;
}

.pb_100 {
  padding-bottom: 100px !important;
}

/*    タグリセット      */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans", "NotoSansCJKjp", "Noto Sans CJK JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth; /* JSでスクロールしないので有効にしてOK */
  scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
}

header, main, section, div, article {
  box-sizing: border-box;
}

ul, dl, ol {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  box-sizing: border-box;
}

img {
  vertical-align: top;
}

@media screen and (max-width: 640px) {
  .disp_pc {
    display: none !important;
  }
}

@media screen and (max-width: 800px) {
  .disp_w1000 {
    display: none !important;
  }
}

.disp_pad {
  display: none !important;
}
@media screen and (max-width: 800px) {
  .disp_pad {
    display: block !important;
  }
}

.disp_sp {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .disp_sp {
    display: block !important;
  }
}

.center {
  text-align: center;
}

/* header */
header {
  position: fixed;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  font-weight: 700;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1000px) {
  header {
    height: 60px;
  }
}
@media screen and (max-width: 800px) {
  header {
    left: 999px;
    display: block;
    height: 100%;
  }
}
header section {
  width: 96%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1380px;
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  header section {
    gap: 6px;
  }
}
@media screen and (max-width: 800px) {
  header section {
    width: 90%;
    max-width: none;
    flex-direction: column;
  }
}
header section img {
  width: 100%;
  height: auto;
}
header div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  header div {
    justify-content: flex-start;
  }
}
header .logo_area {
  width: 17%;
}
@media screen and (max-width: 800px) {
  header .logo_area {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0%;
    justify-content: flex-start;
    align-content: center;
    background: rgb(255, 255, 255);
    padding: 0 0 0 4%;
    min-height: 56px;
  }
}
header .logo_area img {
  max-width: 220px;
}
@media screen and (max-width: 800px) {
  header .logo_area img {
    width: 25%;
    min-width: 133px;
  }
}
header .tel_area {
  width: 12.7%;
  margin-right: 10px;
}
@media screen and (max-width: 800px) {
  header .tel_area {
    position: fixed;
    right: 172px;
    width: 30px;
    top: 10px;
  }
}
header .tel_area img {
  max-width: 166px;
}
@media screen and (max-width: 800px) {
  header .tel_area img {
    width: 100%;
    height: auto;
  }
}
header .cta_area {
  width: 12.3%;
  max-width: 146px;
}
@media screen and (max-width: 800px) {
  header .cta_area {
    position: fixed;
    right: 80px;
    width: 96px;
    max-width: 96px;
    top: 10px;
  }
}
header .cta_area img {
  max-width: 146px;
  height: auto;
}
@media screen and (max-width: 800px) {
  header .cta_area img {
    width: auto;
    height: 30px;
  }
}
header .cta_area a {
  color: #003988;
}
header .insta_area {
  max-width: 48px;
  width: 4%;
}
@media screen and (max-width: 800px) {
  header .insta_area {
    position: fixed;
    right: 50px;
    width: 30px;
    max-width: 96px;
    top: 10px;
  }
}
header .insta_area img {
  width: 100%;
  height: auto;
}
header ol {
  display: flex;
  font-size: 10pt;
  justify-content: space-evenly;
  width: 68%;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  header ol {
    font-size: 8pt;
  }
}
@media screen and (max-width: 800px) {
  header ol {
    flex-direction: column;
    font-size: 10pt;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  header ol {
    width: 100%;
    margin-top: 12%;
  }
}
header li {
  list-style: none;
}
header li.is-current a {
  color: #003988;
}
@media screen and (max-width: 800px) {
  header li {
    border-bottom: 1px solid #aaa;
    padding: 10px 5px;
  }
}
header li a {
  color: #000;
}
header .gnav-toggle {
  display: none;
}
@media screen and (max-width: 800px) {
  header .gnav-toggle {
    position: fixed;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-width: 2px;
    border-style: solid;
    border-color: #003988;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 1002;
    box-sizing: border-box;
    display: block;
  }
}
header .gnav-toggle__bar {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  height: 2px;
  width: 13px;
  border-radius: 1px;
  background-color: #003988;
  transform-origin: 50% 50%;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform: translate(-50%, -50%);
}
header .gnav-toggle__bar:nth-child(1) {
  transform: translate(-50%, calc(-50% - 3px));
}
header .gnav-toggle__bar:nth-child(2) {
  transform: translate(-50%, calc(-50% + 3px));
}
@media screen and (max-width: 800px) {
  header.is-open {
    height: 100%;
    background: #fff;
    width: 100%;
    left: 0%;
  }
}
header.is-open .gnav-toggle__bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
header.is-open .gnav-toggle__bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.headlineEng {
  font-family: "Instrument Sans", sans-serif;
  color: #003988;
  font-weight: 600;
  font-size: clamp(10px, 1.4vw, 13px);
  letter-spacing: 0.12em;
}

.headlineLarge {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.6em;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.readCopy {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(12px, 2.4vw, 14px);
  line-height: 2.2em;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 800px) {
  .readCopy {
    line-height: 2em;
  }
}
.readCopy strong {
  color: #003988;
  font-weight: 600;
  font-size: 120%;
}

#pankuzu {
  background: #F4F7FB;
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  #pankuzu {
    margin-top: 60px;
  }
}
@media screen and (max-width: 800px) {
  #pankuzu {
    margin-top: 56px;
  }
}
#pankuzu ul {
  display: flex;
  justify-content: flex-start;
  max-width: 1380px;
  width: 96%;
  margin: 0 auto;
  padding: 6px 2%;
}
#pankuzu ul li {
  font-size: clamp(11px, 1.6vw, 12px);
  display: flex;
}
#pankuzu ul li a {
  color: #003988;
}
#pankuzu ul li .arrow {
  display: flex;
  margin: 0 6px;
  align-items: center;
}

#subpage_cayrgorytitle_basic {
  text-align: center;
  margin: 60px auto;
  padding: 0 4%;
}
@media screen and (max-width: 800px) {
  #subpage_cayrgorytitle_basic {
    margin: 40px auto;
  }
}
#subpage_cayrgorytitle_basic .headlineEng span {
  display: inline-block;
  border-bottom: 2px solid #003988;
  padding-bottom: 6px;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  #subpage_cayrgorytitle_basic .headlineEng span {
    margin-bottom: 10px;
  }
}
#subpage_cayrgorytitle_basic .headlineLarge {
  margin: 0 auto 36px;
}
@media screen and (max-width: 800px) {
  #subpage_cayrgorytitle_basic .headlineLarge {
    margin-bottom: 16px;
  }
}

/* footer */
#sub_footer {
  background: url("../img/footer_bg.png") no-repeat;
  background-size: cover;
  padding: 40px 0 120px 0;
  position: relative;
}
@media screen and (max-width: 800px) {
  #sub_footer {
    background-position: right;
  }
}
#sub_footer .sub_footer_inner {
  max-width: 1440px;
  margin: auto;
}
#sub_footer .title_area {
  margin-left: 13%;
}
@media screen and (max-width: 1000px) {
  #sub_footer .title_area {
    margin-left: 6%;
  }
}
@media screen and (max-width: 640px) {
  #sub_footer .title_area {
    margin-left: 6%;
  }
}
#sub_footer .title_area p {
  color: #003988;
  border-bottom: 2px solid #003988;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 2px;
}
#sub_footer .sub_footer_wrapper {
  width: 88%;
  margin-left: auto;
  display: flex;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper {
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
  }
}
#sub_footer .sub_footer_wrapper .text_area {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 97%;
    margin-left: auto;
  }
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area {
    margin-left: 6%;
  }
}
#sub_footer .sub_footer_wrapper .text_area p {
  writing-mode: vertical-rl;
  display: inline-block;
  margin: 0;
  padding-left: 4px;
  font-size: 8pt;
  letter-spacing: 2px;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area p {
    writing-mode: horizontal-tb;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area p br {
    display: none;
  }
}
#sub_footer .sub_footer_wrapper .text_area h2 {
  writing-mode: vertical-rl; /* 縦書き（右→左） */
  text-orientation: upright; /* 縦中横を制御 */
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  margin: 0 30px 0 10px;
  font-size: 18pt;
  letter-spacing: 2px;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area h2 {
    writing-mode: horizontal-tb;
    display: block;
    margin-left: 0;
  }
}
#sub_footer .sub_footer_wrapper .text_area h2 strong {
  color: #F05A2C;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area h2 br {
    display: none;
  }
}
#sub_footer .sub_footer_wrapper .cta_area {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .cta_area {
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  #sub_footer .sub_footer_wrapper .cta_area {
    flex-wrap: wrap;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div {
  background: #003988;
  border-width: 3px;
  border-style: solid;
  border-color: #C0CBD9;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  max-width: 400px;
  width: 42%;
  /*
  @include mq() {
      width: 86%;
      margin-bottom: 20px;
  }
  */
}
@media screen and (max-width: 800px) {
  #sub_footer .sub_footer_wrapper .cta_area div {
    width: 46%;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div img {
  margin-bottom: 10px;
}
#sub_footer .sub_footer_wrapper .cta_area div p {
  margin: 0;
}
#sub_footer .sub_footer_wrapper .cta_area div h3 {
  margin: 0;
}
@media screen and (max-width: 640px) {
  #sub_footer .sub_footer_wrapper .cta_area div h3 {
    font-size: 12pt;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div .tel {
  color: #F05A2C;
  font-size: 18pt;
  margin: 14px 0;
  font-family: "Instrument Sans", sans-serif;
}
@media screen and (max-width: 640px) {
  #sub_footer .sub_footer_wrapper .cta_area div .tel {
    margin: 6px 0;
    font-size: 16pt;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div .tel a {
  color: #F05A2C;
}
#sub_footer .sub_footer_wrapper .cta_area div .time br {
  display: none;
}
@media screen and (max-width: 800px) {
  #sub_footer .sub_footer_wrapper .cta_area div .time br {
    display: block;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div span {
  background: #fff;
  border-radius: 40px;
  color: #F05A2C;
  display: block;
  width: 60%;
  margin: 10px auto;
  padding: 4px 0;
  font-size: 10pt;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  #sub_footer .sub_footer_wrapper .cta_area div span {
    width: 90%;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div span a {
  color: #F05A2C;
}
#sub_footer .chara {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 10.5%;
  height: auto;
  max-width: 152px;
}
@media screen and (max-width: 640px) {
  #sub_footer .chara {
    width: 20%;
  }
}

#cta_bottom {
  background: url(../img/cta_bottom_background.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 6% 4%;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  #cta_bottom {
    padding-top: 2%;
    padding-bottom: 8%;
  }
}
@media screen and (max-width: 1000px) {
  #cta_bottom {
    padding-top: 6%;
    padding-bottom: 12%;
  }
}
#cta_bottom > div {
  max-width: 960px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12%;
  width: 100%;
}
#cta_bottom .text {
  text-align: left;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1000px) {
  #cta_bottom .text {
    text-align: center;
  }
}
#cta_bottom .text .read_large {
  font-weight: 600;
  font-size: clamp(18px, 2.8vw, 26px);
  letter-spacing: 0.04em;
  margin-top: 8%;
  margin-bottom: 4%;
}
#cta_bottom .text .read_large strong {
  font-size: 160%;
  color: #003988;
}
#cta_bottom .text .read_small {
  margin: 0 0 8%;
  font-size: clamp(13px, 2.4vw, 14px);
}
@media screen and (max-width: 800px) {
  #cta_bottom .text .read_small {
    margin-bottom: 12%;
  }
}
#cta_bottom .button {
  max-width: 400px;
  width: 60%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  #cta_bottom .button {
    width: 92%;
    max-width: 320px;
  }
}
#cta_bottom .cta_button {
  color: #fff;
  font-size: clamp(13px, 2.4vw, 14px);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #003988;
  border-radius: 100px;
  width: 100%;
  padding: 4%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 800px) {
  #cta_bottom .cta_button {
    height: 60px;
  }
}
#cta_bottom .cta_button:hover {
  background: #2664b6;
}
#cta_bottom .cta_button strong {
  font-size: 130%;
  color: #F05A2C;
  letter-spacing: 0.08em;
}
#cta_bottom .cta_button span {
  display: block;
  white-space: nowrap;
}

footer {
  background: #2b2c3b;
  padding: 60px 0 10px 0;
}
@media screen and (max-width: 800px) {
  footer {
    padding: 40px 0 20px 0;
  }
}
footer .footer_inner {
  display: flex;
  width: 80%;
  margin: 0 auto 60px auto;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  footer .footer_inner {
    width: 94%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  footer .footer_inner {
    flex-wrap: wrap;
  }
}
footer .left_column {
  display: flex;
  width: 45%;
  font-size: 10pt;
}
@media screen and (max-width: 1000px) {
  footer .left_column {
    display: flex;
    justify-content: center;
    width: 60%;
  }
}
@media screen and (max-width: 640px) {
  footer .left_column {
    width: 100%;
  }
}
footer .left_column .logo_area {
  margin-right: 50px;
}
@media screen and (max-width: 1000px) {
  footer .left_column .logo_area {
    width: 20%;
    margin-right: 4%;
  }
}
@media screen and (max-width: 640px) {
  footer .left_column .logo_area {
    width: 30%;
    margin-right: 5%;
  }
}
footer .left_column .logo_area img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  footer .left_column .logo_area img {
    max-width: 150px;
  }
}
footer .left_column .text_area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  footer .left_column .text_area {
    justify-content: flex-start;
  }
}
footer .left_column h2 {
  color: #fff;
  margin: 0 0 20px 0;
  font-size: 12pt;
}
@media screen and (max-width: 800px) {
  footer .left_column h2 {
    margin-bottom: 10px;
  }
}
footer .left_column p {
  text-align: left;
  color: #C0CBD9;
  margin-bottom: 10px;
  line-height: 1.8;
}
@media screen and (max-width: 800px) {
  footer .left_column p {
    line-height: 1.4;
    margin-bottom: 6px;
  }
}
footer .left_column ul li {
  color: #C0CBD9;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  footer .left_column ul li {
    margin-bottom: 6px;
  }
}
footer .left_column ul span {
  color: #fff;
  margin-right: 8px;
}
@media screen and (max-width: 640px) {
  footer .left_column ul span {
    margin-right: 4px;
  }
}
footer .right_column {
  display: flex;
  flex-wrap: wrap;
  width: 35%;
}
@media screen and (max-width: 800px) {
  footer .right_column {
    justify-content: center;
    width: 45%;
  }
}
@media screen and (max-width: 640px) {
  footer .right_column {
    width: 90%;
    margin: 20px auto 0 auto;
    max-width: 400px;
  }
}
footer .right_column h3 {
  color: #4986D8;
  width: 100%;
  margin: 0 0 20px 0;
  font-size: 11pt;
}
@media screen and (max-width: 800px) {
  footer .right_column h3 {
    margin-bottom: 10px;
  }
}
footer .right_column ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 800px) {
  footer .right_column ul {
    margin-bottom: 10px;
  }
}
footer .right_column li {
  color: #fff;
  width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 9pt;
}
@media screen and (max-width: 640px) {
  footer .right_column li {
    margin-bottom: 10px;
  }
}
footer .right_column li img {
  margin-right: 4px;
}
footer .right_column li a {
  color: #fff;
  line-height: 1.4;
}
footer .right_column .insta_box {
  display: flex;
  align-items: center;
  font-size: 10pt;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  footer .right_column .insta_box {
    justify-content: center;
    margin: 10px auto auto auto;
  }
}
footer .right_column .insta_box img {
  width: 24px;
  height: auto;
  margin-right: 10px;
}
footer .right_column .insta_box a {
  color: #fff;
  display: flex;
  align-items: center;
}
footer p {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 10pt;
}
footer .center {
  margin: 20px 0 40px 0;
}
footer .copyright {
  font-size: 8pt;
}

/* ###################  ブレイクポイントの設定  ################### */
/*ブレイクポイント*/
/* ###################  ブレイクポイントの設定  ################### */
/*ブレイクポイント*/
/* ####  マージン　パディング  #####*/
.mt_00 {
  margin-top: 0px !important;
}

.mb_00 {
  margin-bottom: 0px !important;
}

.pt_00 {
  padding-top: 0px !important;
}

.pb_00 {
  padding-bottom: 0px !important;
}

.mt_10 {
  margin-top: 10px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.pt_10 {
  padding-top: 10px !important;
}

.pb_10 {
  padding-bottom: 10px !important;
}

.mt_20 {
  margin-top: 20px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.pt_20 {
  padding-top: 20px !important;
}

.pb_20 {
  padding-bottom: 20px !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.pt_30 {
  padding-top: 30px !important;
}

.pb_30 {
  padding-bottom: 30px !important;
}

.mt_40 {
  margin-top: 40px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.pt_40 {
  padding-top: 40px !important;
}

.pb_40 {
  padding-bottom: 40px !important;
}

.mt_50 {
  margin-top: 50px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.pt_50 {
  padding-top: 50px !important;
}

.pb_50 {
  padding-bottom: 50px !important;
}

.mt_60 {
  margin-top: 60px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

.pt_60 {
  padding-top: 60px !important;
}

.pb_60 {
  padding-bottom: 60px !important;
}

.mt_70 {
  margin-top: 70px !important;
}

.mb_70 {
  margin-bottom: 70px !important;
}

.pt_70 {
  padding-top: 70px !important;
}

.pb_70 {
  padding-bottom: 70px !important;
}

.mt_80 {
  margin-top: 80px !important;
}

.mb_80 {
  margin-bottom: 80px !important;
}

.pt_80 {
  padding-top: 80px !important;
}

.pb_80 {
  padding-bottom: 80px !important;
}

.mt_90 {
  margin-top: 90px !important;
}

.mb_90 {
  margin-bottom: 90px !important;
}

.pt_90 {
  padding-top: 90px !important;
}

.pb_90 {
  padding-bottom: 90px !important;
}

.mt_100 {
  margin-top: 100px !important;
}

.mb_100 {
  margin-bottom: 100px !important;
}

.pt_100 {
  padding-top: 100px !important;
}

.pb_100 {
  padding-bottom: 100px !important;
}

/*    タグリセット      */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans", "NotoSansCJKjp", "Noto Sans CJK JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth; /* JSでスクロールしないので有効にしてOK */
  scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
}

header, main, section, div, article {
  box-sizing: border-box;
}

ul, dl, ol {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  box-sizing: border-box;
}

img {
  vertical-align: top;
}

@media screen and (max-width: 640px) {
  .disp_pc {
    display: none !important;
  }
}

@media screen and (max-width: 800px) {
  .disp_w1000 {
    display: none !important;
  }
}

.disp_pad {
  display: none !important;
}
@media screen and (max-width: 800px) {
  .disp_pad {
    display: block !important;
  }
}

.disp_sp {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .disp_sp {
    display: block !important;
  }
}

.center {
  text-align: center;
}

/* header */
header {
  position: fixed;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  font-weight: 700;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1000px) {
  header {
    height: 60px;
  }
}
@media screen and (max-width: 800px) {
  header {
    left: 999px;
    display: block;
    height: 100%;
  }
}
header section {
  width: 96%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1380px;
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  header section {
    gap: 6px;
  }
}
@media screen and (max-width: 800px) {
  header section {
    width: 90%;
    max-width: none;
    flex-direction: column;
  }
}
header section img {
  width: 100%;
  height: auto;
}
header div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  header div {
    justify-content: flex-start;
  }
}
header .logo_area {
  width: 17%;
}
@media screen and (max-width: 800px) {
  header .logo_area {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0%;
    justify-content: flex-start;
    align-content: center;
    background: rgb(255, 255, 255);
    padding: 0 0 0 4%;
    min-height: 56px;
  }
}
header .logo_area img {
  max-width: 220px;
}
@media screen and (max-width: 800px) {
  header .logo_area img {
    width: 25%;
    min-width: 133px;
  }
}
header .tel_area {
  width: 12.7%;
  margin-right: 10px;
}
@media screen and (max-width: 800px) {
  header .tel_area {
    position: fixed;
    right: 172px;
    width: 30px;
    top: 10px;
  }
}
header .tel_area img {
  max-width: 166px;
}
@media screen and (max-width: 800px) {
  header .tel_area img {
    width: 100%;
    height: auto;
  }
}
header .cta_area {
  width: 12.3%;
  max-width: 146px;
}
@media screen and (max-width: 800px) {
  header .cta_area {
    position: fixed;
    right: 80px;
    width: 96px;
    max-width: 96px;
    top: 10px;
  }
}
header .cta_area img {
  max-width: 146px;
  height: auto;
}
@media screen and (max-width: 800px) {
  header .cta_area img {
    width: auto;
    height: 30px;
  }
}
header .cta_area a {
  color: #003988;
}
header .insta_area {
  max-width: 48px;
  width: 4%;
}
@media screen and (max-width: 800px) {
  header .insta_area {
    position: fixed;
    right: 50px;
    width: 30px;
    max-width: 96px;
    top: 10px;
  }
}
header .insta_area img {
  width: 100%;
  height: auto;
}
header ol {
  display: flex;
  font-size: 10pt;
  justify-content: space-evenly;
  width: 68%;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  header ol {
    font-size: 8pt;
  }
}
@media screen and (max-width: 800px) {
  header ol {
    flex-direction: column;
    font-size: 10pt;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  header ol {
    width: 100%;
    margin-top: 12%;
  }
}
header li {
  list-style: none;
}
header li.is-current a {
  color: #003988;
}
@media screen and (max-width: 800px) {
  header li {
    border-bottom: 1px solid #aaa;
    padding: 10px 5px;
  }
}
header li a {
  color: #000;
}
header .gnav-toggle {
  display: none;
}
@media screen and (max-width: 800px) {
  header .gnav-toggle {
    position: fixed;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-width: 2px;
    border-style: solid;
    border-color: #003988;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 1002;
    box-sizing: border-box;
    display: block;
  }
}
header .gnav-toggle__bar {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  height: 2px;
  width: 13px;
  border-radius: 1px;
  background-color: #003988;
  transform-origin: 50% 50%;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform: translate(-50%, -50%);
}
header .gnav-toggle__bar:nth-child(1) {
  transform: translate(-50%, calc(-50% - 3px));
}
header .gnav-toggle__bar:nth-child(2) {
  transform: translate(-50%, calc(-50% + 3px));
}
@media screen and (max-width: 800px) {
  header.is-open {
    height: 100%;
    background: #fff;
    width: 100%;
    left: 0%;
  }
}
header.is-open .gnav-toggle__bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
header.is-open .gnav-toggle__bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.headlineEng {
  font-family: "Instrument Sans", sans-serif;
  color: #003988;
  font-weight: 600;
  font-size: clamp(10px, 1.4vw, 13px);
  letter-spacing: 0.12em;
}

.headlineLarge {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.6em;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.readCopy {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(12px, 2.4vw, 14px);
  line-height: 2.2em;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 800px) {
  .readCopy {
    line-height: 2em;
  }
}
.readCopy strong {
  color: #003988;
  font-weight: 600;
  font-size: 120%;
}

#pankuzu {
  background: #F4F7FB;
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  #pankuzu {
    margin-top: 60px;
  }
}
@media screen and (max-width: 800px) {
  #pankuzu {
    margin-top: 56px;
  }
}
#pankuzu ul {
  display: flex;
  justify-content: flex-start;
  max-width: 1380px;
  width: 96%;
  margin: 0 auto;
  padding: 6px 2%;
}
#pankuzu ul li {
  font-size: clamp(11px, 1.6vw, 12px);
  display: flex;
}
#pankuzu ul li a {
  color: #003988;
}
#pankuzu ul li .arrow {
  display: flex;
  margin: 0 6px;
  align-items: center;
}

#subpage_cayrgorytitle_basic {
  text-align: center;
  margin: 60px auto;
  padding: 0 4%;
}
@media screen and (max-width: 800px) {
  #subpage_cayrgorytitle_basic {
    margin: 40px auto;
  }
}
#subpage_cayrgorytitle_basic .headlineEng span {
  display: inline-block;
  border-bottom: 2px solid #003988;
  padding-bottom: 6px;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  #subpage_cayrgorytitle_basic .headlineEng span {
    margin-bottom: 10px;
  }
}
#subpage_cayrgorytitle_basic .headlineLarge {
  margin: 0 auto 36px;
}
@media screen and (max-width: 800px) {
  #subpage_cayrgorytitle_basic .headlineLarge {
    margin-bottom: 16px;
  }
}

/* footer */
#sub_footer {
  background: url("../img/footer_bg.png") no-repeat;
  background-size: cover;
  padding: 40px 0 120px 0;
  position: relative;
}
@media screen and (max-width: 800px) {
  #sub_footer {
    background-position: right;
  }
}
#sub_footer .sub_footer_inner {
  max-width: 1440px;
  margin: auto;
}
#sub_footer .title_area {
  margin-left: 13%;
}
@media screen and (max-width: 1000px) {
  #sub_footer .title_area {
    margin-left: 6%;
  }
}
@media screen and (max-width: 640px) {
  #sub_footer .title_area {
    margin-left: 6%;
  }
}
#sub_footer .title_area p {
  color: #003988;
  border-bottom: 2px solid #003988;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 2px;
}
#sub_footer .sub_footer_wrapper {
  width: 88%;
  margin-left: auto;
  display: flex;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper {
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
  }
}
#sub_footer .sub_footer_wrapper .text_area {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 97%;
    margin-left: auto;
  }
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area {
    margin-left: 6%;
  }
}
#sub_footer .sub_footer_wrapper .text_area p {
  writing-mode: vertical-rl;
  display: inline-block;
  margin: 0;
  padding-left: 4px;
  font-size: 8pt;
  letter-spacing: 2px;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area p {
    writing-mode: horizontal-tb;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area p br {
    display: none;
  }
}
#sub_footer .sub_footer_wrapper .text_area h2 {
  writing-mode: vertical-rl; /* 縦書き（右→左） */
  text-orientation: upright; /* 縦中横を制御 */
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  margin: 0 30px 0 10px;
  font-size: 18pt;
  letter-spacing: 2px;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area h2 {
    writing-mode: horizontal-tb;
    display: block;
    margin-left: 0;
  }
}
#sub_footer .sub_footer_wrapper .text_area h2 strong {
  color: #F05A2C;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .text_area h2 br {
    display: none;
  }
}
#sub_footer .sub_footer_wrapper .cta_area {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  #sub_footer .sub_footer_wrapper .cta_area {
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  #sub_footer .sub_footer_wrapper .cta_area {
    flex-wrap: wrap;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div {
  background: #003988;
  border-width: 3px;
  border-style: solid;
  border-color: #C0CBD9;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  max-width: 400px;
  width: 42%;
  /*
  @include mq() {
      width: 86%;
      margin-bottom: 20px;
  }
  */
}
@media screen and (max-width: 800px) {
  #sub_footer .sub_footer_wrapper .cta_area div {
    width: 46%;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div img {
  margin-bottom: 10px;
}
#sub_footer .sub_footer_wrapper .cta_area div p {
  margin: 0;
}
#sub_footer .sub_footer_wrapper .cta_area div h3 {
  margin: 0;
}
@media screen and (max-width: 640px) {
  #sub_footer .sub_footer_wrapper .cta_area div h3 {
    font-size: 12pt;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div .tel {
  color: #F05A2C;
  font-size: 18pt;
  margin: 14px 0;
  font-family: "Instrument Sans", sans-serif;
}
@media screen and (max-width: 640px) {
  #sub_footer .sub_footer_wrapper .cta_area div .tel {
    margin: 6px 0;
    font-size: 16pt;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div .tel a {
  color: #F05A2C;
}
#sub_footer .sub_footer_wrapper .cta_area div .time br {
  display: none;
}
@media screen and (max-width: 800px) {
  #sub_footer .sub_footer_wrapper .cta_area div .time br {
    display: block;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div span {
  background: #fff;
  border-radius: 40px;
  color: #F05A2C;
  display: block;
  width: 60%;
  margin: 10px auto;
  padding: 4px 0;
  font-size: 10pt;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  #sub_footer .sub_footer_wrapper .cta_area div span {
    width: 90%;
  }
}
#sub_footer .sub_footer_wrapper .cta_area div span a {
  color: #F05A2C;
}
#sub_footer .chara {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 10.5%;
  height: auto;
  max-width: 152px;
}
@media screen and (max-width: 640px) {
  #sub_footer .chara {
    width: 20%;
  }
}

#cta_bottom {
  background: url(../img/cta_bottom_background.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 6% 4%;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  #cta_bottom {
    padding-top: 2%;
    padding-bottom: 8%;
  }
}
@media screen and (max-width: 1000px) {
  #cta_bottom {
    padding-top: 6%;
    padding-bottom: 12%;
  }
}
#cta_bottom > div {
  max-width: 960px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12%;
  width: 100%;
}
#cta_bottom .text {
  text-align: left;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1000px) {
  #cta_bottom .text {
    text-align: center;
  }
}
#cta_bottom .text .read_large {
  font-weight: 600;
  font-size: clamp(18px, 2.8vw, 26px);
  letter-spacing: 0.04em;
  margin-top: 8%;
  margin-bottom: 4%;
}
#cta_bottom .text .read_large strong {
  font-size: 160%;
  color: #003988;
}
#cta_bottom .text .read_small {
  margin: 0 0 8%;
  font-size: clamp(13px, 2.4vw, 14px);
}
@media screen and (max-width: 800px) {
  #cta_bottom .text .read_small {
    margin-bottom: 12%;
  }
}
#cta_bottom .button {
  max-width: 400px;
  width: 60%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  #cta_bottom .button {
    width: 92%;
    max-width: 320px;
  }
}
#cta_bottom .cta_button {
  color: #fff;
  font-size: clamp(13px, 2.4vw, 14px);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #003988;
  border-radius: 100px;
  width: 100%;
  padding: 4%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 800px) {
  #cta_bottom .cta_button {
    height: 60px;
  }
}
#cta_bottom .cta_button:hover {
  background: #2664b6;
}
#cta_bottom .cta_button strong {
  font-size: 130%;
  color: #F05A2C;
  letter-spacing: 0.08em;
}
#cta_bottom .cta_button span {
  display: block;
  white-space: nowrap;
}

footer {
  background: #2b2c3b;
  padding: 60px 0 10px 0;
}
@media screen and (max-width: 800px) {
  footer {
    padding: 40px 0 20px 0;
  }
}
footer .footer_inner {
  display: flex;
  width: 80%;
  margin: 0 auto 60px auto;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  footer .footer_inner {
    width: 94%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  footer .footer_inner {
    flex-wrap: wrap;
  }
}
footer .left_column {
  display: flex;
  width: 45%;
  font-size: 10pt;
}
@media screen and (max-width: 1000px) {
  footer .left_column {
    display: flex;
    justify-content: center;
    width: 60%;
  }
}
@media screen and (max-width: 640px) {
  footer .left_column {
    width: 100%;
  }
}
footer .left_column .logo_area {
  margin-right: 50px;
}
@media screen and (max-width: 1000px) {
  footer .left_column .logo_area {
    width: 20%;
    margin-right: 4%;
  }
}
@media screen and (max-width: 640px) {
  footer .left_column .logo_area {
    width: 30%;
    margin-right: 5%;
  }
}
footer .left_column .logo_area img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  footer .left_column .logo_area img {
    max-width: 150px;
  }
}
footer .left_column .text_area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  footer .left_column .text_area {
    justify-content: flex-start;
  }
}
footer .left_column h2 {
  color: #fff;
  margin: 0 0 20px 0;
  font-size: 12pt;
}
@media screen and (max-width: 800px) {
  footer .left_column h2 {
    margin-bottom: 10px;
  }
}
footer .left_column p {
  text-align: left;
  color: #C0CBD9;
  margin-bottom: 10px;
  line-height: 1.8;
}
@media screen and (max-width: 800px) {
  footer .left_column p {
    line-height: 1.4;
    margin-bottom: 6px;
  }
}
footer .left_column ul li {
  color: #C0CBD9;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  footer .left_column ul li {
    margin-bottom: 6px;
  }
}
footer .left_column ul span {
  color: #fff;
  margin-right: 8px;
}
@media screen and (max-width: 640px) {
  footer .left_column ul span {
    margin-right: 4px;
  }
}
footer .right_column {
  display: flex;
  flex-wrap: wrap;
  width: 35%;
}
@media screen and (max-width: 800px) {
  footer .right_column {
    justify-content: center;
    width: 45%;
  }
}
@media screen and (max-width: 640px) {
  footer .right_column {
    width: 90%;
    margin: 20px auto 0 auto;
    max-width: 400px;
  }
}
footer .right_column h3 {
  color: #4986D8;
  width: 100%;
  margin: 0 0 20px 0;
  font-size: 11pt;
}
@media screen and (max-width: 800px) {
  footer .right_column h3 {
    margin-bottom: 10px;
  }
}
footer .right_column ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 800px) {
  footer .right_column ul {
    margin-bottom: 10px;
  }
}
footer .right_column li {
  color: #fff;
  width: 50%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 9pt;
}
@media screen and (max-width: 640px) {
  footer .right_column li {
    margin-bottom: 10px;
  }
}
footer .right_column li img {
  margin-right: 4px;
}
footer .right_column li a {
  color: #fff;
  line-height: 1.4;
}
footer .right_column .insta_box {
  display: flex;
  align-items: center;
  font-size: 10pt;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  footer .right_column .insta_box {
    justify-content: center;
    margin: 10px auto auto auto;
  }
}
footer .right_column .insta_box img {
  width: 24px;
  height: auto;
  margin-right: 10px;
}
footer .right_column .insta_box a {
  color: #fff;
  display: flex;
  align-items: center;
}
footer p {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 10pt;
}
footer .center {
  margin: 20px 0 40px 0;
}
footer .copyright {
  font-size: 8pt;
}

.headlineEng {
  font-family: "Instrument Sans", sans-serif;
  color: #003988;
  font-weight: 600;
  font-size: clamp(10px, 1.4vw, 13px);
  letter-spacing: 0.12em;
}

.headlineLarge {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.6em;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.readCopy {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(12px, 2.4vw, 14px);
  line-height: 2.2em;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 800px) {
  .readCopy {
    line-height: 2em;
  }
}
.readCopy strong {
  color: #003988;
  font-weight: 600;
  font-size: 120%;
}

#pankuzu {
  background: #F4F7FB;
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  #pankuzu {
    margin-top: 60px;
  }
}
@media screen and (max-width: 800px) {
  #pankuzu {
    margin-top: 56px;
  }
}
#pankuzu ul {
  display: flex;
  justify-content: flex-start;
  max-width: 1380px;
  width: 96%;
  margin: 0 auto;
  padding: 6px 2%;
}
#pankuzu ul li {
  font-size: clamp(11px, 1.6vw, 12px);
  display: flex;
}
#pankuzu ul li a {
  color: #003988;
}
#pankuzu ul li .arrow {
  display: flex;
  margin: 0 6px;
  align-items: center;
}

#subpage_cayrgorytitle_basic {
  text-align: center;
  margin: 60px auto;
  padding: 0 4%;
}
@media screen and (max-width: 800px) {
  #subpage_cayrgorytitle_basic {
    margin: 40px auto;
  }
}
#subpage_cayrgorytitle_basic .headlineEng span {
  display: inline-block;
  border-bottom: 2px solid #003988;
  padding-bottom: 6px;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  #subpage_cayrgorytitle_basic .headlineEng span {
    margin-bottom: 10px;
  }
}
#subpage_cayrgorytitle_basic .headlineLarge {
  margin: 0 auto 36px;
}
@media screen and (max-width: 800px) {
  #subpage_cayrgorytitle_basic .headlineLarge {
    margin-bottom: 16px;
  }
}

#cta_bottom {
  background: url(../img/cta_bottom_background.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 6% 4%;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  #cta_bottom {
    padding-top: 2%;
    padding-bottom: 8%;
  }
}
@media screen and (max-width: 1000px) {
  #cta_bottom {
    padding-top: 6%;
    padding-bottom: 12%;
  }
}
#cta_bottom > div {
  max-width: 960px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12%;
  width: 100%;
}
#cta_bottom .text {
  text-align: left;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1000px) {
  #cta_bottom .text {
    text-align: center;
  }
}
#cta_bottom .text .read_large {
  font-weight: 600;
  font-size: clamp(18px, 2.8vw, 26px);
  letter-spacing: 0.04em;
  margin-top: 8%;
  margin-bottom: 4%;
}
#cta_bottom .text .read_large strong {
  font-size: 160%;
  color: #003988;
}
#cta_bottom .text .read_large.read_large_only {
  margin-bottom: 8%;
}
#cta_bottom .text .read_small {
  margin: 0 0 8%;
  font-size: clamp(13px, 2.4vw, 14px);
}
@media screen and (max-width: 800px) {
  #cta_bottom .text .read_small {
    margin-bottom: 12%;
  }
}
#cta_bottom .button {
  max-width: 400px;
  width: 60%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  #cta_bottom .button {
    width: 92%;
    max-width: 320px;
  }
}
#cta_bottom .cta_button {
  color: #fff;
  font-size: clamp(13px, 2.4vw, 14px);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #003988;
  border-radius: 100px;
  width: 100%;
  padding: 4%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 800px) {
  #cta_bottom .cta_button {
    height: 60px;
  }
}
#cta_bottom .cta_button:hover {
  background: #2664b6;
}
#cta_bottom .cta_button strong {
  font-size: 130%;
  color: #F05A2C;
  letter-spacing: 0.08em;
}
#cta_bottom .cta_button span {
  display: block;
  white-space: nowrap;
}
#cta_bottom.room {
  background: url(../img/cta_bottom_background_room.jpg) no-repeat center center;
  background-size: 100% auto;
}
@media screen and (max-width: 640px) {
  #cta_bottom.room {
    background-size: auto 100%;
  }
}
#cta_bottom.medium > div {
  max-width: 960px;
  gap: 2%;
  justify-content: space-between;
}
#cta_bottom.medium .text {
  width: calc(98% - 400px);
}
@media screen and (max-width: 1000px) {
  #cta_bottom.medium .text {
    width: 100%;
  }
}
#cta_bottom.medium .text .read_large {
  font-size: clamp(24px, 3.4vw, 36px);
  color: #003988;
}
@media screen and (max-width: 1000px) {
  #cta_bottom.medium .text .read_large {
    margin-top: 4%;
    margin-bottom: 2%;
  }
}
#cta_bottom.medium .text .read_large.read_large_only {
  margin-bottom: 8%;
}
#cta_bottom.medium .text .read_small {
  line-height: 2.4em;
  text-shadow: 0px 0px 10px #e0eef4;
}
@media screen and (max-width: 1000px) {
  #cta_bottom.medium .text .read_small {
    margin-bottom: 6%;
  }
}
#cta_bottom.medium .button {
  width: 92%;
  margin: 0 auto;
}
#cta_bottom.long > div {
  max-width: 1100px;
  gap: 2%;
  justify-content: space-between;
}
#cta_bottom.long .text {
  width: calc(98% - 400px);
}
@media screen and (max-width: 1000px) {
  #cta_bottom.long .text {
    width: 100%;
  }
}
#cta_bottom.long .text .read_large {
  font-size: clamp(24px, 2.8vw, 32px);
  color: #003988;
}
@media screen and (max-width: 1000px) {
  #cta_bottom.long .text .read_large {
    margin-top: 4%;
    margin-bottom: 2%;
  }
}
#cta_bottom.long .text .read_large.read_large_only {
  margin-bottom: 8%;
}
#cta_bottom.long .text .read_small {
  line-height: 2.4em;
}
@media screen and (max-width: 1000px) {
  #cta_bottom.long .text .read_small {
    margin-bottom: 6%;
  }
}
#cta_bottom.long .button {
  width: 92%;
  margin: 0 auto;
}

.basic_btn {
  color: #fff;
  font-size: clamp(13px, 2.4vw, 14px);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  background: #003988;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 100px;
  width: 100%;
  max-width: 240px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}
.basic_btn:hover {
  background: #2664b6;
}
.basic_btn.large {
  max-width: 400px;
  height: 60px;
}
@media screen and (max-width: 800px) {
  .basic_btn.large {
    max-width: 320px;
    height: 48px;
  }
}

.sub_btn {
  font-size: clamp(13px, 2.4vw, 14px);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #003988;
  background: #fff;
  border: 2px solid #003988;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 100px;
  width: 100%;
  max-width: 240px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.sub_btn:hover {
  background: #D9E5F5;
}

main#contact {
  width: 100%;
  margin: 0px auto;
  padding: 40px 0 80px 0;
  background: #F4F7FB;
  /* バリデート設定用 */
  /* バリデート設定用 ここまで */
}
@media screen and (max-width: 640px) {
  main#contact {
    width: 100%;
    padding: 40px 0 40px 0;
  }
}
main#contact .contact_wrapper {
  width: 90%;
  max-width: 856px;
  margin: auto;
  background: #fff;
  padding: 60px;
}
@media screen and (max-width: 640px) {
  main#contact .contact_wrapper {
    width: 90%;
    padding: 30px 6% 30px 6%;
    margin-bottom: 60px;
  }
}
main#contact .vertical {
  display: flex;
  flex-direction: column;
}
main#contact .vertical label {
  cursor: pointer;
}
main#contact .vertical label input[type=checkbox] {
  margin-right: 8px;
}
main#contact input[type=text],
main#contact input[type=tel],
main#contact input[type=email],
main#contact textarea {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-clip: padding-box;
  /* iOSの内側シャドウ対策 */
  outline: none;
  padding: 10px;
  border: 1px solid #C0CBD9;
  border-radius: 2px;
}
main#contact input[type=text]::-moz-placeholder, main#contact input[type=tel]::-moz-placeholder, main#contact input[type=email]::-moz-placeholder, main#contact textarea::-moz-placeholder {
  color: #C0CBD9;
}
main#contact input[type=text]::placeholder,
main#contact input[type=tel]::placeholder,
main#contact input[type=email]::placeholder,
main#contact textarea::placeholder {
  color: #C0CBD9;
}
main#contact input[type=text] {
  width: 40%;
}
@media screen and (max-width: 640px) {
  main#contact input[type=text] {
    width: 100%;
  }
}
main#contact input[type=tel] {
  width: 30%;
}
@media screen and (max-width: 640px) {
  main#contact input[type=tel] {
    width: 100%;
  }
}
main#contact input[type=email] {
  width: 60%;
}
@media screen and (max-width: 640px) {
  main#contact input[type=email] {
    width: 100%;
  }
}
main#contact textarea {
  width: 100%;
  height: 200px;
}
main#contact input[type=text].adress {
  width: 100%;
}
main#contact input:-moz-placeholder-shown {
  border-color: #C0CBD9;
  background: #fff;
}
main#contact input:placeholder-shown {
  border-color: #C0CBD9;
  background: #fff;
}
main#contact .error {
  color: #E60012;
}
main#contact input:not(:-moz-placeholder-shown):invalid {
  border-color: #E60012;
  background-color: #fff;
}
main#contact input:not(:placeholder-shown):invalid {
  border-color: #E60012;
  background-color: #fff;
}
main#contact .conf_head {
  width: 90%;
  max-width: 856px;
  margin: 0 auto 30px auto;
  background: #003988;
  padding: 30px 10px;
  color: #fff;
  text-align: center;
}
main#contact .conf_head h2 {
  margin: 0 0 20px 0;
  font-size: clamp(14px, 2.3vw, 16px);
}
main#contact .conf_head p {
  margin: 0;
  font-size: clamp(12px, 2.3vw, 13px);
}
main#contact dl {
  margin: 0;
}
main#contact dt {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: clamp(12px, 2.3vw, 13px);
}
main#contact dt span {
  background: #E60012;
  color: #fff;
  font-weight: 400;
  padding: 2px 6px;
  margin: 0 20px;
  font-size: 8pt;
}
@media screen and (max-width: 640px) {
  main#contact dt span {
    margin: 0 8px;
  }
}
main#contact dt .gray {
  background: #C0CBD9;
}
main#contact dt small {
  color: #E60012;
}
main#contact dd {
  margin: 0 0 40px 0;
  font-size: clamp(12px, 2.3vw, 13px);
}
main#contact dd p {
  margin: 4px 0 0 0;
  font-size: 8pt;
}
main#contact dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
main#contact dd li {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  main#contact dd li {
    width: 100%;
  }
}
main#contact dd li label {
  display: flex;
  align-items: center;
}
main#contact label {
  font-size: clamp(12px, 2.3vw, 13px);
}
main#contact .kojin {
  background: #F4F7FB;
  padding: 20px;
}
main#contact .kojin h3 {
  margin: 0 0 6px 0;
  font-size: clamp(14px, 4vw, 18px);
}
main#contact .kojin div {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
}
main#contact .kojin p {
  margin: 0;
  font-size: clamp(12px, 2.3vw, 13px);
}
main#contact .kojin ul {
  margin: 0 0 0 1.2rem;
}
main#contact .kojin li {
  list-style: disc;
  font-size: clamp(12px, 2.3vw, 13px);
}
main#contact h2 {
  font-size: clamp(18px, 4.5vw, 22px);
}
main#contact .cta {
  background: #F4F7FB;
  width: 65%;
  margin: auto;
  text-align: center;
  padding: 30px 20px;
}
@media screen and (max-width: 800px) {
  main#contact .cta {
    width: 80%;
  }
}
@media screen and (max-width: 640px) {
  main#contact .cta {
    width: 100%;
  }
}
main#contact .cta h3 {
  margin: 0;
  font-size: clamp(14px, 4vw, 18px);
}
main#contact .cta .tel {
  font-size: clamp(24px, 5vw, 32px);
  font-family: "Instrument Sans", sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}
main#contact .cta .tel img {
  margin-right: 10px;
  height: 100%;
  width: auto;
}
main#contact .cta .des {
  display: inline-block;
  text-align: left;
  margin: 0;
}
main#contact button,
main#contact input[type=submit] {
  border: none;
  margin: 40px auto;
}
main#contact button:hover,
main#contact input[type=submit]:hover {
  cursor: pointer;
}
main#contact .thanks {
  margin-bottom: 60px;
}
main#contact .thanks p {
  line-height: 1.8;
}
main#contact .thanks img {
  margin: 30px auto;
}

/* 背景 */
.privacy-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.privacy-popup h2 {
  font-size: clamp(18px, 4.5vw, 22px);
}
.privacy-popup h3 {
  font-size: clamp(14px, 4vw, 16px);
  margin: 10px 0;
}
.privacy-popup p,
.privacy-popup ul {
  font-size: clamp(12px, 2.3vw, 13px);
  margin: 0;
}
.privacy-popup li {
  list-style: decimal;
  margin-left: 1rem;
}
.privacy-popup li > ul {
  margin-top: 4px;
}
.privacy-popup li > ul li {
  list-style: lower-alpha;
}
.privacy-popup li > ul li > ul li {
  list-style: lower-roman;
}

/* 白い箱 */
.privacy-popup__inner {
  background: #fff;
  width: 90%;
  max-width: 856px;
  max-height: 40vh;
  padding: 24px 32px;
  border-radius: 8px;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  /* ← これ重要 */
}

/* タイトル（スクロールさせない） */
.privacy-popup__title {
  margin-top: 0;
  margin-bottom: 16px;
  flex: 0 0 auto;
  /* ← 固定部分として扱う */
}

/* 本文だけスクロール */
.privacy-popup__content {
  overflow-y: auto;
  flex: 1 1 auto;
  /* ← 余った高さを全部使う */
  padding-right: 2.5rem;
  /* ← スクロールバー対策で少し余白 */
}

/* × ボタン */
.privacy-popup__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* 背景スクロール禁止（任意） */
body.is-modal-open {
  overflow: hidden;
}