@charset "UTF-8";
/* ----- reset css ----- */
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-size: 100%;
  vertical-align: baseline;
  background: transwpent;
}

body {
  line-height: 1;
  display: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transwpent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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;
}

/* ----- 共通 css ----- */
*,
*::after,
*::before {
  line-height: 1.6;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1270px) {
  html {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  color: #000;
  box-sizing: border-box;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: #000;
  line-height: 1;
  transition: 0.2s;
}

ul, ol {
  list-style: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
  line-height: 0;
}

.tx-center {
  text-align: center;
}

.tx-left {
  text-align: left;
}

.tx-right {
  text-align: right;
}

.fadein {
  opacity: 0;
  transition-duration: 1.5s;
  transition-timing-function: ease-out;
}

@media screen and (max-width: 767px) {
  .sp-tx-center {
    text-align: center;
  }
  .sp-tx-left {
    text-align: left;
  }
  .sp-tx-right {
    text-align: right;
  }
}
.pc {
  display: block;
}

.sp {
  display: none !important;
}

.pc-none {
  display: none;
}

@media screen and (max-width: 1270px) {
  .tb-none {
    display: none;
  }
  .tb {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp-none {
    display: none;
  }
}
/* ----- animation ----- */
@keyframes circle-move {
  0% {
    top: 5rem;
  }
  100% {
    top: 15.6rem;
  }
}
@media screen and (max-width: 1000px) {
  @keyframes circle-move {
    0% {
      top: 6rem;
    }
    100% {
      top: 16.6rem;
    }
  }
}
@media screen and (max-width: 767px) {
  @keyframes circle-move {
    0% {
      top: 4.3rem;
    }
    100% {
      top: 9.4rem;
    }
  }
}
@keyframes circle-move2 {
  0% {
    top: 16.5rem;
  }
  100% {
    top: 5.8rem;
  }
}
@media screen and (max-width: 1000px) {
  @keyframes circle-move2 {
    0% {
      top: 18.5rem;
    }
    100% {
      top: 7.8rem;
    }
  }

}
@media screen and (max-width: 767px) {
  @keyframes circle-move2 {
    0% {
      top: 13.5rem;
    }
    100% {
      top: 5.8rem;
    }
  }
}
@keyframes cirle-move-hide {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* drawer */
.header__btn-trigger {
  cursor: pointer;
}
.header__toggle-btn {
  position: relative;
  width: 25px;
  height: 20px;
  z-index: 1000;
}
.header__toggle-line {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  border-radius: 5px;
  transition: 0.3s;
}
.header__toggle-line:nth-child(1) {
  top: 0;
}
.header__toggle-line:nth-child(2) {
  top: 9px;
}
.header__toggle-line:nth-child(3) {
  bottom: 0;
}
.header__nav-sp {
  background: rgba(244, 240, 232, 0.9);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 1.8rem;
  width: 80%;
  padding: 1rem 4% 0;
  transform: translateX(100%);
  transition: 0.3s;
  z-index: 999;
}
.header__nav-sp ul {
  margin-top: 5rem;
}
.header__nav-sp ul li {
  text-align: center;
  margin: 2rem auto 0;
}
.header__nav-sp ul li a {
  display: inline-block;
  font-weight: 300;
}
.header__nav-list-sp {
  padding: 5px 0;
}
.header__nav-link-sp {
  color: #fff;
}

.open .header__toggle-btn {
  position: fixed;
  top: 1.4rem;
  right: 4%;
}
.open .header__toggle-line {
  background-color: #000;
}
.open .header__toggle-line:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.open .header__toggle-line:nth-child(2) {
  opacity: 0;
}
.open .header__toggle-line:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}
.open .header__nav-sp {
  transform: translateX(0);
}
.open .header__nav-bg {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 998;
}

/* ----- btn ----- */
.btn {
  text-align: right;
}
.btn a {
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
  color: #9F967B;
  text-align: left;
  width: 14rem;
  transition: 0.3s;
}
.btn a::after {
  content: "";
  position: absolute;
  left: 7.8rem;
  bottom: -0.8rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1.5rem 0.8rem 0;
  border-color: transparent transparent #9F967B transparent;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
.btn a::before {
  content: "";
  background: #9F967B;
  position: absolute;
  left: 0;
  bottom: -0.8rem;
  width: 7.8rem;
  height: 1px;
  transition: 0.3s;
  pointer-events: none;
}
.btn a:hover::before {
  width: 12rem;
}
.btn a:hover::after {
  left: 12rem;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .btn {
    text-align: right;
  }
  .btn a {
    font-size: 1.4rem;
    width: 10rem;
  }
  .btn a::after {
    left: 7.2rem;
    bottom: -0.6rem;
  }
  .btn a::before {
    bottom: -0.6rem;
    width: 7.2rem;
  }
}
/* ----- header ----- */
/* top */
.header {
  background: rgba(244, 240, 232, 0.8);
  position: fixed;
  width: 100%;
  padding: 5.1rem 4% 0;
  border-bottom: 1px solid #9F967B;
  z-index: 100;
}
.header__inner {
  max-width: 180rem;
  margin: 0 auto;
}
.header__container {
  display: flex;
  flex-direction: column;
}
.header__logo {
  text-align: center;
  max-width: 17rem;
  margin: 0 auto;
}
.header__nav {
  margin-top: 3.44rem;
}
.header__nav ul {
  display: flex;
  justify-content: flex-end;
}
.header__nav ul li {
  margin-left: 2.5rem;
}
.header__nav ul li a {
  position: relative;
  display: inline-block;
  font-weight: 300;
  padding-bottom: 0.5rem;
}
.header__nav ul li a::after {
  content: "";
  background: #9F967B;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.header__nav ul li a:hover::after {
  transform: scale(1, 1);
}
.home .header__nav ul li a.t-current,
.page-template-page-about .header__nav ul li a.a-current,
.page-template-page-japan-blue .header__nav ul li a.j-current,
.post-type-archive-news .header__nav ul li a.n-current,
.single-news .header__nav ul li a.n-current,
.page-template-page-contact .header__nav ul li a.c-current {
  border-bottom: 0.4rem solid #9F967B;
}
.header__nav ul li a.current {
  border: none;
}
.header__nav-sp-logo img {
  max-width: 6rem;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 1rem 4%;
  }
  .header__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .header__logo {
    width: 6rem;
    margin: 0 auto 0 0;
  }
}
/* mv */
.mv__inner {
  position: relative;
}
.mv__slider-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 92rem;
}
.mv__slider-img--1 {
  background-image: url(../img/top_slide1.jpg);
}
.mv__slider-img--2 {
  background-image: url(../img/top_slide2.jpg);
}
.mv__slider-img--3 {
  background-image: url(../img/top_slide3.jpg);
}
.mv__slider-img--4 {
  background-image: url(../img/top_slide4.jpg);
}
.mv__slider-img--5 {
  background-image: url(../img/top_slide5.jpg);
}
.mv__h1, .mv__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.5rem;
  color: #fff;
  font-weight: 300;
}

