@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
/*
'Noto Sans JP'
*/
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, abbr, address, cite, code, del, dfn, em,
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl,
dt, dd, ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figcaption, figure, footer, header, hgroup,
menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 新規追加要素をブロック要素化 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* ulのマーカー非表示 */
ol, ul {
  list-style: none;
}

/* 引用符の非表示 */
blockquote, q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}
a:hover, a:active {
  text-decoration: none;
  /* opacity: 0.75; */
  /* filter: alpha(opacity=75); */
}

a,
a * {
  transition: opacity 0.6s ease;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* 追加 */
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  /* width: 100%; */
  max-width: 100%;
  height: auto;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
.xl_contain {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 1280px;
}
@media screen and (max-width: 900px) {
  .xl_contain {
    padding: 0 2rem;
  }
}

.lg_contain {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}
@media screen and (max-width: 900px) {
  .lg_contain {
    padding: 0 1.8rem;
  }
}

.lgm_contain {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
}
@media screen and (max-width: 900px) {
  .lgm_contain {
    padding: 0 2rem;
  }
}

.md_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 768px;
}
@media screen and (max-width: 768px) {
  .md_contain {
    padding: 0 1.8rem;
  }
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* 表示切り替え */
.sp_on {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc_on {
    display: none !important;
  }
  .sp_on {
    display: block !important;
  }
}
/* LAZYLOAD SETTINGS */
.blurUp {
  filter: blur(5px);
  transition: filter 400ms;
}
.blurUp.lazyloaded {
  filter: blur(0);
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
.left_on {
  text-align: left;
}

.right_on {
  text-align: right;
}

.center_on {
  text-align: center;
}

.inview {
  opacity: 0;
  transition: all 0.7s;
}
.inview.is-show {
  opacity: 1;
  -webkit-animation: showBound 0.7s ease-out forwards;
          animation: showBound 0.7s ease-out forwards;
}

.thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.thumb img {
  transition: all 0.3s;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center";
}

/*--------------------------------------------------------------
    # メインコンテンツ
--------------------------------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 2.0588;
  overflow: hidden;
  scroll-behavior: smooth;
  overflow-y: scroll;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.4vw;
  }
}
html body {
  width: 100%;
  line-height: 1.7;
  font-family: "Noto Sans JP", メイリオ, Meiryo, sans-serif;
  color: #1a1a1a;
}

#wrapper {
  overflow: hidden;
  position: relative;
}
#wrapper main {
  position: relative;
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  #wrapper main {
    padding-top: 5.5rem;
  }
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
  filter: alpha(opacity=60);
  transition: all 0.25s;
}

/*--------------------------------------------------------------
    # text & background style
--------------------------------------------------------------*/
.bg_gray {
  background: #E6E6E6;
}

.t_white {
  color: #fff;
}

.lt_shape::before {
  position: absolute;
  z-index: 0;
  content: "";
  left: 0;
  top: 0;
  width: 53.1rem;
  height: 21.1rem;
  background: url(../images/shape01.png) top left no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .lt_shape::before {
    width: 29.8rem;
    height: 12.1rem;
  }
}

.rt_shape::before {
  position: absolute;
  z-index: 0;
  content: "";
  right: 0;
  top: 0;
  width: 53.1rem;
  height: 21.1rem;
  background: url(../images/shape02.png) top left no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .rt_shape::before {
    width: 29.4rem;
  }
}

.nrl {
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 768px) {
  .nrl {
    font-size: 1.65rem;
    line-height: 3rem;
  }
}

.link_btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 5rem;
  min-width: 25rem;
  margin: 0 1rem;
  position: relative;
  border: none;
  outline: none;
  color: #eeeeee;
  font-size: 1.4rem;
  line-height: 1.3;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0.6rem;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.link_btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 9000px;
  background: #ffffff;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
}
.link_btn.bg_grey {
  font-weight: 500;
  color: #000;
}
.link_btn:focus {
  outline: 0;
}
.link_btn:disabled, .link_btn[disabled] {
  background: #3f6600;
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.fadein_r {
  opacity: 0;
  transform: translate(100px, 0);
  transition-property: transform, opacity;
  transition-duration: 1s;
}
.fadein_r.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.fadein_l {
  opacity: 0;
  transform: translate(-100px, 0);
  transition-property: transform, opacity;
  transition-duration: 1s;
}
.fadein_l.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.fadein {
  opacity: 0;
  transform: translate(0, 70px);
  transition-property: transform, opacity;
  transition-duration: 1s;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.sect_ttl1 .e_t {
  font-family: HelveticaB;
  font-size: 6.8rem;
  line-height: 1;
  color: #005BA4;
}
@media screen and (max-width: 768px) {
  .sect_ttl1 .e_t {
    font-size: 5.05rem;
  }
}
.sect_ttl1 .j_t {
  margin-top: 0.6rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -2px;
  color: #005BA4;
}
@media screen and (max-width: 768px) {
  .sect_ttl1 .j_t {
    margin-top: 0.8rem;
    margin-top: 1.8rem;
    font-size: 2.2rem;
  }
}

.sect_ttl2 .j_t {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -1.8px;
}
@media screen and (max-width: 768px) {
  .sect_ttl2 .j_t {
    font-size: 2.18rem;
  }
}
.sect_ttl2 .e_t {
  margin-top: 2rem;
  font-weight: 400;
  font-size: 2.9rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .sect_ttl2 .e_t {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}

input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: -999rem;
}
input[type=checkbox]:required + label, input[type=checkbox]:required:valid + label {
  color: inherit;
}

label {
  cursor: pointer;
}

.tick-icon {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.check_box:checked + .checkbox-label span:first-child {
  background: #1A1A1A;
  border-color: #1A1A1A;
  transition: scale(0.9) 0.4s ease;
}
.check_box:checked + .checkbox-label span:first-child svg {
  stroke-dashoffset: 0;
}

label.checkbox-label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  label.checkbox-label {
    width: 100%;
  }
}
label.checkbox-label span {
  font-weight: 500;
}
label.checkbox-label span:first-of-type {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border: solid #1A1A1A 2px;
  transform: scale(1);
  background: #fff;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  label.checkbox-label span:first-of-type {
    width: 1.7rem;
    height: 1.7rem;
  }
}
label.checkbox-label span:first-of-type svg {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
}
@media screen and (max-width: 768px) {
  label.checkbox-label span:first-of-type svg {
    width: 1rem;
    height: 1rem;
  }
}
label.checkbox-label span:last-of-type {
  padding-left: 1.8rem;
  font-size: 1.7rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  label.checkbox-label span:last-of-type {
    padding-left: 0.6rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
label.checkbox-label:hover span:first-of-type {
  border-color: #7d7d7d;
}
label.checkbox-label.invalid {
  color: red;
}

.price_modal {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .price_modal {
    width: 94%;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .price_modal .lg_contain {
    padding: 0;
  }
}
.price_modal .label {
  margin-bottom: 3rem;
  font-weight: 900;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .price_modal .label {
    font-size: 1.8rem;
  }
}
.price_modal .price_block {
  width: 100%;
  min-width: 70rem;
}
@media screen and (max-width: 768px) {
  .price_modal .price_block {
    min-width: unset;
  }
}
.price_modal .price_block:not(:nth-child(4)) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .price_modal .price_block:not(:nth-child(4)) {
    margin-bottom: 2rem;
  }
}
.price_modal .price_block .price_table {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.price_modal .price_block .price_table td {
  padding: 0.3rem 0;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .price_modal .price_block .price_table td {
    padding: 0.3rem 0.1rem;
    font-size: 1rem;
  }
}
.price_modal .price_block .price_table thead tr {
  background: #036EB7;
}
.price_modal .price_block .price_table thead tr td {
  text-align: center;
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .price_modal .price_block .price_table thead tr td {
    font-size: 1.4rem;
  }
}
.price_modal .price_block .price_table tbody tr {
  border-bottom: solid #040000 2px;
}
.price_modal .price_block .price_table tbody tr:first-of-type {
  background: #DBDCDC;
}
.price_modal .price_block .price_table tbody tr:first-of-type td {
  font-weight: 700;
}
.price_modal .price_block .price_table tbody tr:last-of-type {
  border-bottom: none;
}
.price_modal .price_block .price_table tbody tr td {
  border-right: solid #040000 2px;
  text-align: center;
  background: #EEEEEF;
}
.price_modal .price_block .price_table tbody tr td:first-of-type {
  background: #DBDCDC;
  font-weight: 700;
}
.price_modal .price_block .price_table tbody tr td:last-of-type {
  border-right: none;
}
.price_modal .price_block .refer {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .price_modal .price_block .refer {
    font-size: 1rem;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes stretch-animate {
  0% {
    transform: scale(1, 1);
  }
  28% {
    transform: scale(1.15, 0.85);
  }
  50% {
    transform: scale(0.9, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes stretch-animate {
  0% {
    transform: scale(1, 1);
  }
  28% {
    transform: scale(1.15, 0.85);
  }
  50% {
    transform: scale(0.9, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes floating {
  0% {
    transform: translateY(0);
  }
  33.33333% {
    transform: translateY(-10px);
  }
  66.66667% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  33.33333% {
    transform: translateY(-10px);
  }
  66.66667% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes fuwafuwa {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, -30px);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, -30px);
  }
}
@-webkit-keyframes cloud {
  0% {
    transform: translate(-30px, 0%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes cloud {
  0% {
    transform: translate(-30px, 0%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes cloud-left {
  0% {
    transform: translate(-100%, 0%);
    opacity: 0.5;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes cloud-left {
  0% {
    transform: translate(-100%, 0%);
    opacity: 0.5;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes cloud-right {
  0% {
    transform: translate(200%, 0%);
    opacity: 0.5;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes cloud-right {
  0% {
    transform: translate(200%, 0%);
    opacity: 0.5;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes cloud-down {
  0% {
    transform: translate(0%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes cloud-down {
  0% {
    transform: translate(0%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes shine {
  0% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  70% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, 190%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
}
@keyframes shine {
  0% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  70% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, 190%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
}
@-webkit-keyframes ball {
  0% {
    transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    transform: translate(0%, -30px);
  }
}
@keyframes ball {
  0% {
    transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    transform: translate(0%, -30px);
  }
}
@-webkit-keyframes koton {
  0% {
    transform: translate(0%, -100%);
    opacity: 0;
  }
  20% {
    transform: translate(0%, 0%);
  }
  30% {
    transform: translate(0%, -10%);
  }
  50% {
    transform: translate(0%, 0%);
  }
  60% {
    transform: translate(0%, -3%);
    opacity: 1;
  }
  80% {
    transform: translate(0%, 0%);
  }
  90% {
    transform: translate(0%, -1%);
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes koton {
  0% {
    transform: translate(0%, -100%);
    opacity: 0;
  }
  20% {
    transform: translate(0%, 0%);
  }
  30% {
    transform: translate(0%, -10%);
  }
  50% {
    transform: translate(0%, 0%);
  }
  60% {
    transform: translate(0%, -3%);
    opacity: 1;
  }
  80% {
    transform: translate(0%, 0%);
  }
  90% {
    transform: translate(0%, -1%);
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes jump {
  0% {
    transform: translate(0, 0px);
  }
  3% {
    transform: translate(0, -20px);
  }
  5% {
    transform: translate(0, 0px);
  }
  6% {
    transform: translate(0, -5px);
  }
  7% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes jump {
  0% {
    transform: translate(0, 0px);
  }
  3% {
    transform: translate(0, -20px);
  }
  5% {
    transform: translate(0, 0px);
  }
  6% {
    transform: translate(0, -5px);
  }
  7% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@-webkit-keyframes exclamation {
  0% {
    transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    transform: translate(0%, -15px);
  }
}
@keyframes exclamation {
  0% {
    transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    transform: translate(0%, -15px);
  }
}
@-webkit-keyframes line-top {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0.9rem);
  }
}
@keyframes line-top {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0.9rem);
  }
}
@-webkit-keyframes line-top-reverse {
  0% {
    transform: translateY(0.9rem);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes line-top-reverse {
  0% {
    transform: translateY(0.9rem);
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes line-top-rotate {
  0% {
    transform: translateY(0.9rem) rotateZ(0deg);
  }
  100% {
    transform: translateY(0.9rem) rotateZ(45deg);
  }
}
@keyframes line-top-rotate {
  0% {
    transform: translateY(0.9rem) rotateZ(0deg);
  }
  100% {
    transform: translateY(0.9rem) rotateZ(45deg);
  }
}
@-webkit-keyframes line-top-rotate-reverse {
  0% {
    transform: translateY(0.9rem) rotateZ(45deg);
  }
  100% {
    transform: translateY(0.9rem) rotateZ(0deg);
  }
}
@keyframes line-top-rotate-reverse {
  0% {
    transform: translateY(0.9rem) rotateZ(45deg);
  }
  100% {
    transform: translateY(0.9rem) rotateZ(0deg);
  }
}
@-webkit-keyframes line-mid {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes line-mid {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes line-mid-reverse {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes line-mid-reverse {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes line-mid-invisible {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes line-mid-invisible {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes line-bot {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-0.9rem);
  }
}
@keyframes line-bot {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-0.9rem);
  }
}
@-webkit-keyframes line-bot-reverse {
  0% {
    transform: translateY(-0.9rem);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes line-bot-reverse {
  0% {
    transform: translateY(-0.9rem);
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes line-bot-rotate {
  0% {
    transform: translateY(-0.9rem) rotateZ(0deg);
  }
  100% {
    transform: translateY(-0.9rem) rotateZ(135deg);
  }
}
@keyframes line-bot-rotate {
  0% {
    transform: translateY(-0.9rem) rotateZ(0deg);
  }
  100% {
    transform: translateY(-0.9rem) rotateZ(135deg);
  }
}
@-webkit-keyframes line-bot-rotate-reverse {
  0% {
    transform: translateY(-0.9rem) rotateZ(135deg);
  }
  100% {
    transform: translateY(-0.9rem) rotateZ(0deg);
  }
}
@keyframes line-bot-rotate-reverse {
  0% {
    transform: translateY(-0.9rem) rotateZ(135deg);
  }
  100% {
    transform: translateY(-0.9rem) rotateZ(0deg);
  }
}
@-webkit-keyframes checkbox_ani {
  50% {
    transform: scale(0.9);
  }
}
@keyframes checkbox_ani {
  50% {
    transform: scale(0.9);
  }
}
header {
  position: fixed;
  width: 100%;
  height: 6rem;
  z-index: 10000;
  background: #fff;
  transition: all 0.3s;
  padding: 0 2rem 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header {
    height: 5.5rem;
    padding: 0 0 0 2rem;
  }
}
header.over {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1843137255);
}
@media screen and (max-width: 768px) {
  header .hd_logo {
    width: 50.5%;
  }
  header .hd_logo img {
    width: 100%;
  }
}
header .hd_nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .hd_nav {
    display: none;
  }
}
header .hd_nav .menu_bar {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}
header .hd_nav .menu_bar li {
  margin-left: 1rem;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.6px;
}
header .hd_nav .menu_bar li a {
  padding: 0 1rem;
}
header .hd_nav .contact_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.8rem;
  background: #f5c800;
  border-radius: 5rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 3rem;
  color: #005ba4;
}
header .hd_nav .contact_link img {
  margin-right: 0.2rem;
}
header .navToggle {
  position: fixed;
  right: 0;
  top: 0;
  display: none;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  header .navToggle {
    display: inline-block;
    width: 5.8rem;
    height: 5.5rem;
    padding: 1.5rem 1.5rem;
    cursor: pointer;
    z-index: 10010;
  }
  header .navToggle div {
    position: relative;
  }
  header .navToggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 0.4rem;
    background: #005ba4;
    left: 0;
    transition: 0.35s ease-in-out;
  }
  header .navToggle span:nth-child(1) {
    top: 0;
  }
  header .navToggle span:nth-child(2) {
    top: 1.1rem;
  }
  header .navToggle span:nth-child(3) {
    top: 2.2rem;
  }
  header .navToggle p {
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    position: absolute;
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 1.3rem;
  }
}
header nav.sp-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  header nav.sp-nav {
    display: block;
    position: fixed;
    width: 100%;
    margin-top: 5.5rem;
    height: calc(100vh - 5.5rem);
    overflow-y: scroll;
    top: 0;
    left: 0;
    background: #005ba4;
    z-index: 9000;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  }
  header nav.sp-nav a {
    display: block;
  }
  header nav.sp-nav a* {
    transition: 0s;
  }
  header nav.sp-nav .logo {
    width: 100%;
    padding: 6.6rem 0 0;
  }
  header nav.sp-nav .logo img {
    margin: 0;
    text-align: left;
  }
  header nav.sp-nav ul.l_menu {
    display: block;
    padding: 0 2.5rem;
  }
  header nav.sp-nav ul.l_menu li.l_menu-li {
    position: relative;
    text-align: center;
    padding: 1.8rem 0;
  }
  header nav.sp-nav ul.l_menu li.l_menu-li a {
    text-decoration: none;
    color: #fff;
  }
  header nav.sp-nav ul.l_menu li.l_menu-li span {
    position: relative;
    font-weight: 500;
    font-size: 1.55rem;
  }
  header nav.sp-nav .link_line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 5.5rem;
  }
  header nav.sp-nav .contact_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    background: #f5c800;
    border-radius: 5rem;
    font-weight: 500;
    font-size: 1.65rem;
    line-height: 3rem;
    color: #005ba4;
  }
  header nav.sp-nav .contact_link img {
    width: 2rem;
    margin-right: 0.3rem;
  }
}
header.open nav.sp-nav {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.4s, opacity 0.4s;
}
header.open .navToggle span:nth-child(1) {
  top: 1.1rem;
  transform: rotate(315deg);
}
header.open .navToggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
header.open .navToggle span:nth-child(3) {
  top: 1.1rem;
  transform: rotate(-315deg);
}

footer {
  position: relative;
  background: #E7E7E7;
}
footer .lg_contain {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  footer .lg_contain {
    padding: 1.7rem 3.4rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  footer .lg_contain .ft_logo img {
    width: 23.5rem;
  }
}
footer .lg_contain .addr {
  margin-top: 1.6rem;
  font-weight: 500;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  footer .lg_contain .addr {
    margin-top: 0.8rem;
    font-size: 1.5rem;
  }
}
footer .lg_contain .tel_link {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: #005BA4;
}
@media screen and (max-width: 768px) {
  footer .lg_contain .tel_link {
    font-size: 2.85rem;
    margin-top: 0;
  }
}
footer .lg_contain .tel_link img {
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  footer .lg_contain .tel_link img {
    width: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  span.anchor {
    height: 5rem;
    margin-top: -5rem;
  }
}

section {
  position: relative;
  width: 100%;
}
section.hero .kv {
  width: 100%;
}
section.hero .lg_contain {
  position: absolute;
  transform: translate(-50%, 0);
  left: 50%;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
section.hero .lg_contain h1 {
  font-weight: 700;
  font-size: 3vw;
  color: #fff;
  margin-bottom: 4rem;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  section.hero .lg_contain h1 {
    margin-bottom: 3rem;
    margin-left: 5.6rem;
    font-size: 3rem;
    letter-spacing: 6px;
  }
}
section.greeting::before {
  position: absolute;
  z-index: -1;
  content: "";
  right: 0;
  top: 0;
  width: 46.9rem;
  height: 37.5rem;
  background: url(../images/greeting_tag.png) top right no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  section.greeting::before {
    width: 23rem;
  }
}
section.greeting .lg_contain {
  padding-top: 14.5rem;
  padding-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  section.greeting .lg_contain {
    padding-top: 17.5rem;
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  section.greeting .lg_contain .sect_ttl1 .e_t {
    width: 26rem;
  }
}
section.greeting .lg_contain .media_block {
  margin-top: 7rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  section.greeting .lg_contain .media_block {
    flex-wrap: wrap;
    margin-top: 3.3rem;
  }
}
section.greeting .lg_contain .media_block li.content {
  width: 47%;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  section.greeting .lg_contain .media_block li.content {
    order: 2;
    width: 100%;
    margin-top: 2.5rem;
  }
}
section.greeting .lg_contain .media_block li.content .label {
  font-weight: 500;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  section.greeting .lg_contain .media_block li.content .label {
    font-size: 1.6rem;
    letter-spacing: -0.05rem;
  }
}
section.greeting .lg_contain .media_block li.content .label span {
  margin-left: 1.5rem;
  font-weight: inherit;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  section.greeting .lg_contain .media_block li.content .label span {
    margin-left: 1rem;
    font-size: 2.2rem;
  }
}
section.greeting .lg_contain .media_block li.content .nrl {
  margin-top: 1.5rem;
  letter-spacing: -0.3px;
}
@media screen and (max-width: 768px) {
  section.greeting .lg_contain .media_block li.content .nrl {
    margin-top: 5.2rem;
    letter-spacing: -0.02rem;
  }
}
section.greeting .lg_contain .media_block li.media {
  width: 42.55%;
}
@media screen and (max-width: 768px) {
  section.greeting .lg_contain .media_block li.media {
    order: 1;
    width: 100%;
  }
  section.greeting .lg_contain .media_block li.media .thumb {
    width: 100vw;
    margin-left: -1.8rem;
  }
}
section.greeting .lg_contain .desc {
  position: relative;
  margin-top: 7rem;
  letter-spacing: -0.8px;
}
@media screen and (max-width: 768px) {
  section.greeting .lg_contain .desc {
    margin-top: 4.5rem;
    padding-top: 4.5rem;
    letter-spacing: -0.15rem;
  }
  section.greeting .lg_contain .desc::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 6.7rem;
    height: 0.3rem;
    background: #005BA4;
  }
}
section.service .lg_contain {
  padding-top: 10rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  section.service .lg_contain {
    padding-top: 6.6rem;
    padding-bottom: 5.4rem;
  }
}
@media screen and (max-width: 768px) {
  section.service .lg_contain .sect_ttl2 {
    margin-left: 1.6rem;
  }
}
section.service .lg_contain .service_list {
  margin-top: 7.4rem;
}
@media screen and (max-width: 768px) {
  section.service .lg_contain .service_list {
    flex-wrap: wrap;
    margin-top: 4.3rem;
    padding: 0 1.6rem;
  }
}
section.service .lg_contain .service_list li {
  position: relative;
  width: 44%;
}
@media screen and (max-width: 768px) {
  section.service .lg_contain .service_list li {
    width: 90.7%;
    margin-bottom: 4.2rem;
  }
  section.service .lg_contain .service_list li:last-of-type {
    margin-left: 9.3%;
    margin-bottom: 0;
  }
}
section.service .lg_contain .service_list li .thumb {
  width: 100%;
  border-radius: 1.5rem;
}
@media screen and (max-width: 768px) {
  section.service .lg_contain .service_list li .thumb {
    border-radius: 1.1rem;
  }
}
section.service .lg_contain .service_list li .tag_label {
  position: absolute;
  left: 12px;
  top: 3.8rem;
  padding: 0 0 0 0.9rem;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -1px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  section.service .lg_contain .service_list li .tag_label {
    left: 1.1rem;
    top: 3rem;
    padding: 0 0 0 0.6rem;
    font-size: 1.9rem;
  }
}
section.service .lg_contain .service_list li .tag_label span {
  position: relative;
}
section.service .lg_contain .service_list li .tag_label::before {
  position: absolute;
  z-index: 0;
  content: "";
  transform: translateY(-50%);
  top: 65%;
}
section.service .lg_contain .service_list li .tag_label.blue_ribbon {
  color: #fff;
}
section.service .lg_contain .service_list li .tag_label.blue_ribbon::before {
  left: -2rem;
  width: 21.8rem;
  height: 5.3rem;
  background: url(../images/ribbon01.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  section.service .lg_contain .service_list li .tag_label.blue_ribbon::before {
    left: -1.7rem;
    width: 17.3rem;
    height: 4.3rem;
  }
}
section.service .lg_contain .service_list li .tag_label.yellow_ribbon::before {
  left: -2rem;
  width: 28.5rem;
  height: 5.3rem;
  background: url(../images/ribbon02.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  section.service .lg_contain .service_list li .tag_label.yellow_ribbon::before {
    left: -1.7rem;
    width: 22.5rem;
    height: 4.3rem;
  }
}
section.service .lg_contain .service_list li:first-of-type .thumb {
  border: solid #4090c6 0.5rem;
}
section.service .lg_contain .service_list li:last-of-type .thumb {
  border: solid #f3d96e 0.5rem;
}
section.outline .lg_contain {
  padding-top: 12rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  section.outline .lg_contain {
    padding-top: 5.8rem;
    padding-bottom: 7rem;
  }
}
@media screen and (max-width: 768px) {
  section.outline .lg_contain .sect_ttl2 .j_t {
    letter-spacing: 0.05rem;
  }
}
section.outline .lg_contain .ouline_list {
  margin-top: 10rem;
  width: 100%;
  max-height: 45rem;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
}
@media screen and (max-width: 768px) {
  section.outline .lg_contain .ouline_list {
    margin-top: 5.4rem;
    max-height: unset;
    padding-left: 0.2rem;
  }
}
section.outline .lg_contain .ouline_list li {
  width: 43.5%;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  section.outline .lg_contain .ouline_list li {
    width: 100%;
    margin-bottom: 2.1rem;
  }
}
section.outline .lg_contain .ouline_list li .tag {
  padding-left: 1rem;
  border-left: solid #f5c800 0.5rem;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  section.outline .lg_contain .ouline_list li .tag {
    padding-left: 0.6rem;
    font-size: 1.5rem;
  }
}
section.outline .lg_contain .ouline_list li .content {
  margin-top: 1.4rem;
  font-weight: 500;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  section.outline .lg_contain .ouline_list li .content {
    margin-top: 0.7rem;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
  }
}
section.outline .lg_contain .ouline_list li .content span {
  display: none;
}
@media screen and (max-width: 768px) {
  section.outline .lg_contain .ouline_list li .content span {
    display: inline-block;
    font-weight: inherit;
  }
}
section.page_header {
  height: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.page_header.ghome {
  background: url(../images/group_home.jpg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  section.page_header.ghome {
    background: url(../images/group_home_sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
section.page_header.contact {
  background: url(../images/contact.jpg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  section.page_header.contact {
    background: url(../images/contact_sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  section.page_header {
    height: 18.3rem;
  }
}
@media screen and (max-width: 768px) {
  section.page_header .pg_ttl {
    margin-top: 1.5rem;
  }
}
section.page_header .pg_ttl .j_t {
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  section.page_header .pg_ttl .j_t {
    font-size: 2.3rem;
  }
}
section.page_header .pg_ttl .e_t {
  margin-top: 1.4rem;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  section.page_header .pg_ttl .e_t {
    margin-top: 0.8rem;
    font-size: 1.6rem;
  }
}
section.about .lg_contain {
  padding-top: 18rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  section.about .lg_contain {
    padding: 11rem 2.8rem 5rem;
  }
}
section.about .lg_contain .sect_ttl2 .j_t {
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  section.about .lg_contain .sect_ttl2 .j_t {
    text-align: left;
  }
}
section.about .lg_contain p.desc {
  margin: 3rem auto 0;
  max-width: 65rem;
}
@media screen and (max-width: 768px) {
  section.about .lg_contain p.desc {
    margin: 2.6rem auto 0;
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
section.philosophy .lg_contain {
  padding-top: 15rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  section.philosophy .lg_contain {
    padding: 5.3rem 2.8rem 3rem;
  }
}
section.philosophy .lg_contain .sect_ttl2 .j_t {
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  section.philosophy .lg_contain .sect_ttl2 .j_t {
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width: 768px) {
  section.philosophy .lg_contain .sect_ttl2 {
    text-align: left;
  }
}
section.philosophy .lg_contain .philosophy_grid {
  position: relative;
  margin: 7rem auto 0;
  width: 100%;
  max-width: calc(100% - 10rem);
}
@media screen and (max-width: 768px) {
  section.philosophy .lg_contain .philosophy_grid {
    max-width: unset;
    margin-top: 2rem;
  }
}
section.philosophy .lg_contain .philosophy_grid::before {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  content: "";
  width: 94%;
  height: 0;
  border-bottom: dotted #c0c0c0 3px;
}
@media screen and (max-width: 768px) {
  section.philosophy .lg_contain .philosophy_grid::before {
    content: unset;
  }
}
section.philosophy .lg_contain .philosophy_grid::after {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  content: "";
  width: 0;
  height: 86%;
  border-left: dotted #c0c0c0 3px;
}
@media screen and (max-width: 768px) {
  section.philosophy .lg_contain .philosophy_grid::after {
    content: unset;
  }
}
section.philosophy .lg_contain .philosophy_grid li {
  text-align: center;
  padding: 4rem 1rem 6rem;
}
@media screen and (max-width: 768px) {
  section.philosophy .lg_contain .philosophy_grid li {
    padding: 1.3rem 0;
    display: flex;
    align-items: center;
    border-bottom: dotted #c0c0c0 3px;
  }
}
section.philosophy .lg_contain .philosophy_grid li:nth-of-type(1) .label {
  background: #edbecd;
}
section.philosophy .lg_contain .philosophy_grid li:nth-of-type(2) .label {
  background: #bdd2eb;
}
section.philosophy .lg_contain .philosophy_grid li:nth-of-type(3) .label {
  background: #eede9d;
}
section.philosophy .lg_contain .philosophy_grid li:nth-of-type(4) .label {
  background: #c2e6bd;
}
section.philosophy .lg_contain .philosophy_grid li .label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  section.philosophy .lg_contain .philosophy_grid li .label {
    width: 5.3rem;
    height: 5.3rem;
    font-size: 1.9rem;
    margin: unset;
  }
}
section.philosophy .lg_contain .philosophy_grid li .desc {
  margin-top: 3rem;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  section.philosophy .lg_contain .philosophy_grid li .desc {
    margin-top: 0;
    margin-left: 1.4rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.48rem;
    line-height: 1.6;
  }
}
section.features .lg_contain {
  padding-top: 11.5rem;
  padding-bottom: 17.5rem;
}
@media screen and (max-width: 768px) {
  section.features .lg_contain {
    padding: 7.3rem 2.8rem 7rem;
  }
}
@media screen and (max-width: 768px) {
  section.features .lg_contain .sect_ttl2 {
    text-align: left;
  }
}
section.features .lg_contain .sect_ttl2 .j_t {
  letter-spacing: 0;
}
section.features .lg_contain .feature_grid {
  margin-top: 7.4rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  section.features .lg_contain .feature_grid {
    margin-top: 4.8rem;
  }
}
section.features .lg_contain .feature_grid li .content {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  section.features .lg_contain .feature_grid li .content {
    margin-bottom: 2.6rem;
  }
}
section.features .lg_contain .feature_grid li .content .label .tag {
  display: inline-block;
  padding: 0 1rem;
  margin-right: 0.5rem;
  background: #f5c800;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 3rem;
  color: #005ba4;
}
@media screen and (max-width: 768px) {
  section.features .lg_contain .feature_grid li .content .label .tag {
    padding: 0 1.3rem 0 1rem;
    margin-right: 0.5rem;
    line-height: 1.3;
  }
}
section.features .lg_contain .feature_grid li .content .label span {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 3rem;
  color: #005ba4;
}
@media screen and (max-width: 768px) {
  section.features .lg_contain .feature_grid li .content .label span {
    font-size: 1.95rem;
    line-height: 1;
  }
}
section.features .lg_contain .feature_grid li .content .desc {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  section.features .lg_contain .feature_grid li .content .desc {
    font-size: 1.53rem;
    line-height: 1.75;
  }
}
section.features .lg_contain .feature_grid li .thumb {
  width: 100%;
  height: 15rem;
}
@media screen and (max-width: 768px) {
  section.features .lg_contain .feature_grid li .thumb {
    height: 20rem;
    margin-bottom: 0.6rem;
  }
}
section.grouphome {
  background: #005ba3;
}
section.grouphome .lg_contain {
  padding-top: 9.4rem;
  padding-bottom: 14.3rem;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain {
    padding: 5.7rem 2.8rem 8.7rem;
  }
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .sect_ttl2 {
    text-align: left;
  }
}
section.grouphome .lg_contain .sect_ttl2 .j_t {
  letter-spacing: 0;
}
section.grouphome .lg_contain .group_list {
  width: 100%;
  margin-top: 10.8rem;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .group_list {
    flex-wrap: wrap;
    margin-top: 5.2rem;
  }
}
section.grouphome .lg_contain .group_list li {
  width: 44.5%;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .group_list li {
    width: 100%;
    margin-bottom: 5.2rem;
  }
  section.grouphome .lg_contain .group_list li:last-of-type {
    margin-bottom: 0;
  }
}
section.grouphome .lg_contain .group_list li .thumb {
  width: 100%;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .group_list li .thumb img {
    width: 100%;
  }
}
section.grouphome .lg_contain .group_list li .label {
  margin-top: 3.6rem;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -1.3px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .group_list li .label {
    margin-top: 2.1rem;
    font-size: 1.9rem;
  }
}
section.grouphome .lg_contain .group_list li .place {
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .group_list li .place {
    margin-top: 1.2rem;
    font-size: 1.65rem;
    line-height: 1.4;
  }
}
section.grouphome .lg_contain .test {
  width: 100%;
  margin-top: 10.8rem;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .test {
    flex-wrap: wrap;
    margin-top: 5.2rem;
  }
}
section.grouphome .lg_contain .test li {
  width: 31.5%;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .test li {
    width: 100%;
    margin-bottom: 5.2rem;
  }
  section.grouphome .lg_contain .test li:last-of-type {
    margin-bottom: 0;
  }
}
section.grouphome .lg_contain .test li .thumb {
  width: 100%;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .test li .thumb img {
    width: 100%;
  }
}
section.grouphome .lg_contain .test li .label {
  margin-top: 3.6rem;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -1.3px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .test li .label {
    margin-top: 2.1rem;
    font-size: 1.9rem;
  }
}
section.grouphome .lg_contain .test li .place {
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .test li .place {
    margin-top: 1.2rem;
    font-size: 1.65rem;
    line-height: 1.4;
  }
}
section.grouphome .lg_contain .price_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10rem auto 0;
  width: 44rem;
  height: 9rem;
  border-radius: 10rem;
  background: #f4c700;
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  color: #005ba3;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .price_link {
    width: 77%;
    height: 5rem;
    margin-top: 7.9rem;
    font-size: 1.8rem;
  }
}
section.grouphome .lg_contain .price_link::after {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 2.2rem;
  background: url(../images/ico_arr_b.png) center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  right: 5rem;
  top: 50%;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .price_link::after {
    width: 0.7rem;
    height: 1.6rem;
    right: 2.7rem;
  }
}
section.grouphome .lg_contain .desc {
  margin-top: 3.8rem;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  section.grouphome .lg_contain .desc {
    max-width: 78%;
    margin: 1.5rem auto 0;
    font-size: 1.7rem;
  }
}
section.service_block .lg_contain {
  padding-top: 13rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  section.service_block .lg_contain {
    padding: 6rem 2.8rem 4.7rem;
  }
}
@media screen and (max-width: 768px) {
  section.service_block .lg_contain .sect_ttl2 {
    text-align: left;
  }
}
section.service_block .lg_contain .service_list {
  margin: 8rem auto 0;
  width: 100%;
  max-width: 58rem;
}
@media screen and (max-width: 768px) {
  section.service_block .lg_contain .service_list {
    margin-top: 6.7rem;
    max-width: unset;
  }
}
section.service_block .lg_contain .service_list li {
  width: 100%;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  section.service_block .lg_contain .service_list li {
    margin-bottom: 3.9rem;
  }
}
section.service_block .lg_contain .service_list li .thumb {
  width: 15rem;
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  section.service_block .lg_contain .service_list li .thumb {
    width: 12.2rem;
    margin-right: 4rem;
  }
}
section.service_block .lg_contain .service_list li .label {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  section.service_block .lg_contain .service_list li .label {
    font-weight: bold;
    font-size: 1.9rem;
    line-height: 1.45;
    width: calc(100% - 16.2rem);
  }
}
section.flow .lg_contain {
  padding-top: 12rem;
  padding-bottom: 14.2rem;
}
@media screen and (max-width: 768px) {
  section.flow .lg_contain {
    padding: 5.8rem 2.8rem 7.2rem;
  }
}
section.flow .lg_contain .step_list {
  margin: 10.2rem auto 0;
  width: 100%;
  max-width: 65rem;
}
@media screen and (max-width: 768px) {
  section.flow .lg_contain .step_list {
    max-width: unset;
    margin-top: 6rem;
  }
}
section.flow .lg_contain .step_list .content_line {
  background: rgba(244, 199, 0, 0.2);
  border-radius: 1rem;
  padding: 4.5rem 3rem 3.1rem;
}
@media screen and (max-width: 768px) {
  section.flow .lg_contain .step_list .content_line {
    padding: 2.2rem 1.6rem 3.1rem;
  }
}
section.flow .lg_contain .step_list .content_line .step_n {
  display: inline-block;
  background: #005ba3;
  padding: 0 1.7rem;
  border-radius: 4rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 768px) {
  section.flow .lg_contain .step_list .content_line .step_n {
    padding: 0 1rem;
    font-size: 1.65rem;
    line-height: 1.2;
  }
}
section.flow .lg_contain .step_list .content_line .label {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: #005ba3;
}
@media screen and (max-width: 768px) {
  section.flow .lg_contain .step_list .content_line .label {
    margin-top: 0.8rem;
    font-size: 1.95rem;
  }
}
section.flow .lg_contain .step_list .content_line .desc {
  margin-top: 1.5rem;
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 768px) {
  section.flow .lg_contain .step_list .content_line .desc {
    margin-top: 1.3rem;
    line-height: 1.6;
  }
}
section.flow .lg_contain .step_list .content_line:nth-of-type(3) .desc {
  letter-spacing: -0.5px;
}
section.flow .lg_contain .step_list .arrow_line {
  margin: 1.5rem auto;
  width: 100%;
  display: table;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.flow .lg_contain .step_list .arrow_line {
    margin: 0.8rem auto;
    width: 3.4rem;
  }
}
section.flow .lg_contain .step_list .arrow_line img {
  margin: auto;
  width: 6rem;
}
section.facility {
  background: #f4c700;
}
section.facility .lg_contain {
  padding-top: 9.6rem;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  section.facility .lg_contain {
    padding: 5rem 2.8rem 0;
  }
}
section.facility .lg_contain h3 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
  color: #005ba3;
}
@media screen and (max-width: 768px) {
  section.facility .lg_contain h3 {
    font-size: 2.1rem;
    line-height: 1.3;
  }
}
section.facility .lg_contain .visit_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5.4rem auto 0;
  width: 44rem;
  height: 9rem;
  border-radius: 10rem;
  background: #005ba3;
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  color: #f4c700;
}
@media screen and (max-width: 768px) {
  section.facility .lg_contain .visit_link {
    width: 80%;
    height: 5rem;
    margin-top: 3rem;
    font-size: 1.85rem;
  }
}
section.facility .lg_contain .visit_link::after {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 2.2rem;
  background: url(../images/ico_arr_y.png) center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  right: 5rem;
  top: 50%;
}
@media screen and (max-width: 768px) {
  section.facility .lg_contain .visit_link::after {
    width: 0.7rem;
    height: 2rem;
    right: 2.7rem;
  }
}
section.facility .lg_contain .guider {
  display: table;
  margin: 4rem auto 0;
}
@media screen and (max-width: 768px) {
  section.facility .lg_contain .guider {
    margin-top: 2.3rem;
    width: 65%;
  }
}
section.contact_box {
  background: rgba(245, 200, 0, 0.2);
}
section.contact_box .lg_contain {
  padding-top: 7rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain {
    padding: 7.7rem 2.8rem 6.5rem;
  }
}
section.contact_box .lg_contain .step_box {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 63rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .step_box {
    max-width: 31rem;
    padding-bottom: 3rem;
    justify-content: space-between;
  }
}
section.contact_box .lg_contain .step_box li {
  text-align: center;
  opacity: 0.5;
}
section.contact_box .lg_contain .step_box li p {
  line-height: 2.4rem;
}
section.contact_box .lg_contain .step_box li p:first-of-type {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 7rem;
  height: 7rem;
  border-radius: 100%;
  padding: 0.7rem 0 1.3rem;
  background: #fff;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .step_box li p:first-of-type {
    width: 5.6rem;
    height: 5.6rem;
    font-size: 1.1rem;
    line-height: 0.7;
    padding-top: 1rem;
  }
}
section.contact_box .lg_contain .step_box li p:first-of-type span {
  width: 100%;
  display: block;
  font-weight: 700;
  font-size: 3.3rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .step_box li p:first-of-type span {
    font-size: 3.3rem;
    line-height: 0.8;
  }
}
section.contact_box .lg_contain .step_box li p:last-of-type {
  margin-top: 0.9rem;
  font-weight: 500;
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .step_box li p:last-of-type {
    margin-top: 0.7rem;
    font-weight: 500;
    font-size: 1.6rem;
  }
}
section.contact_box .lg_contain .step_box li.active {
  opacity: 1;
}
section.contact_box .lg_contain .step_box::before, section.contact_box .lg_contain .step_box::after {
  position: absolute;
  content: "";
  transform: translate(0, -50%);
  width: calc(50% - 15rem);
  height: 0;
  top: 40%;
  border-bottom: dotted #c1c1c1 5px;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .step_box::before, section.contact_box .lg_contain .step_box::after {
    width: calc(50% - 9rem);
    top: 24%;
  }
}
section.contact_box .lg_contain .step_box::before {
  left: 9rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .step_box::before {
    left: 6rem;
  }
}
section.contact_box .lg_contain .step_box::after {
  right: 9rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .step_box::after {
    right: 6rem;
  }
}
section.contact_box .lg_contain .contact_form {
  width: 100%;
  margin-top: 8.5rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form {
    margin-top: 2.5rem;
  }
}
section.contact_box .lg_contain .contact_form tr {
  width: 100%;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form tr {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  section.contact_box .lg_contain .contact_form tr:nth-of-type(9) {
    margin-bottom: 3rem;
  }
  section.contact_box .lg_contain .contact_form tr:nth-of-type(10) td.input {
    padding-bottom: 0;
  }
  section.contact_box .lg_contain .contact_form tr:nth-of-type(11) td.label {
    padding-bottom: 2.3rem;
  }
  section.contact_box .lg_contain .contact_form tr:nth-of-type(11) td.input label {
    width: auto;
  }
}
section.contact_box .lg_contain .contact_form tr td {
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form tr td {
    padding-bottom: 1.6rem;
  }
  section.contact_box .lg_contain .contact_form tr td:last-of-type {
    padding-bottom: 2.5rem;
  }
}
section.contact_box .lg_contain .contact_form tr td.label {
  width: 24.9rem;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form tr td.label {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
section.contact_box .lg_contain .contact_form tr td.label.require::before {
  position: relative;
  content: "※必須";
  display: inline-block;
  margin-right: 1rem;
  width: 7rem;
  border-radius: 2rem;
  background: #ff0000;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form tr td.label.require::before {
    width: 5.5rem;
    margin-right: 0.6rem;
    font-size: 1.4rem;
  }
}
section.contact_box .lg_contain .contact_form tr td.input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form tr td.input {
    width: 100%;
    flex-wrap: wrap;
  }
}
section.contact_box .lg_contain .contact_form tr td.input input[type=text],
section.contact_box .lg_contain .contact_form tr td.input input[type=email],
section.contact_box .lg_contain .contact_form tr td.input input[type=tel] {
  width: 100%;
  height: 5rem;
  padding: 0 2.5rem;
  background: #fff;
  border: none;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  border-radius: 1rem;
}
section.contact_box .lg_contain .contact_form tr td.input input[type=text]::-moz-placeholder, section.contact_box .lg_contain .contact_form tr td.input input[type=email]::-moz-placeholder, section.contact_box .lg_contain .contact_form tr td.input input[type=tel]::-moz-placeholder {
  font-size: 1.6rem;
}
section.contact_box .lg_contain .contact_form tr td.input input[type=text]:-ms-input-placeholder, section.contact_box .lg_contain .contact_form tr td.input input[type=email]:-ms-input-placeholder, section.contact_box .lg_contain .contact_form tr td.input input[type=tel]:-ms-input-placeholder {
  font-size: 1.6rem;
}
section.contact_box .lg_contain .contact_form tr td.input input[type=text]::placeholder,
section.contact_box .lg_contain .contact_form tr td.input input[type=email]::placeholder,
section.contact_box .lg_contain .contact_form tr td.input input[type=tel]::placeholder {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form tr td.input input[type=text],
section.contact_box .lg_contain .contact_form tr td.input input[type=email],
section.contact_box .lg_contain .contact_form tr td.input input[type=tel] {
    height: 3.9rem;
    padding: 0 1.5rem;
  }
}
section.contact_box .lg_contain .contact_form tr td.input textarea {
  width: 100%;
  height: 22rem;
  border-radius: 1rem;
  background: #fff;
  padding: 1.5rem 2.5rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.3;
}
section.contact_box .lg_contain .contact_form tr td.input textarea:focus {
  outline: none;
}
section.contact_box .lg_contain .contact_form tr td.input textarea::-moz-placeholder {
  font-size: 1.6rem;
}
section.contact_box .lg_contain .contact_form tr td.input textarea:-ms-input-placeholder {
  font-size: 1.6rem;
}
section.contact_box .lg_contain .contact_form tr td.input textarea::placeholder {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form tr td.input textarea {
    height: 26rem;
  }
}
section.contact_box .lg_contain .contact_form tr td.input .policy_box {
  width: 100%;
  height: 33rem;
  overflow: auto;
  overflow-y: scroll;
  background: #fff;
  border-radius: 1rem;
  padding: 2.2rem 3.1rem;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 2.8rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form tr td.input .policy_box {
    height: 32rem;
    padding: 1.2rem 1.7rem;
    padding-right: 0.7rem;
    line-height: 2.55rem;
  }
}
section.contact_box .lg_contain .contact_form tr td.input .policy_box::-webkit-scrollbar {
  width: 1.5rem;
}
section.contact_box .lg_contain .contact_form tr td.input .policy_box::-webkit-scrollbar-thumb {
  border: 0.4rem solid rgba(0, 0, 0, 0);
  /* Transparent border together with `background-clip: padding-box` does the trick */
  background-clip: padding-box;
  border-radius: 5rem;
  background-color: #333333;
}
section.contact_box .lg_contain .contact_form tr td.input .policy_box ::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}
section.contact_box .lg_contain .contact_form tr td.input .policy_box ::-webkit-scrollbar-corner {
  background-color: transparent;
}
section.contact_box .lg_contain .contact_form tr td.input .checkbox-label {
  margin-right: 3rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form tr td.input .checkbox-label {
    margin-right: 3rem;
    margin-bottom: 1.5rem;
  }
}
section.contact_box .lg_contain .contact_form tr td.input .policy_check {
  margin: auto;
}
section.contact_box .lg_contain .contact_form tr td.input .policy_check span:last-of-type {
  font-weight: 500;
  font-size: 1.7rem;
}
section.contact_box .lg_contain .contact_form tr td.input .validation_error {
  display: none;
  width: 100%;
  padding-top: 0.5rem;
  font-weight: 400;
  font-size: 1.4rem;
  color: red;
}
section.contact_box .lg_contain .contact_form tr td.input .validation_error.show {
  display: block;
}
section.contact_box .lg_contain .contact_form tr td.input.button_line {
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form tr td.input.button_line {
    padding-top: 0;
  }
}
section.contact_box .lg_contain .contact_form tr:first-of-type td {
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_form tr:first-of-type td {
    padding-bottom: 2.3rem;
  }
}
section.contact_box .lg_contain .button_line {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .button_line.hbtn {
    justify-content: space-between;
  }
  section.contact_box .lg_contain .button_line.hbtn .btn {
    width: 46%;
  }
}
section.contact_box .lg_contain .button_line .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  max-width: 30rem;
  height: 6rem;
  border-radius: 6rem;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1;
  color: #005ba4;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .button_line .btn {
    width: 77%;
    height: 5rem;
  }
  section.contact_box .lg_contain .button_line .btn.hbtn {
    width: 40%;
  }
}
section.contact_box .lg_contain .button_line .btn::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 1.3rem;
  height: 2.2rem;
  background: url(../images/ico_arr_b.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .button_line .btn::after {
    width: 0.7rem;
    height: 1.2rem;
  }
}
section.contact_box .lg_contain .button_line .next_btn {
  background: #f5c800;
}
section.contact_box .lg_contain .button_line .next_btn::after {
  right: 3rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .button_line .next_btn::after {
    right: 2.7rem;
  }
}
section.contact_box .lg_contain .button_line .back_btn {
  background: #e7e7e7;
}
section.contact_box .lg_contain .button_line .back_btn::after {
  left: 3rem;
  transform: translateY(-50%) scale(-1);
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .button_line .back_btn::after {
    left: 2.7rem;
  }
}
section.contact_box .lg_contain .contact_confirm {
  margin-top: 7rem;
  width: 100%;
  background: #fff;
  border-radius: 1rem;
  padding: 4.3rem 5rem 5rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_confirm {
    margin-top: 2.6rem;
    padding: 1.9rem 2.6rem 3.5rem;
  }
}
section.contact_box .lg_contain .contact_confirm li {
  width: 100%;
  border-bottom: solid #c1c1c1 2px;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_confirm li {
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-bottom: dotted #c1c1c1 0.2rem;
  }
  section.contact_box .lg_contain .contact_confirm li:last-of-type {
    border: none;
  }
}
section.contact_box .lg_contain .contact_confirm li p {
  padding: 1.95rem 1rem;
  font-weight: 700;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_confirm li p {
    padding: 0.1rem 0.2rem;
    font-weight: 700;
    font-size: 1.55rem;
  }
}
section.contact_box .lg_contain .contact_confirm li p.label {
  width: 24rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_confirm li p.label {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_confirm li p.inpput {
    width: 100%;
  }
}
section.contact_box .lg_contain .contact_thanks {
  margin-top: 7rem;
  width: 100%;
  border-radius: 1rem;
  background: #fff;
  padding: 6.5rem 2rem 6.7rem;
  text-align: center;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 4.2rem;
}
@media screen and (max-width: 768px) {
  section.contact_box .lg_contain .contact_thanks {
    background: transparent;
    margin-top: 0;
    padding: 1.9rem 2rem 1rem;
    font-weight: 700;
    font-size: 1.55rem;
    line-height: 2.77rem;
  }
}

@font-face {
  font-family: GothicMB101Pr6DB;
  src: url("../font/A-OTF-GothicMB101Pr6-DeBold.woff") format("woff");
}
@font-face {
  font-family: GothicMB101Pr6M;
  src: url("../font/A-OTF-GothicMB101Pr6-Medium.woff") format("woff");
}
@font-face {
  font-family: GothicMB101Pr6R;
  src: url("../font/A-OTF-GothicMB101Pr6-Reg.woff") format("woff");
}
@font-face {
  font-family: HelveticaB;
  src: url("../font/Helvetica-Bold.woff") format("woff");
}/*# sourceMappingURL=style.css.map */