@charset "UTF-8";
/*-- foundationフォルダの中の_index.scss --*/
@font-face {
  font-family: "ZenMaruGothic";
  font-weight: 500;
  font-display: swap;
  src: url(../font/ZenMaruGothic-Medium-Subset.woff2) format("woff2"), url(../font/ZenMaruGothic-Medium-Subset.woff) format("woff");
}
body {
  color: #333333;
  background: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "メイリオ", sans-serif;
  -webkit-text-size-adjust: none;
  font-size: 16px;
}

body,
h1,
h2,
h3,
h4,
h5,
table,
th,
td,
ul,
li,
ol,
dl,
dt,
dd,
form,
fieldset,
p,
figure {
  margin: 0px;
  padding: 0px;
  font-weight: 500;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-underline-offset: 3px;
}
@media only screen and (max-width: 480px) {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  table,
  th,
  td,
  ul,
  li,
  ol,
  dl,
  dt,
  dd,
  form,
  fieldset,
  p,
  figure {
    font-size: 14px;
  }
}

table {
  border-collapse: collapse;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
a img {
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

input,
textArea,
select,
button {
  background: none;
  margin: 0px;
  outline: none;
  padding: 0px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "メイリオ", sans-serif;
  font-weight: normal;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  -webkit-appearance: none;
}

select {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

button {
  cursor: pointer;
}

strong {
  font-weight: bold;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*                link
======================================================= */
a {
  color: #333333;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*-- layoutフォルダの中の_index.scss --*/
.l-wrap {
  overflow: hidden;
}

.l-header {
  position: relative;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  margin-top: 40px;
}
@media only screen and (max-width: 1600px) {
  .l-header {
    max-width: 1100px;
  }
}
@media only screen and (max-width: 1279px) {
  .l-header {
    max-width: 800px;
  }
}
@media only screen and (max-width: 1023px) {
  .l-header {
    max-width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header {
    display: none;
  }
}

.header__innner {
  position: relative;
  width: 100%;
  background-color: #fff;
}
.header__innner::before {
  position: absolute;
  display: block;
  content: "";
  width: 136px;
  height: 100%;
  background-image: url("../images/nav_global_left.svg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: -136px;
}
@media only screen and (max-width: 1023px) {
  .header__innner::before {
    width: 80px;
    left: -60px;
  }
}
.header__innner::after {
  position: absolute;
  display: block;
  content: "";
  width: 136px;
  height: 100%;
  background-image: url("../images/nav_global_right.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  right: -136px;
}
@media only screen and (max-width: 1023px) {
  .header__innner::after {
    width: 80px;
    right: -60px;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item {
  position: relative;
}
.header__nav-item::before {
  width: 1px;
  height: 24px;
  content: "";
  background-color: #bcbcbc;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}
.header__nav-item:last-child::after {
  width: 1px;
  height: 24px;
  content: "";
  background-color: #bcbcbc;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}

.header__nav-link {
  display: block;
  padding: 34px 30px 33px;
}
@media only screen and (max-width: 1279px) {
  .header__nav-link {
    padding: 16px 12px 6px;
  }
}
.header__nav-link:hover {
  opacity: 0.8;
}

.header__nav-text {
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 1279px) {
  .header__nav-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1023px) {
  .header__nav-text {
    font-size: 14px;
  }
}

.l-footer {
  margin-top: 80px;
  padding: 72px 0 130px;
  background-color: #F9F7E1;
}
@media only screen and (max-width: 1279px) {
  .l-footer {
    margin-top: 60px;
    padding: 64px 0 110px;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer {
    margin-top: 40px;
    padding: 40px 0 80px;
  }
}

.l-ft__content-wrap {
  padding: 40px 32px;
  background-color: #FFFFFF;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .l-ft__content-wrap {
    padding: 24px 20px;
  }
}

.l-ft__head {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .l-ft__head {
    font-size: 16px;
  }
}

.l-ft__contact-wrap {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
@media only screen and (max-width: 767px) {
  .l-ft__contact-wrap {
    margin-top: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-ft__tel {
  position: relative;
  font-family: "Cabin", sans-serif;
  font-size: 36px;
  font-weight: bold;
  padding-left: 32px;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .l-ft__tel {
    font-size: 24px;
  }
}
.l-ft__tel::before {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../images/contact_phone.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .l-ft__tel::before {
    width: 24px;
    height: 24px;
  }
}

.l-ft__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-ft__info-head {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
  background-color: #642212;
  padding: 2px 10px;
}
@media only screen and (max-width: 767px) {
  .l-ft__info-head {
    font-size: 13px;
    padding: 1px 6px;
  }
}

.l-ft__info-day {
  margin-left: 8px;
  font-family: "Cabin", sans-serif;
  font-weight: bold;
}

.l-ft__info-time {
  font-family: "Cabin", sans-serif;
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .l-ft__info-time {
    font-size: 18px;
  }
}

.l-ft__contact-btn {
  margin: 16px auto 0;
}
@media only screen and (max-width: 767px) {
  .l-ft__contact-btn {
    margin: 12px auto 0;
  }
}

.l-ft__contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f59d68;
  border-radius: 24px;
  height: 48px;
  max-width: 304px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-ft__contact-link:hover {
  opacity: 0.8;
}

.l-ft__btn-text {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-width: 767px) {
  .l-ft__btn-text {
    font-size: 16px;
  }
}
.l-ft__btn-text::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  background-image: url(../images/contact_mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.l-ft__copy {
  margin-top: 48px;
  text-align: center;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .l-ft__copy {
    margin-top: 24px;
  }
}

/*-- objectフォルダの中の_index.scss --*/
/*-- componentフォルダの中の_index.scss --*/
.c-width {
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
  padding: 0;
  width: 100%;
}
@media only screen and (max-width: 1440px) {
  .c-width {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .c-width {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-width {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 350px) {
  .c-width {
    padding: 0 12px;
  }
}

.c-width--qa {
  padding: 0 28px;
}
@media only screen and (max-width: 1279px) {
  .c-width--qa {
    padding: 0 24px;
  }
}

.c-width--footer {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
@media only screen and (max-width: 1440px) {
  .c-width--footer {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-width--footer {
    padding: 0 20px;
  }
}

.c-title {
  text-align: center;
  margin-bottom: -14px;
}
@media only screen and (max-width: 1279px) {
  .c-title {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .c-title {
    margin-top: 32px;
  }
}

.c-title_jp {
  font-size: 32px;
  line-height: 46px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #642212;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 1279px) {
  .c-title_jp {
    font-size: 24px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .c-title_jp {
    font-size: 20px;
    line-height: 30px;
  }
}

.c-title_jp--black {
  color: #333333;
}

.c-title_eng {
  color: #FFF462;
  opacity: 0.25;
  display: block;
  text-align: center;
  position: relative;
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  z-index: 1;
  font-size: 96px;
  margin-top: -60px;
  line-height: 96px;
}
@media only screen and (max-width: 1279px) {
  .c-title_eng {
    font-size: 80px;
    line-height: 80px;
    margin-top: -48px;
  }
}
@media only screen and (max-width: 767px) {
  .c-title_eng {
    font-size: 56px;
    line-height: 68px;
    margin-top: -36px;
  }
}

.c-title_eng--blue {
  color: #E0F5FD;
  opacity: 1;
}

.c-title_eng--white {
  color: #fff;
}

/*-- utilityフォルダの中の_index.scss --*/
.u-ib {
  display: inline-block;
}

.u-center {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-tb-show {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .u-tb-show {
    display: block;
  }
}

.u-sp-show {
  display: none;
}
@media only screen and (max-width: 767px) {
  .u-sp-show {
    display: block;
  }
}