.mv__h1 {
  text-align: center;
  width: 100%;
}
.mv__logo {
  width: 17rem;
  opacity: 0;
}
.mv .slick-dots {
  right: 9rem;
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mv .slick-dots li button:before {
  opacity: 0.3;
  color: #fff;
}
.mv .slick-dots li.slick-active button:before {
  opacity: 0.8;
  color: #fff;
}
.mv .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.mv__scroll {
  position: absolute;
  right: 96%;
  bottom: -11rem;
  width: 16px;
}
.mv__scroll span {
  display: inline-block;
  font-size: 9px;
  writing-mode: vertical-rl;
}
.mv__scroll span:before {
  content: "";
  display: inline-block;
  background: #251E1C;
  position: absolute;
  top: 5rem;
  right: 50%;
  transform: translateX(50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  animation: circle-move 1.6s ease-in-out infinite, cirle-move-hide 1.6s ease-out infinite;
}
.mv__scroll span:after {
  content: "";
  background: #251E1C;
  display: inline-block;
  position: absolute;
  top: 5rem;
  right: 50%;
  transform: translateX(50%);
  width: 1px;
  height: 10.775rem;
}
@-moz-document url-prefix() {
  .mv__scroll {
    position: absolute;
    right: 96%;
    bottom: -11rem;
    width: 12px;
  }
}

@media screen and (max-width: 1000px) {
  .mv__scroll span:before {
    top: 6rem;
  }
  .mv__scroll span:after {
    top: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .mv__slider-img {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 30rem;
  }
  .mv__slider-img--1 {
    background-image: url(../img/top_slide1.jpg);
  }
  .mv__slider-img--2 {
    background-image: url(../img/top_slide2.jpg);
  }
  .mv__slider-img--3 {
    background-image: url(../img/top_slide3.jpg);
  }
  .mv__slider-img--4 {
    background-image: url(../img/top_slide4.jpg);
  }
  .mv__slider-img--5 {
    background-image: url(../img/top_slide5.jpg);
  }
  .mv__h1, .mv__logo {
    font-size: 2.6rem;
    width: 100%;
    text-align: center;
  }
  .mv__logo img {
    max-width: 10rem;
  }
  .mv .slick-dots {
    right: 1%;
  }
  .mv__scroll {
    display: none;
  }
  .mv__scroll span:before {
    content: "";
    width: 3px;
    height: 3px;
  }
  .mv__scroll span:after {
    content: "";
    top: 45px;
    width: 1px;
    height: 50px;
  }
}
/* sub */
.sub-mv {
  position: relative;
  background: #F4F0E8;
}
.sub-mv__inner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 120rem;
  height: 50rem;
  margin: 0 auto;
}
.sub-mv__h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.7rem;
  color: #fff;
  font-weight: 300;
}
.sub-mv .breadcrumb {
  display: flex;
  font-weight: 300;
  max-width: 120rem;
  margin: 3rem auto 0;
}
.sub-mv .breadcrumb li {
  position: relative;
  margin-left: 6rem;
}
.sub-mv .breadcrumb li::before {
  content: "";
  background: #707070;
  position: absolute;
  top: 50%;
  left: -4rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 1px;
}
.sub-mv .breadcrumb li:first-child {
  margin-left: 0;
}
.sub-mv .breadcrumb li:first-child::before {
  content: none;
}
.sub-mv .breadcrumb li a {
  display: inline-block;
}
.sub-mv .breadcrumb li a:hover {
  opacity: 0.7;
}
.sub-mv__scroll {
  bottom: -50rem;
}

@media screen and (max-width: 1270px) {
  .sub-mv .breadcrumb {
    padding: 0 4%;
  }
  .sub-mv__scroll {
    left: 1%;
    bottom: -10rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__inner {
    height: 25rem;
  }
  .sub-mv__h1 {
    font-size: 2.6rem;
  }
  .sub-mv .breadcrumb {
    padding: 0 4%;
    margin: 2rem auto 0;
  }
  .sub-mv .breadcrumb li {
    font-size: 1.2rem;
    margin-left: 3rem;
  }
  .sub-mv .breadcrumb li::before {
    content: "";
    left: -2rem;
    width: 1rem;
  }
  .sub-mv .breadcrumb li:first-child {
    margin-left: 0;
  }
  .sub-mv__scroll {
    display: none;
  }
}
/* ----- footer ----- */
.footer {
  position: relative;
  padding: 10rem 4% 5rem;
}
.footer__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.footer__inner > p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 2;
  margin-top: 5rem;
}
.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo img {
  max-width: 17rem;
}
.footer__nav {
  position: relative;
}
.footer__nav ul {
  display: flex;
}
.footer__nav ul li {
  padding: 0 1.45rem;
  border-left: 1px solid #B8B8B8;
}
.footer__nav ul li:first-child {
  border-left: none;
}
.footer__nav ul li a {
  font-weight: 300;
}
.footer__nav ul li a:hover {
  opacity: 0.7;
}
.footer__sns {
  position: absolute;
  bottom: -8rem;
  right: 0;
  display: flex;
  align-items: center;
}
.footer__sns a {
  color: #707070;
  text-align: center;
  margin: 0 1rem 0 1.5rem;
}
.footer__sns a.insta:hover {
  color: #CF2E92;
}
.footer__sns a.facebook:hover {
  color: #1877f2;
}
.footer__sns a .fa-brands {
  font-size: 3rem;
}
.footer__sns a .fa-instagram {
  font-size: 3.5rem;
  line-height: 1;
}
.footer__copy {
  text-align: center;
  margin-top: 14rem;
}
.footer__copy span {
  font-size: 1.4rem;
  font-weight: 300;
}
.footer__page-top {
  position: fixed;
  left: 96%;
  bottom: 15rem;
  width: 16px;
  cursor: pointer;
}
.footer__page-top span {
  font-size: 9px;
  writing-mode: vertical-rl;
}
.footer__page-top span:before {
  content: "";
  background: #251E1C;
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  animation: circle-move2 1.6s ease-in-out infinite, cirle-move-hide 1.6s ease-out infinite;
}
.footer__page-top span:after {
  content: "";
  background: #251E1C;
  position: absolute;
  top: 5.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 10.775rem;
}

@-moz-document url-prefix() {
  .footer__page-top {
    position: fixed;
    left: 96%;
    bottom: 15rem;
    width: 12px;
    cursor: pointer;
  }
}
@media screen and (max-width: 1000px) {
  .footer__page-top span:before {
    top: 8rem;
  }
  .footer__page-top span:after {
    top: 7.7rem;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 3.5rem 0 2rem;
  }
  .footer__inner > p {
    font-size: 1.5rem;
    padding: 0 4%;
    margin-top: 5rem;
  }
  .footer__container {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .footer__logo img {
    max-width: 8rem;
  }
  .footer__nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }
  .footer__nav ul li {
    padding: 0 1rem;
  }
  .footer__nav ul li a {
    font-size: 1.3rem;
  }
  .footer__sns {
    bottom: -5rem;
    right: 4%;
  }
  .footer__sns a {
    margin: 0 0.5rem 0 1rem;
  }
  .footer__sns a .fa-brands {
    font-size: 2rem;
  }
  .footer__sns a .fa-instagram {
    font-size: 2.3rem;
  }
  .footer__copy {
    margin-top: 5rem;
  }
  .footer__copy span {
    font-size: 1.2rem;
  }
  .footer__page-top {
    left: auto;
    right: 2%;
    bottom: 10.5rem;
  }
  .footer__page-top span:after {
    top: 6rem;
    height: 8rem;
  }
}
/* ----- top ----- */
/* intro */
.intro {
  background: #F4F0E8;
  padding: 19rem 4% 0;
}
.intro__inner {
  max-width: 120rem;
  border-bottom: 0.4rem solid #707070;
  padding-bottom: 11rem;
  margin: 0 auto;
}
.intro__h2 {
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
}
.intro p {
  font-size: 2.2rem;
  line-height: 1.9545454545;
  text-align: center;
  margin-top: 7.7rem;
}
.intro .btn {
  margin-top: 9.58rem;
}
.intro__img {
  background: #F4F0E8;
  text-align: center;
}
.intro__img img {
  max-width: 7rem;
}

@media screen and (max-width: 767px) {
  .intro {
    padding: 5rem 4% 0;
  }
  .intro__inner {
    padding-bottom: 4rem;
    border-bottom: 2px solid #707070;
  }
  .intro__h2 {
    font-size: 2.4rem;
  }
  .intro p {
    font-size: 1.8rem;
    text-align: left;
    margin-top: 2.5rem;
  }
  .intro .btn {
    margin-top: 3rem;
  }
  .intro__img {
    margin-top: 0rem;
  }
  .intro__img img {
    max-width: 4rem;
  }
}
/* info */
.info {
  background: #F4F0E8;
  overflow: hidden;
}
.info__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.info__container {
  display: flex;
  padding-top: 23rem;
}
.info__container:nth-of-type(1) {
  padding-top: 21rem;
}
.info__img {
  width: 53%;
}
.sub .info__img {
  width: 43%;
}
.info__img-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 102rem;
  display: block;
}
.info__img-box--1 {
  background-image: url(../img/top_img1.jpg);
  margin-left: calc((53vw - 100%) * -1);
}
.info__img-box--2 {
  background-image: url(../img/top_img2.jpg);
  margin-right: calc((53vw - 100%) * -1);
}
.info__img-box--3 {
  background-image: url(../img/top_img3.jpg);
  margin-left: calc((53vw - 100%) * -1);
}
.info__item {
  position: relative;
  width: 47%;
  padding: 14rem 0 0 10rem;
}
.sub .info__item {
  width: 57%;
}
.info__item p {
  font-size: 2.2rem;
  line-height: 1.9545454545;
  margin-top: 11rem;
}
.info__item p:nth-of-type(2) {
  margin-top: 6rem;
}
.info__item .btn {
  margin-top: 12.4rem;
}
.info__item--2 {
  padding: 14rem 8rem 0 0;
}
.info__h3 {
  position: relative;
  font-size: 3.5rem;
  font-weight: 300;
}
.info__h3::after {
  content: "";
  background: #9F967B;
  position: absolute;
  left: -26rem;
  bottom: -3rem;
  width: 72rem;
  height: 1px;
  z-index: 1;
}
.info__h3--2::after {
  left: 0;
}
.info__h3--2 img {
  position: absolute;
  right: 0;
  width: 19.8rem;
}

