@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  text-align: left;
  color: #131938;
  word-break: break-word;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #131938;
  font-weight: 400;
}

textarea {
  resize: vertical;
}

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

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

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

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

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p, dt, dd, li, th, td,
input, button, textarea, select {
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .tel-link {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    width: 100%;
  }
}
/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-wrap {
  max-width: 115rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
.l-wrap.-s {
  max-width: 90rem;
}
.l-wrap.-l {
  max-width: 128rem;
}
@media screen and (max-width: 767px) {
  .l-wrap {
    width: calc(100% - 3rem);
  }
}

.l-container {
  overflow: hidden;
}
.l-container.-thanks {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.l-container.-thanks main {
  flex: 1;
  width: 100%;
  padding: 10rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-container.-thanks main .p-thanks {
  width: 100%;
}
.l-container.-thanks main .p-thanks .ttl {
  font-size: 2.6rem;
  color: #172A88;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-container.-thanks main .p-thanks .ttl {
    font-size: 2.2rem;
    line-height: 1.4;
  }
}
.l-container.-thanks main .p-thanks .txt {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-container.-thanks main .p-thanks .txt {
    font-size: 1.4rem;
  }
}
.l-container.-thanks main .p-thanks .c-btn {
  margin-top: 5rem;
}
.l-container.-thanks .l-footer {
  width: 100%;
}

/* ---------------------------------------------
  装飾
-----------------------------------------------*/
.u-bold {
  font-weight: 700;
}

.u-underline {
  text-decoration: underline;
}

.u-bg-white {
  background-color: #fff;
  border-radius: 0.5rem;
  color: #F08300;
  padding: 0 0.2rem;
}

.u-orange {
  color: #F08300;
}

/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
/* ボタン
--------------------------------*/
.c-btn_link {
  margin: 0 auto;
  width: 40rem;
  height: 7rem;
  background-color: #F08300;
  color: #fff;
  padding-left: 7.5rem;
  display: flex;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 500;
  border-radius: 4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn_link:hover::before {
    right: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-btn_link {
    width: 30rem;
    height: 6rem;
    justify-content: center;
    padding-left: 0;
    font-size: 2rem;
    border-radius: 3rem;
  }
}
.c-btn_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3.3rem;
  width: 2.3rem;
  height: 2.3rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow.svg);
  background-color: white;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn_link::before {
    width: 1.6rem;
    height: 1.6rem;
    right: 2rem;
  }
}
.c-btn_link.-white {
  background-color: #fff;
  color: #F08300;
}
@media screen and (max-width: 767px) {
  .c-btn_link.-white {
    width: 34.5rem;
    height: 7.3rem;
    border-radius: 5rem;
    font-size: 2.4rem;
  }
}
.c-btn_link.-white::before {
  background-color: #F08300;
}
.c-btn_link.-white::after {
  border-radius: 4rem;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid #F08300;
}
@media screen and (max-width: 767px) {
  .c-btn_link.-white::after {
    border-radius: 5rem;
  }
}
.c-btn_link_catch {
  width: 27rem;
  height: 2.8rem;
  background-color: #FFE82D;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4.5rem;
  position: absolute;
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #131938;
  font-weight: 700;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-btn_link_catch {
    font-size: 1.4rem;
    width: 23.7rem;
  }
}

/* タイトル
--------------------------------*/
.c-secttl-box {
  text-align: center;
}
.c-secttl-box .c-secttl-en {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
  color: #F08300;
  line-height: 1;
}
.c-secttl-box .c-secttl {
  display: inline-block;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secttl {
    font-size: 3.6rem;
  }
}
.c-secttl-box .c-secttl.-right::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: -3.7rem;
  width: 6rem;
  height: 5rem;
  background: url(../img/common/icon_ttl_right.svg) no-repeat center center/contain;
}
.c-secttl-box .c-secttl.-left::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: -3.7rem;
  width: 6rem;
  height: 5rem;
  background: url(../img/common/icon_ttl_left.svg) no-repeat center center/contain;
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}
.l-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .l-header_inner {
    padding: 0.8rem 1rem 0.8rem 1.5rem;
  }
}
.l-header_left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.l-header_left .logo {
  width: 27.5rem;
}
@media screen and (max-width: 767px) {
  .l-header_left .logo {
    width: 17rem;
  }
}
.l-header_left .logo a {
  display: block;
}
.l-header_left .txt {
  font-size: 1.8rem;
  color: #172A88;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-header_left .txt {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.l-header_right .menu {
  display: flex;
  align-items: center;
  gap: 4.2rem;
}
.l-header_right .menu .list {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.l-header_right .menu .list_item a {
  font-size: 1.8rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-header_right .menu .list_item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header_right .menu .list_item a:hover {
    opacity: 0.7;
  }
}
.l-header_right .menu .btn_link {
  width: 17.2rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-family: "M PLUS 1p", sans-serif;
  background-color: #F08300;
}
@media screen and (min-width: 768px) {
  .l-header_right .menu .btn_link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header_right .menu .btn_link:hover {
    opacity: 0.7;
  }
}
.l-header_right .menu-trigger {
  position: relative;
  width: 2rem;
  height: 1.6rem;
  cursor: pointer;
}
.l-header_right .menu-trigger span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F08300;
  width: 100%;
  height: 2px;
  display: block;
  transition: 0.3s;
}
.is-fixed .l-header_right .menu-trigger span {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header_right .menu-trigger span:nth-child(2) {
  top: 0.8rem;
}
.is-fixed .l-header_right .menu-trigger span:nth-child(2) {
  opacity: 0;
}
.l-header_right .menu-trigger span:nth-child(3) {
  top: 1.6rem;
}
.is-fixed .l-header_right .menu-trigger span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gnavi {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #F08300;
  padding-top: 10rem;
  height: 100%;
  width: 100%;
  z-index: 99;
  transform: translateY(-100%);
  transition: 0.3s;
}
.is-fixed .gnavi {
  transform: translate(0);
}
.gnavi_inner .menu .list {
  width: 20rem;
  margin: 0 auto;
}
.gnavi_inner .menu .list_item a {
  text-align: center;
  display: block;
  color: #fff;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #fff;
}
.gnavi_inner .menu .c-btn {
  margin-top: 5rem;
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer {
  padding: 6rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 5rem 0 1rem;
  }
}
.l-footer .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer .flex {
    display: block;
  }
}
.l-footer .flex .txt-box .logo {
  width: 35.3rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .txt-box .logo {
    width: 31.5rem;
    margin: 0 auto;
  }
}
.l-footer .flex .txt-box .logo img {
  width: 100%;
}
.l-footer .flex .txt-box .ttl {
  margin-top: 1rem;
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .txt-box .ttl {
    margin-top: 2.5rem;
    font-size: 1.6rem;
  }
}
.l-footer .flex .txt-box .txt {
  margin-top: 1.3rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .txt-box .txt {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
.l-footer .flex .txt-box .map-box {
  margin-top: 1rem;
}
.l-footer .flex .txt-box .btn-box {
  margin-top: 1.1rem;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .txt-box .btn-box {
    margin-top: 2rem;
    flex-direction: column;
    gap: 0.8rem;
  }
}
.l-footer .flex .txt-box .btn-box .btn_link {
  padding: 1.2rem 5.2rem;
  display: block;
  color: #fff;
  font-weight: 700;
  background-color: #00B900;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer .flex .txt-box .btn-box .btn_link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .flex .txt-box .btn-box .btn_link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .flex .txt-box .btn-box .btn_link {
    text-align: center;
    width: 100%;
    padding: 0.9rem 0;
    font-size: 2rem;
  }
}
.l-footer .flex .txt-box .btn-box .btn_link.-mail {
  background-color: #F08300;
  padding: 1.2rem 1.7rem 1.2rem 4.2rem;
  position: relative;
}
.l-footer .flex .txt-box .btn-box .btn_link.-mail::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.7rem;
  width: 1.9rem;
  height: 1.3rem;
  background: url(../img/common/icon_mail.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .txt-box .btn-box .btn_link.-mail::before {
    width: 2.8rem;
    height: 2rem;
    left: 3rem;
  }
}
.l-footer .flex .txt-box .sns {
  margin-top: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .txt-box .sns {
    margin-top: 2.2rem;
  }
}
.l-footer .flex .txt-box .sns a {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-footer .flex .txt-box .sns a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .flex .txt-box .sns a:hover {
    opacity: 0.7;
  }
}
.l-footer .flex .map-box {
  width: 47.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .map-box {
    width: 100%;
  }
}
.l-footer .flex .map-box .map {
  width: 100%;
}
.l-footer .flex .map-box .map iframe {
  width: 100%;
  height: 24rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .map-box .map iframe {
    height: 17.5rem;
  }
}
.l-footer .flex .map-box .link {
  font-size: 1.3rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .l-footer .flex .map-box .link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .flex .map-box .link:hover {
    opacity: 0.7;
  }
}
.l-footer .bottom {
  margin-top: 4rem;
}
.l-footer .bottom .list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
  position: relative;
}
.l-footer .bottom .list_item {
  position: relative;
}
.l-footer .bottom .list_item:nth-child(n+2)::before {
  content: "/";
  position: absolute;
  top: 0;
  left: -1rem;
  width: 1rem;
  height: 2.3rem;
}
@media screen and (min-width: 768px) {
  .l-footer .bottom .list_item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .bottom .list_item a:hover {
    opacity: 0.7;
  }
}
.l-footer .bottom .copyright {
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer .bottom .copyright {
    margin-top: 0.3rem;
    font-size: 1.3rem;
  }
}
.l-footer .bottom .copyright small {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer .bottom .copyright small {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=common.css.map */