@charset "UTF-8";
/* Breadcrumbs */
.c-breadcrumbs {
  margin: 20px 0 20px 0;
  background-color: #fff;
  font-size: 14px;
  color: #fad678;
}
.c-breadcrumbs a {
  color: #fad678;
}

/* Button  */
.c-btn01 {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 0.7em 30px 0.8em 30px;
  border-radius: 100px;
  color: #fff;
  background-color: #645a42;
  transition: all 0.2s;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none !important;
  transition: 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    padding: 1em 30px 1em 30px;
    font-size: 13px;
  }
}
.c-btn01::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 17px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.c-btn01:hover {
  opacity: 1;
  background-color: #fad678;
  color: #645a42;
}
.c-btn01:hover::after {
  border-top: 2px solid #645a42;
  border-right: 2px solid #645a42;
}

.c-btn02 {
  display: inline-block;
  position: relative;
  padding: 0.8em 40px 0.9em 28px;
  border-radius: 100px;
  color: #fff;
  background-color: #3ba3d5;
  transition: all 0.2s;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .c-btn02 {
    max-width: 100%;
    padding: 0.8em 35px 0.9em 23px;
    font-size: 14px;
  }
}
.c-btn02::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.c-btn02:hover {
  opacity: 0.7;
}

.c-btn-radius {
  display: block;
  position: relative;
  width: 180px;
  max-width: 100%;
  padding: 11px 10px 12px;
  border-radius: 50px;
  color: #fff;
  background-color: #fad678;
  transition: all 0.2s;
  box-sizing: border-box;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
}
@media screen and (max-width: 1440px) {
  .c-btn-radius {
    width: 130px;
  }
}
.c-btn-radius::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s ease;
}
.c-btn-radius:hover {
  opacity: 1;
}
.c-btn-radius:hover::after {
  opacity: 0.5;
}
.c-btn-radius img {
  position: relative;
  top: 1px;
  margin-right: 10px;
}

/* front heading */
.c-front-heading01 {
  position: relative;
  width: fit-content;
  padding: 10px 0 0 0;
  margin-bottom: 35px;
}
.c-front-heading01__en {
  font-size: 80px;
  font-weight: bold;
  line-height: 1.29;
  color: #234c9d;
}
.c-front-heading01__jp {
  position: absolute;
  top: 9px;
  right: -101px;
  width: fit-content;
  padding: 5px 0 4px 16px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: left;
  color: #14316a;
}
.c-front-heading01__jp::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 1px;
  height: 51px;
  background-color: #234c9d;
}
.c-front-heading01__jp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -13px;
  width: 130px;
  height: 1px;
  background-color: #234c9d;
}

/* Page heading */
.c-subpage-heading {
  position: relative;
  text-align: center;
}
.c-subpage-heading::before {
  content: "";
  position: absolute;
  top: 124px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #154F72;
}
@media screen and (max-width: 767px) {
  .c-subpage-heading::before {
    display: none;
  }
}
.c-subpage-heading__textBig {
  display: inline-block;
  position: relative;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #475555;
  background-color: #fff;
  padding: 10px 45px 15px 45px;
}
@media screen and (max-width: 767px) {
  .c-subpage-heading__textBig {
    padding: 10px 0px 15px 0px;
    font-size: 25px;
  }
}
.c-subpage-heading__textSmall {
  display: block;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2.1px;
  text-align: center;
  color: #cfbf64;
  line-height: 1;
}

/* Form reset */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* form */
.c-form {
  width: 100%;
}

.c-form-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .c-form-item {
    margin-bottom: 15px;
  }
}
.c-form-item__submit {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-form-item__submit {
    margin-top: 35px;
  }
}
.c-form-item label {
  display: block;
  width: 300px;
  margin-bottom: 5px;
  padding: 10px 30px 5px 0;
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .c-form-item label {
    width: 100%;
    margin-bottom: 0px;
    padding: 0px 0px 5px 0;
    font-size: 12px;
    text-align: left;
  }
}

input {
  flex: 1;
  height: 50px;
  padding: 0 0.5em;
  border: 1px solid #eee;
  background-color: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  input {
    flex: none;
    width: 100%;
    height: 35px;
  }
}

textarea {
  flex: 1;
  height: 300px;
  padding: 0.5em;
  border: 1px solid #eee;
  background-color: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  textarea {
    flex: none;
    width: 100%;
    height: 105px;
  }
}

.required {
  padding: 0 5px;
  color: #ca5c7d;
}

.grecaptcha-badge {
  display: none;
}

.c-form-message {
  padding: 10px;
  text-align: left;
  border: 1px solid #F07C26;
  display: inline-block;
  width: 400px;
  text-align: center;
  max-width: 80%;
  margin-top: 50px;
}
.c-form-message strong {
  color: #ca5c7d;
  font-weight: bold;
}

:root {
  --width-none: 100%;
  --height-none: 50%;
  --top: 0px;
}