@media screen and (max-width: 1270px) {
  .info__item {
    padding: 14rem 4% 0 10rem;
  }
  .info__item--2 {
    padding: 14rem 10rem 0 4%;
  }
}
@media screen and (max-width: 767px) {
  .info__container {
    flex-direction: column;
    padding-top: 5.5rem;
  }
  .info__container:nth-of-type(1) {
    padding-top: 5.5rem;
  }
  .info__img {
    width: 100%;
    padding: 0 8%;
  }
  .sub .info__img {
    width: 100%;
    padding: 0 8%;
  }
  .info__img--2 {
    order: 1;
    width: 100%;
    padding: 0 8%;
  }
  .info__item {
    width: 100%;
    padding: 0 4% 3px;
  }
  .sub .info__item {
    width: 100%;
    padding: 0 4% 3px;
  }
  .info__item p {
    font-size: 1.8rem;
    margin-top: 3rem;
  }
  .info__item p:nth-of-type(2) {
    margin-top: 2rem;
  }
  .info__item .btn {
    margin-top: 3rem;
  }
  .info__item--2 {
    order: 2;
    padding: 0 4%;
  }
  .info__item--2 img {
    position: absolute;
    right: 0;
    width: 10rem;
  }
  .info__h3 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
  }
  .info__h3::after {
    content: "";
    left: 0;
    bottom: -1rem;
    width: 100%;
    height: 1px;
  }
}
/* top-news */
.top-news {
  background: #F4F0E8;
  padding: 23rem 4% 17rem;
}
.top-news__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.top-news__container {
  display: flex;
  align-items: flex-start;
}
.top-news__h2 {
  position: relative;
  font-size: 3.5rem;
  font-weight: 300;
  width: 12.5%;
}
.top-news__h2::after {
  content: "";
  background: #9F967B;
  position: absolute;
  left: 0;
  bottom: -3rem;
  width: 24rem;
  height: 1px;
  z-index: 1;
}
.top-news__item {
  position: relative;
  width: 87.5%;
  padding-bottom: 12rem;
}
.top-news__item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12rem;
  height: 12rem;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.top-news__box {
  background: #fff;
  width: 90rem;
  max-width: 100%;
  padding: 6.5rem 10rem 6rem 15rem;
}
.top-news__box ul li {
  display: flex;
  margin-top: 3rem;
}
.top-news__box ul li:nth-of-type(1) {
  margin-top: 0;
}
.top-news__box ul li span {
  font-size: 2rem;
  color: #9F967B;
  line-height: 2.15;
  width: 24%;
}
.top-news__box ul li a {
  font-size: 2rem;
  line-height: 2;
  width: 76%;
}
.top-news__box ul li a:hover {
  opacity: 0.7;
}
.top-news__box ul li a h3 {
  font-weight: 300;
  line-height: 2;
}