/* --------------------------
メニュー gnav
--------------------------- */
/*  Glabal Navigation PC */
.c-gnav {
  display: flex;
  display: none;
  justify-content: center;
  width: 100%;
  margin: 0 0px 0 0;
  padding: 0px 0 0 0px;
}
@media screen and (max-width: 1090px) {
  .c-gnav {
    display: none;
  }
}
.c-gnav .menu {
  display: flex;
  justify-content: center;
  margin: 0 0px 0 0;
  padding: 0px 0 0 0px;
}
.c-gnav .menu > li {
  position: relative;
  padding: 0 0px;
}
.c-gnav .menu > li > a {
  display: block;
  position: relative;
  padding: 15px 30px 13px 30px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.2em;
  line-height: 1.6;
}
.c-gnav .menu > li > a > span {
  display: block;
  opacity: 0.75;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  opacity: 0.75;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
.c-gnav .menu .menu-item-has-children {
  position: relative;
}
.c-gnav .menu .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 70px;
  list-style: none;
  width: 208px;
  padding: 0 0 5px 0;
}
.c-gnav .menu .menu-item-has-children .sub-menu.is-open {
  display: block;
}
.c-gnav .menu .menu-item-has-children .sub-menu > li > a {
  display: block;
  padding: 10px 10px 10px 10px;
  color: #fff;
  background-color: rgba(35, 76, 157, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}
.c-gnav .menu .menu-item-has-children .sub-menu > li:last-of-type > a {
  border-bottom: none;
}

/* Navigation Menu SP */
/* sp ボタン  */
.c-nav-button__wrap {
  display: block;
}

.c-nav-sp {
  display: none;
}

.c-nav-button__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  z-index: 778;
}
@media screen and (max-width: 767px) {
  .c-nav-button__wrap {
    top: -1px;
    width: 50px;
    height: 50px;
  }
}

.c-nav-button {
  position: relative;
  margin: auto;
  width: 50px;
  height: 32px;
  border: none;
  background: none;
}
@media screen and (max-width: 767px) {
  .c-nav-button {
    width: 25px;
    height: 18px;
  }
}
.c-nav-button span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #645a42;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 767px) {
  .c-nav-button span {
    height: 2px;
  }
}
.c-nav-button span:nth-child(2) {
  top: 50%;
  width: 100%;
}
.c-nav-button span:nth-child(3) {
  top: 100%;
}
.c-nav-button.is-close {
  position: fixed;
}
.c-nav-button.is-close span {
  top: 50%;
  transform: rotate(30deg);
}
.c-nav-button.is-close span:nth-child(2) {
  width: 0;
}
.c-nav-button.is-close span:nth-child(3) {
  top: 50%;
  transform: rotate(-30deg);
}

.c-nav-button__text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  margin: auto;
  color: #fff;
  font-size: 11px;
  text-align: center;
}

/* sp ナビ */
.c-nav-sp {
  display: block;
  position: fixed;
  top: 0px;
  right: 0;
  width: 400px;
  height: 100%;
  z-index: 777;
  padding: 160px 80px 40px 60px;
  background-color: #e2ddd0;
  transform: translateX(110%);
  transition: all 0.2s ease-in;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .c-nav-sp {
    width: 300px;
    padding: 80px 60px 40px 35px;
  }
}
.c-nav-sp.is-open {
  transform: translateX(0%);
}
.c-nav-sp .menu {
  display: block;
  margin: 0;
  padding: 0;
}
.c-nav-sp .menu > .menu-item {
  position: relative;
  margin: 35px 0 0px 0;
  padding: 0 0 0 15px;
  font-size: 26px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.6;
  background: url("../img/icon-list-style01.png") no-repeat 0 13px;
  background-size: 5px auto;
}
.c-nav-sp .menu > .menu-item:first-of-type {
  margin: 0px 0 0px 0;
}
.c-nav-sp .menu .menu-item-has-children .sub-menu {
  list-style: none;
  margin: 0px 0 0 -15px;
  padding: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-nav-sp .menu .menu-item-has-children .sub-menu {
    font-size: 20px;
  }
}
.c-nav-sp .menu .menu-item-has-children .sub-menu li a {
  font-size: 15px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-nav-sp .menu .menu-item-has-children .sub-menu li a {
    font-size: 12px;
  }
}

/* Page Key Visual */
.c-page-kv {
  position: relative;
  width: 100%;
  height: 330px;
  background: url("./img/img_pagetitle_bg01.png") no-repeat 50% 50%;
  background-size: cover;
  background-color: #777;
}

.c-pageTop {
  position: fixed;
  bottom: 15px;
  right: 0;
  width: 60px;
  height: 60px;
  padding-top: 2px;
  box-sizing: border-box;
  text-align: center;
  background-color: #005a85;
  color: white;
  opacity: 0;
  transition: 0.3s;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 777;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-pageTop {
    width: 50px;
    height: 50px;
    padding-top: 0px;
  }
  .c-pageTop img {
    position: relative;
    top: -2px;
    width: 25px;
    height: auto;
  }
}

.c-pageTop.is-show {
  opacity: 0.8;
}
.c-pageTop.is-show::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: 0.3s ease;
}
.c-pageTop.is-show:hover {
  opacity: 1;
}
.c-pageTop.is-show:hover::after {
  opacity: 0.5;
}

.c-fix-banner {
  display: block;
  position: fixed;
  right: 0;
  bottom: 50px;
  width: 46px;
  z-index: 777;
}
@media screen and (max-width: 767px) {
  .c-fix-banner {
    display: none;
  }
}

.c-fix-banner-sp {
  display: none;
  position: fixed;
  bottom: 0%;
  left: 0;
  z-index: 775;
}
@media screen and (max-width: 767px) {
  .c-fix-banner-sp {
    display: flex;
    width: 100%;
  }
}
.c-fix-banner-sp__item01 {
  width: 50%;
}
.c-fix-banner-sp__item01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background-color: #fad678;
  color: #645a42;
}
.c-fix-banner-sp__item02 {
  width: 50%;
}
.c-fix-banner-sp__item02 a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #645a42;
  color: #fff;
  gap: 10px;
  height: 50px;
}
.c-fix-banner-sp__item02 a img {
  position: relative;
  top: 2px;
}