@media screen and (max-width: 1270px) {
  .top-news__item {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 5rem 0;
  }
  .top-news__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-news__inner {
    padding: 0 4%;
  }
  .top-news__h2 {
    font-size: 2.4rem;
    width: 100%;
  }
  .top-news__h2::after {
    bottom: -1rem;
    width: 100%;
    height: 2px;
  }
  .top-news__item {
    position: relative;
    width: 100%;
    padding-bottom: 0;
  }
  .top-news__item::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4rem;
    height: 4rem;
    border-right: 1px solid #707070;
    border-bottom: 1px solid #707070;
  }
  .top-news__box {
    width: 100%;
    max-width: 100%;
    padding: 3rem;
    margin-top: 4rem;
  }
  .top-news__box ul li {
    flex-direction: column;
    margin-top: 2rem;
  }
  .top-news__box ul li:nth-of-type(1) {
    margin-top: 0;
  }
  .top-news__box ul li span {
    font-size: 1.6rem;
    width: 100%;
  }
  .top-news__box ul li a {
    font-size: 1.8rem;
    width: 100%;
  }
}
/* top-insta */
.top-insta {
  background: #E4DFD4;
  padding: 17rem 4% 13.5rem;
}
.top-insta__inner {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
}
.top-insta__inner .btn {
  margin-top: 7rem;
}
.top-insta__icon {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.top-insta__icon:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .top-insta {
    padding: 5rem 0 5.5rem;
  }
  .top-insta__inner .btn {
    padding: 0 4%;
    margin-top: 4rem;
  }
  .top-insta__img {
    padding: 0 12%;
  }
  .top-insta__icon {
    bottom: 0;
    max-width: 3rem;
  }
}
/* top-videos */
.top-video {
  background: #F4F0E8;
  padding: 17rem 4% 16.7rem;
}
.top-video__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.top-video__inner .btn {
  margin-top: 15rem;
}
.top-video__youtube {
  max-width: 100rem;
  margin: 0 auto;
}
.top-video__youtube iframe {
  width: 100%;
  height: 56.25rem;
}
.top-video__youtube p {
  font-size: 2rem;
  font-weight: 300;
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .top-video {
    padding: 5rem 4% 5.5rem;
  }
  .top-video__inner .btn {
    margin-top: 3rem;
  }
  .top-video__youtube {
    max-width: 100rem;
    margin: 0 auto;
  }
  .top-video__youtube iframe {
    width: 100%;
    height: 25rem;
  }
  .top-video__youtube p {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
}
/* ----- about ----- */
/* sub-intro */
.sub-intro {
  padding: 12rem 4% 0;
}

.sub-intro__img {
  margin-top: 13rem;
}
.sub-intro__img img {
  max-width: 7rem;
}

@media screen and (max-width: 767px) {
  .sub-intro {
    padding: 4rem 4% 0;
  }
  .sub-intro__img {
    margin-top: 4rem;
  }
  .sub-intro img {
    max-width: 4rem;
  }
}
/* sub-intro */
.sub .info__h3::after {
  content: "";
  background: #9F967B;
  position: absolute;
  left: -26rem;
  bottom: -3rem;
  width: 84rem;
  height: 1px;
  z-index: 1;
}
.sub .info__h3--2::after {
  left: 0;
}
.sub-info {
  padding: 14rem 4% 0;
}
.sub-info__sub-h2 {
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
}
.sub-info__txt {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.9545454545;
  margin-top: 7.7rem;
}
.sub-info__img-box--1 {
  background-image: url(../img/sub/about_img1.jpg);
}
.sub-info__img-box--2 {
  background-image: url(../img/sub/about_img2.jpg);
}
.sub-info__img-box--3 {
  background-image: url(../img/sub/about_img3.jpg);
}
.sub-info__img-box--4 {
  background-image: url(../img/sub/about_img4.jpg);
  margin-right: calc((50vw - 100%) * -1);
}
.sub-info__img-box--5 {
  background-image: url(../img/sub/about_img5.jpg);
  margin-left: calc((50vw - 100%) * -1);
}
.sub-info__img {
  text-align: center;
  padding-bottom: 11rem;
  border-bottom: 0.4rem solid #707070;
  margin-top: 20rem;
}
.sub-info__img img {
  max-width: 7rem;
}

@media screen and (max-width: 767px) {
  .sub-info {
    padding: 3rem 0 0;
  }
  .sub-info__sub-h2 {
    font-size: 2.4rem;
    padding: 0 4%;
  }
  .sub-info__txt {
    font-size: 1.8rem;
    text-align: left;
    padding: 0 4%;
    margin-top: 2.5rem;
  }
  .sub-info__img {
    padding-bottom: 5rem;
    border-bottom: 2px solid #707070;
    margin: 4rem 4% 0;
  }
  .sub-info__img img {
    max-width: 4rem;
  }
  .sub .info__h3::after {
    content: "";
    left: 0;
    bottom: -1rem;
    width: 100%;
    height: 1px;
  }
}
/* about-mv */
.about-mv__inner {
  background-image: url(../img/sub/about_mv.jpg);
}

/* about-cont */
.about-cont {
  background: #F4F0E8;
  padding: 14rem 0 0;
}
.about-cont--2 {
  padding: 20rem 0 0;
}
.about-cont__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.about-cont__h2 {
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
}
.about-cont__txt {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.9545454545;
  margin-top: 7rem;
}
.about-cont__img {
  max-width: 192rem;
  margin: 14rem auto 0;
}

@media screen and (max-width: 767px) {
  .about-cont {
    background: #F4F0E8;
    padding: 4rem 0 0;
  }
  .about-cont--2 {
    padding: 6rem 0 0;
  }
  .about-cont__inner {
    max-width: 120rem;
    margin: 0 auto;
  }
  .about-cont__h2 {
    font-size: 2.4rem;
    padding: 0 4%;
  }
  .about-cont__txt {
    font-size: 1.8rem;
    text-align: left;
    padding: 0 4%;
    margin-top: 2rem;
  }
  .about-cont__img {
    margin: 4.5rem auto 0;
  }
}
.about-cont-3__img {
  max-width: 75.6rem;
  margin: 8.75rem auto 0;
}
.about-cont-3__img-2 {
  max-width: 120rem;
  margin: 9rem auto 0;
}
.about-cont-3__img-3 {
  text-align: center;
  max-width: 120rem;
  padding-bottom: 11rem;
  margin: 20rem auto 0;
  border-bottom: 0.4rem solid #707070;
}
.about-cont-3__img-3 img {
  max-width: 7rem;
}

@media screen and (max-width: 1270px) {
  .about-cont-3__img-3 {
    margin: 20rem 4% 0;
  }
}
@media screen and (max-width: 767px) {
  .about-cont-3 {
    padding: 6rem 4% 0;
  }
  .about-cont-3__img {
    margin: 3rem auto 0;
  }
  .about-cont-3__img-2 {
    margin: 3rem auto 0;
  }
  .about-cont-3__img-3 {
    padding-bottom: 5rem;
    margin: 4rem auto 0;
    border-bottom: 2px solid #707070;
  }
  .about-cont-3__img-3 img {
    max-width: 4rem;
  }
}
.about-cont-4 {
  background: #F4F0E8;
  padding: 14rem 4% 26rem;
}
.about-cont-4__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.about-cont-4__inner dl {
  margin-top: 9rem;
}
.about-cont-4__inner dl div {
  display: flex;
  font-size: 2.2rem;
  margin-top: 3rem;
}
.about-cont-4__inner dl div dt {
  width: 33.3333333333%;
  border-right: 1px solid #707070;
}
.about-cont-4__inner dl div dd {
  width: 66.6666666667%;
  padding-left: 9rem;
}

@media screen and (max-width: 767px) {
  .about-cont-4 {
    padding: 4rem 4% 5rem;
  }
  .about-cont-4__inner {
    max-width: 120rem;
    margin: 0 auto;
  }
  .about-cont-4__inner dl {
    margin-top: 3rem;
  }
  .about-cont-4__inner dl div {
    flex-direction: column;
    font-size: 1.8rem;
    margin-top: 2rem;
  }
  .about-cont-4__inner dl div dt {
    width: 100%;
    border-right: none;
  }
  .about-cont-4__inner dl div dd {
    font-size: 1.6rem;
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
/* ----- japan blue ----- */
/* japan-blue */
.japan-blue-mv__inner {
  background-image: url(../img/sub/japan_blue_mv.jpg);
}

/* intro */
.intro__h2 img {
  max-width: 39.7rem;
}

@media screen and (max-width: 767px) {
  .intro__h2 img {
    display: inline-block;
    max-width: 20rem;
    padding-bottom: 0.5rem;
  }
}
/* japan-blue-cont */
.japan-blue-cont {
  background: #F4F0E8;
  padding: 14rem 0 35rem;
}
.japan-blue-cont__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.japan-blue-cont__h2 {
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
}
.japan-blue-cont__txt {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.9545454545;
  margin-top: 7rem;
}
.japan-blue-cont__img {
  text-align: center;
  margin-top: 14rem;
}
.japan-blue-cont__img img {
  max-width: 80rem;
}
.japan-blue-cont__img-wrap {
  max-width: 192rem;
  margin: 0 auto;
}
.japan-blue-cont__img-2 {
  margin-top: 15rem;
  padding-right: 10%;
}
.japan-blue-cont__img-3 {
  text-align: right;
  margin-top: 15rem;
  padding-left: 10%;
}

@media screen and (max-width: 1270px) {
  .japan-blue-cont__img img {
    max-width: 50rem;
  }
  .japan-blue-cont__txt {
    padding: 0 4%;
  }
}
@media screen and (max-width: 767px) {
  .japan-blue-cont {
    background: #F4F0E8;
    padding: 3rem 0 5rem;
  }
  .japan-blue-cont__h2 {
    font-size: 2.4rem;
  }
  .japan-blue-cont__txt {
    font-size: 1.8rem;
    text-align: left;
    margin-top: 2rem;
  }
  .japan-blue-cont__img {
    padding: 0 4%;
    margin-top: 5rem;
  }
  .japan-blue-cont__img img {
    max-width: 80%;
  }
  .japan-blue-cont__img-2 {
    padding-right: 4%;
    margin-top: 5rem;
  }
  .japan-blue-cont__img-3 {
    padding-left: 4%;
    margin-top: 5rem;
  }
}
/* ----- news ----- */
/* news */
.news-mv__inner {
  background-image: url(../img/sub/news_mv.jpg);
}

.news-intro {
  padding: 7rem 4% 0;
}
.news-intro__img {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .news-intro {
    padding: 3rem 4% 0;
  }
}
.news {
  background: #F4F0E8;
  padding: 0 4% 18rem;
}
.news__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.news__container {
  display: flex;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.news__item {
  position: relative;
  display: block;
  width: 32.2916666667%;
  padding-bottom: 5rem;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-top: 5rem;
}
.news__item:hover {
  opacity: 0.7;
}
.news__item:nth-of-type(1)::after {
  content: "";
  background: #F4F0E8;
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 3.75rem;
  height: 5rem;
}
.news__item:nth-of-type(2)::after {
  content: "";
  background: #F4F0E8;
  position: absolute;
  left: -1px;
  bottom: -2px;
  width: 3.75rem;
  height: 5rem;
}
.news__item:nth-of-type(2)::before {
  content: "";
  background: #F4F0E8;
  position: absolute;
  right: -1px;
  bottom: -2px;
  width: 3.75rem;
  height: 5rem;
}
.news__item:nth-of-type(3)::after {
  content: "";
  background: #F4F0E8;
  position: absolute;
  left: -1px;
  bottom: -2px;
  width: 3.75rem;
  height: 5rem;
}
.news__item:nth-of-type(1), .news__item:nth-of-type(4) {
  padding-right: 3.75rem;
}
.news__item:nth-of-type(2), .news__item:nth-of-type(5) {
  width: 35.4166666667%;
  padding: 0 3.75rem;
}
.news__item:nth-of-type(3), .news__item:nth-of-type(6) {
  padding-left: 3.75rem;
  border-right: none;
}
.news__item:nth-of-type(4), .news__item:nth-of-type(5), .news__item:nth-of-type(6) {
  border-bottom: none;
}
.news__h2 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.4285714286;
  margin-top: 5rem;
}
.news__img {
  text-align: center;
}
.news__date {
  display: block;
  color: #9F967B;
  margin-top: 2rem;
}
.news__disc {
  font-size: 1.8rem;
  line-height: 1.7222222222;
  margin-top: 3rem;
}
.news__link-txt {
  display: block;
  font-size: 1.4rem;
  margin-top: 5rem;
}
.news__btn {
  margin-top: 13rem;
}

@media screen and (max-width: 767px) {
  .news {
    padding: 0 4% 5rem;
  }
  .news__container {
    padding-top: 0;
  }
  .news__item {
    width: 100%;
    padding-bottom: 5rem;
    border-right: none;
    border-bottom: none;
    margin-top: 5rem;
  }
  .news__item:nth-of-type(1)::after {
    content: none;
  }
  .news__item:nth-of-type(2)::after {
    content: none;
  }
  .news__item:nth-of-type(2)::before {
    content: none;
  }
  .news__item:nth-of-type(3)::after {
    content: none;
  }
  .news__item:nth-of-type(1), .news__item:nth-of-type(4) {
    padding: 0;
  }
  .news__item:nth-of-type(2), .news__item:nth-of-type(5) {
    width: 100%;
    padding: 0;
  }
  .news__item:nth-of-type(3), .news__item:nth-of-type(6) {
    padding: 0;
    border-right: none;
  }
  .news__item:nth-of-type(4), .news__item:nth-of-type(5), .news__item:nth-of-type(6) {
    border-bottom: none;
  }
  .news__h2 {
    font-size: 2.4rem;
    margin-top: 3rem;
  }
  .news__date {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
  .news__disc {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .news__link-txt {
    font-size: 1.4rem;
    margin-top: 2.5rem;
  }
  .news__btn {
    margin-top: 6rem;
  }
}
/* ----- news-detail ----- */
.news-detail-mv__inner {
  background-image: url(../img/sub/news_detail_mv.jpg);
}

.news-detail {
  background: #F4F0E8;
  padding: 0 4% 18rem;
}
.news-detail__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.news-detail__container {
  display: flex;
  padding-top: 12rem;
}
.news-detail__main {
  width: 79.1666666667%;
  padding-right: 15rem;
}
.news-detail__h2 {
  font-size: 4rem;
  font-weight: 400;
}
.news-detail__box {
  margin-top: 2rem;
}
.news-detail__date {
  font-size: 1.8rem;
  color: #9F967B;
}
.news-detail__cate {
  font-size: 1.8rem;
  margin-left: 3rem;
}
.news-detail__img {
  text-align: center;
  margin-top: 7rem;
}
.news-detail__txt {
  font-size: 2.2rem;
  line-height: 1.9545454545;
  margin-top: 4rem;
}
.news-detail__txt:nth-of-type(1) {
  margin-top: 6rem;
}
.news-detail__pagination {
  display: flex;
  margin-top: 18rem;
}
.news-detail__pagination li:nth-of-type(1) {
  border-right: 1px solid #707070;
  padding-right: 7rem;
}
.news-detail__pagination li:nth-of-type(2) {
  padding-left: 7rem;
}
.news-detail__pagination li a:hover {
  opacity: 0.7;
}
.news-detail__aside {
  width: 20.8333333333%;
  padding-top: 2rem;
}
.news-detail__aside-h3 {
  color: #9F967B;
  font-weight: 400;
}
.news-detail__aside-h3:nth-of-type(2) {
  margin-top: 9rem;
}
.news-detail__aside-recent-articles {
  padding-bottom: 9rem;
  border-bottom: 1px solid #707070;
}
.news-detail__aside-recent-articles li {
  margin-top: 4rem;
}
.news-detail__aside-recent-articles li a {
  font-size: 1.8rem;
}
.news-detail__aside-recent-articles li a:hover {
  opacity: 0.7;
}
.news-detail__aside-cate li {
  margin-top: 4rem;
}
.news-detail__aside-cate li a {
  font-size: 1.8rem;
}
.news-detail__aside-cate li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .news-detail {
    padding: 0 4% 5rem;
  }
  .news-detail__container {
    flex-direction: column;
    padding-top: 3rem;
  }
  .news-detail__main {
    width: 100%;
    padding-right: 0;
  }
  .news-detail__h2 {
    font-size: 2.4rem;
  }
  .news-detail__box {
    margin-top: 1.5rem;
  }
  .news-detail__date {
    font-size: 1.6rem;
  }
  .news-detail__cate {
    font-size: 1.6rem;
    margin-left: 2rem;
  }
  .news-detail__img {
    margin-top: 3rem;
  }
  .news-detail__txt {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
  .news-detail__txt:nth-of-type(1) {
    margin-top: 3rem;
  }
  .news-detail__pagination {
    justify-content: center;
    margin-top: 5rem;
  }
  .news-detail__pagination li:nth-of-type(1) {
    padding-right: 4rem;
  }
  .news-detail__pagination li:nth-of-type(1) a {
    font-size: 1.4rem;
  }
  .news-detail__pagination li:nth-of-type(2) {
    padding-left: 4rem;
  }
  .news-detail__aside {
    width: 100%;
    margin-top: 4rem;
  }
  .news-detail__aside-h3:nth-of-type(2) {
    margin-top: 5rem;
  }
  .news-detail__aside-recent-articles {
    padding-bottom: 5rem;
  }
  .news-detail__aside-recent-articles li {
    margin-top: 2.5rem;
  }
  .news-detail__aside-recent-articles li a {
    font-size: 1.6rem;
  }
  .news-detail__aside-cate li {
    margin-top: 2.5rem;
  }
  .news-detail__aside-cate li a {
    font-size: 1.6rem;
  }
  .news-detail__aside-cate li a:hover {
    opacity: 0.7;
  }
}
/* ----- contact ----- */
.contact-mv__inner {
  background-image: url(../img/sub/contact_mv.jpg);
}

.contact {
  background: #F4F0E8;
  padding: 11rem 4% 22rem;
}
.contact__inner {
  max-width: 120rem;
  margin: 0 auto;
}
.contact__h2 {
  font-size: 3.5rem;
  font-weight: 400;
  text-align: center;
}
.contact__txt {
  font-size: 2.2rem;
  line-height: 1.9545454545;
  text-align: center;
  margin-top: 8rem;
}
.contact__form {
  margin-top: 9rem;
}
.contact__form-cont-wrap {
  display: flex;
  margin-top: 1rem;
}
.contact__form-cont-wrap--2 {
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}
.contact__form-cont-wrap--2 input[type=checkbox] + label {
  position: relative;
  font-size: 1.8rem;
  cursor: pointer;
}
.contact__form-cont-wrap--2 input[type=checkbox] + label::before {
  content: "";
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: -3.8rem;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid #707070;
}
.contact__form-cont-wrap--2 input[type=checkbox] + label::after {
  content: "";
  background: #B7B7B7;
  position: absolute;
  top: 50%;
  left: -3.1rem;
  transform: translateY(-50%);
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  opacity: 0;
}
.contact__form-cont-wrap--2 input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.contact__form-cont-wrap--2 input[type=checkbox] {
  display: none;
}
.contact__form-label {
  background: #CFC0A1;
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0;
  width: 27.5%;
  padding: 1.1rem 3rem 1.2rem;
  border: 1px solid #707070;
}
.contact__form-input {
  font-size: 1.8rem;
  letter-spacing: 0;
  width: calc(72.5% - 1rem);
  padding: 1.1rem 3rem 1.2rem;
  border: 1px solid #707070;
  margin-left: 1rem;
}
.contact__form-textarea {
  font-size: 1.8rem;
  letter-spacing: 0;
  width: calc(72.5% - 1rem);
  height: 28rem;
  padding: 1.7rem 3rem 1.6rem;
  border: 1px solid #707070;
  margin-left: 1rem;
}
.contact__h3 {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 400;
  margin-top: 5rem;
}
.contact__form-box {
  background: #fff;
  height: 34rem;
  overflow-y: scroll;
  padding: 4rem 3rem;
  border: 1px solid #707070;
  margin-top: 2rem;
}
.contact__form-box p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6666666667;
  margin-top: 1.5rem;
}
.contact__form-box::-webkit-scrollbar {
  width: 1.2rem;
}
.contact__form-box::-webkit-scrollbar-track {
  background: #E2E2E2;
}
.contact__form-box::-webkit-scrollbar-thumb {
  background-color: #D3C7AF;
  border-radius: 20px;
}
.contact__h4 {
  font-size: 2.2rem;
  font-weight: 400;
}
.contact__h4:nth-of-type(2),
.contact__h4:nth-of-type(3) {
  margin-top: 3rem;
}
.contact__form-btn-wrap {
  text-align: center;
  margin-top: 10rem;
}
.contact__form-btn-wrap input {
  background: #fff;
  font-size: 2.5rem;
  padding: 1.3rem 7rem 1.4rem;
  border: 1px solid #707070;
  cursor: pointer;
}
.contact__form-btn-wrap input[disabled] {
  border: 1px solid #ccc;
}
.wpcf7-spinner {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 4rem 4% 5rem;
  }
  .contact__h2 {
    font-size: 2.4rem;
  }
  .contact__txt {
    font-size: 1.8rem;
    margin-top: 2.5rem;
  }
  .contact__form {
    margin-top: 4rem;
  }
  .contact__form-cont-wrap {
    flex-direction: column;
    margin-top: 1rem;
  }
  .contact__form-cont-wrap--2 {
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }
  .contact__form-cont-wrap--2 input[type=checkbox] + label {
    font-size: 1.4rem;
    text-align: center;
    max-width: 28rem;
    margin: 0 auto;
  }
  .contact__form-cont-wrap--2 input[type=checkbox] + label::before {
    top: 1rem;
    left: -3rem;
    width: 1.8rem;
    height: 1.8rem;
  }
  .contact__form-cont-wrap--2 input[type=checkbox] + label::after {
    top: 1rem;
    left: -2.6rem;
    width: 1rem;
    height: 1rem;
  }
  .contact__form-cont-wrap--2 input[type=checkbox]:checked + label::after {
    opacity: 1;
  }
  .contact__form-label {
    font-size: 1.6rem;
    width: 100%;
    padding: 0.5rem 1rem 0.6rem;
    border-bottom: none;
  }
  .contact__form-input {
    font-size: 1.5rem;
    width: 100%;
    padding: 0.5rem 1rem 0.6rem;
    margin-left: 0;
  }
  .contact__form-textarea {
    font-size: 1.5rem;
    width: 100%;
    height: 14rem;
    padding: 0.5rem 1rem 0.6rem;
    margin-left: 0;
  }
  .contact__h3 {
    font-size: 2rem;
    margin-top: 3rem;
  }
  .contact__form-box {
    height: 34rem;
    padding: 2rem;
    margin-top: 2.5rem;
  }
  .contact__form-box p {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
  .contact__form-box::-webkit-scrollbar {
    width: 0.8rem;
  }
  .contact__h4 {
    font-size: 1.6rem;
    font-weight: 400;
  }
  .contact__h4:nth-of-type(2) {
    margin-top: 2rem;
  }
  .contact__form-btn-wrap {
    text-align: center;
    margin-top: 3rem;
  }
  .contact__form-btn-wrap input {
    font-size: 1.8rem;
    padding: 0.8rem 4rem 0.9rem;
  }
}

/*# sourceMappingURL=style.css.map */
