@charset "UTF-8";
/* ========== 初期設定 ========== */
html {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  word-break: break-all;
  font-size: 4vw;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  color: #1c1c1c;
  background: #f1f5f6;
  overflow-x: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 1.8rem;
    line-height: 1.8;
    min-width: 100%;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width:1440px) {
  body {
		min-width: 1440px;
  }
}

body, div, p, h1, h2, h3, h4, ul, figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.5;
}

textarea::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1c1c1c;
}

textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1c1c1c;
}

textarea:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1c1c1c;
}

textarea::-ms-input-placeholder, input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1c1c1c;
}

textarea, input[type=text], input[type=tel], input[type=email], select,
textarea::placeholder, input[type=text]::placeholder,
input[type=tel]::placeholder, input[type=email]::placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1c1c1c;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

p {
  font-weight: 500;
  line-height: 2;
}

a {
  color: #1c1c1c;
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

a.under-line {
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  a {
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
}
li {
  list-style-type: none;
}

table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

svg {
  overflow: visible;
}

/* レスポンシブ制御 */
.set-pc {
  display: none;
}

@media screen and (min-width: 1024px) {
  .set-pc {
    display: block;
  }
}
.set-sp {
  display: block;
}

@media screen and (min-width: 1024px) {
  .set-sp {
    display: none;
  }
}
/* クリアフィックス */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

/* コンテンツ幅 */
.container {
  position: relative;
  width: auto;
  max-width: 1800px;
  margin: 0 auto;
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  .container {
    min-width: 100%;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
    min-width: 1360px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
/* フォント設定 */
.en {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.exlight {
  font-weight: 200 !important;
}

.light {
  font-weight: 300 !important;
}

.medium {
  font-weight: 500 !important;
}

.semiBold {
  font-weight: 600 !important;
}

.bold {
  font-weight: bold !important;
}

.black {
  font-weight: 900 !important;
}

.delay-fade {
  opacity: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.delay-fade.d-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ========== 共通部品 ========== */
/* ボタンデザイン */
.btn01 {
  position: relative;
  display: block;
  font-size: 4vw;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border-radius: 16vw;
  padding: 4vw 13.3333333333vw;
  width: 80vw;
  overflow: hidden;
  z-index: 1;
}

.btn01.style03 {
  background-color: #e8f0f1;
}

@media screen and (min-width: 1024px) {
  .btn01 {
    font-size: 1.8rem;
    border-radius: 40px;
    padding: 24px 0;
    width: 600px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn01:hover {
    color: #fff;
  }
  .btn01.style02,
  .btn01.style03 {
    color: #1c1c1c;
  }
}
.btn01 .i-arrow {
  position: absolute;
  top: 50%;
  right: 2.1333333333vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  background: url(../images/common_img/arrow_circle01.svg) center center/cover no-repeat;
}

.btn01.style02 .i-arrow {
  background: url(../images/common_img/arrow_circle02.svg) center center/cover no-repeat;
}

.btn01.style04 .i-arrow {
  background: url(../images/common_img/arrow_circle04.svg) center center/cover no-repeat;
}

@media screen and (min-width: 1024px) {
  .btn01 .i-arrow {
    right: 10px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .btn01::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #7db6be;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
  }
  .btn01.style02::before {
    background-color: #e8f0f1;
  }
  .btn01:hover::before {
    -webkit-transform: translateY(-50%) scale(22);
            transform: translateY(-50%) scale(22);
  }
}
.btn02 {
  position: relative;
  display: block;
  font-size: 4vw;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #7db6be;
  border-radius: 30px;
  padding-top: 4vw;
  padding-bottom: 4vw;
  white-space: nowrap;
  width: 53.3333333333vw;
}

.btn02.style02 {
  background-color: #063c6d;
}

@media screen and (min-width: 1024px) {
  .btn02 {
    font-size: 1.6rem;
    border-radius: 30px;
    padding-top: 14px;
    padding-bottom: 14px;
    width: 600px;
  }
  .btn02:hover {
    color: #7db6be;
    background-color: #fff;
  }
  .btn02.style02:hover {
    color: #063c6d;
    background-color: #fff;
  }
}
.btn02 .i-link {
  position: absolute;
  top: 50%;
  right: 5.8666666667vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4vw;
  height: 4vw;
  background: url(../images/common_img/arrow_link.svg) center center/cover no-repeat;
}

@media screen and (min-width: 1024px) {
  .btn02 .i-link {
    right: 33px;
    width: 20px;
    height: 20px;
  }
  .btn02:hover .i-link {
    -webkit-filter: brightness(0) saturate(100%) invert(69%) sepia(40%) saturate(279%) hue-rotate(139deg) brightness(92%) contrast(89%);
            filter: brightness(0) saturate(100%) invert(69%) sepia(40%) saturate(279%) hue-rotate(139deg) brightness(92%) contrast(89%);
  }
  .btn02.style02:hover .i-link {
    -webkit-filter: brightness(0) saturate(100%) invert(9%) sepia(98%) saturate(5013%) hue-rotate(199deg) brightness(82%) contrast(95%);
            filter: brightness(0) saturate(100%) invert(9%) sepia(98%) saturate(5013%) hue-rotate(199deg) brightness(82%) contrast(95%);
  }
}
/* タイトル */
.lgtitle-en {
  font-size: 19.2vw;
  white-space: nowrap;
  line-height: 0.8;
  color: #fff;
}

.title-en {
  font-size: 5.8666666667vw;
  white-space: nowrap;
  color: #7db6be;
}

.sec-title {
  font-size: 4.8vw;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .lgtitle-en {
    font-size: 22rem;
    letter-spacing: 1.2rem;
  }
  .title-en {
    font-size: 4.2rem;
    letter-spacing: 0.2rem;
  }
  .sec-title {
    font-size: 4rem;
    letter-spacing: 0.2rem;
  }
}
/* ========== ヘッダー ========== */
header {
  position: absolute;
  width: 100%;
  z-index: 100;
}

header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100px;
}

header .headerLogo {
  padding-left: 20px;
  margin-top: 5px;
}
@media screen and (min-width: 1310px) {
  header .headerLogo {
    padding-left: 100px;
  }
}

header .headerLogo img {
  width: auto;
  max-width: 223px;
}

header .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding-right: 100px;
}

header .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 46px;
  margin-left: 72px;
}

header .link-box a {
  font-size: 1.5rem;
  font-weight: bold;
}

header .gnav-open {
  position: fixed;
  top: 0;
  right: 0;
  background: url(../images/common_img/menu_open.png) center center/cover no-repeat;
  width: 100px;
  height: 100px;
  cursor: pointer;
}

/* ========== スマホメニュー ========== */
#spnav {
  position: absolute;
  width: 100%;
  z-index: 50;
}

#spnav .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10.6666666667vw;
}

#spnav .header-logo {
  width: 34.6666666667vw;
  position: absolute;
  top: 4vw;
  left: 5.3333333333vw;
}

#spnav .gnav-open {
  position: fixed;
  top: 5.8666666667vw;
  right: 5.3333333333vw;
  width: 10.6666666667vw;
  height: 3.4666666667vw;
}

#spnav .gnav-open::before {
  content: "";
  display: inline-block;
  position: fixed;
  background-image: url("../images/common_img/menu_open.png");
  background-size: cover;
  width: 16vw;
  height: 16vw;
  top: 0;
  right: 0;
}

/* ========== グローバルナビ ========== */
.g-nav {
  display: block;
  position: fixed;
  width: 100%;
  height: 0;
  background-color: #f1f5f6;
  opacity: 0.98;
  opacity: 0;
  visibility: hidden;
  -webkit-animation-name: fadeout-anime;
          animation-name: fadeout-anime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  z-index: -1;
  -webkit-transition: visibility 0.6s ease;
  transition: visibility 0.6s ease;
  overflow-y: auto;
}

.g-nav.is-open {
  -webkit-animation-name: fadein-anime;
          animation-name: fadein-anime;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  opacity: 0.98;
  z-index: 999;
  visibility: visible;
  height: 100vh;
}

.g-nav .gnav-close {
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../images/common_img/menu_close.png");
  background-size: cover;
  width: 16vw;
  height: 16vw;
  z-index: 100;
}

@media screen and (min-width: 1024px) {
  .g-nav .gnav-close {
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    cursor: pointer;
    -webkit-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
  }
  .g-nav .gnav-close:hover {
    opacity: 0.7;
  }
}
.g-nav .container {
  height: inherit;
}

.g-nav .wrap {
  display: block;
  width: 100%;
  padding-top: 12vw;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap {
    padding-top: 0;
    width: 100%;
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.g-nav .wrap .visual {
  position: relative;
  width: 100%;
  height: 88vw;
  background: url(../images/common_img/gnav_bg_sp.jpg) center center/cover no-repeat;
  margin-bottom: 13.3333333333vw;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .visual {
    width: 65%;
    height: 100vh;
    background: url(../images/common_img/gnav_bg.jpg) center bottom/cover no-repeat;
    margin-bottom: 0;
  }
}
.g-nav .wrap .visual .box {
  position: absolute;
  bottom: 0;
  left: 5.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.3333333333vw;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .visual .box {
    bottom: 60px;
    left: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 60px;
  }
}
@media screen and (min-width: 1700px) {
  .g-nav .wrap .visual .box {
    left: 200px;
  }
}
.g-nav .wrap .visual .head {
  font-size: 6.4vw;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .visual .head {
    font-size: 4.0rem;
  }
}
@media screen and (min-width: 1400px) {
  .g-nav .wrap .visual .head {
    font-size: 5.2rem;
  }
}

.g-nav .wrap .visual .txt {
  color: #fff;
  white-space: nowrap;
  margin-bottom: 12px;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .visual .txt {
    margin-bottom: 12px;
  }
}
.g-nav .wrap .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding: 0 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 52%;
    height: 100vh;
    padding: 0;
  }
}
.g-nav .wrap .contents .box {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents .box {
    width: auto;
  }
}
.g-nav .wrap .contents .gnav-logo img {
  display: none;
  width: 45.3333333333vw;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents .gnav-logo img {
    display: block;
    width: 256px;
  }
}
.g-nav .wrap .contents .main-nav {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents .main-nav {
    width: 500px;
  }
}
.g-nav .wrap .contents .main-nav .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.6666666667vw;
  margin-top: 8vw;
  margin-bottom: 10.6666666667vw;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents .main-nav .list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px 0;
    margin-top: 65px;
    margin-bottom: 95px;
  }
}
.g-nav .wrap .contents .main-nav .list li {
  width: auto;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents .main-nav .list li {
    width: 50%;
  }
  .g-nav .wrap .contents .main-nav .list li:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .g-nav .wrap .contents .main-nav .list li:nth-of-type(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .g-nav .wrap .contents .main-nav .list li:nth-of-type(3) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .g-nav .wrap .contents .main-nav .list li:nth-of-type(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .g-nav .wrap .contents .main-nav .list li:nth-of-type(5) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .g-nav .wrap .contents .main-nav .list li:nth-of-type(6) {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
.g-nav .wrap .contents .main-nav .list li a {
  font-size: 4.2666666667vw;
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents .main-nav .list li a {
    font-size: 1.7rem;
  }
  .g-nav .wrap .contents .main-nav .list li a:hover {
    opacity: 0.7;
  }
}
.g-nav .wrap .contents .main-nav .sublist li .en {
  position: relative;
  font-size: 4.2666666667vw;
  text-align: center;
  color: #7db6be;
  margin: 0 auto;
  width: 45.3333333333vw;
}

.g-nav .wrap .contents .main-nav .sublist li .en::before {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 5.3333333333vw;
  background-color: #7db6be;
  position: absolute;
  top: 0.8vw;
  left: -0.8vw;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.g-nav .wrap .contents .main-nav .sublist li .en::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 5.3333333333vw;
  background-color: #7db6be;
  position: absolute;
  top: 0.8vw;
  right: -0.8vw;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents .main-nav .sublist li .en {
    font-size: 2rem;
    margin: 0 auto;
    width: 200px;
  }
  .g-nav .wrap .contents .main-nav .sublist li .en::before {
    width: 1px;
    height: 20px;
    top: 9px;
    left: -5px;
  }
  .g-nav .wrap .contents .main-nav .sublist li .en::after {
    width: 1px;
    height: 20px;
    top: 9px;
    right: -5px;
  }
}
.g-nav .wrap .contents .main-nav .sublist li .btn01 {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents .main-nav .sublist li .btn01 {
    width: 500px;
  }
}
.g-nav .wrap .contents .main-nav .sublist li .btn02 {
  width: 100%;
  margin-top: 4vw;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents .main-nav .sublist li .btn02 {
    width: 500px;
    margin-top: 20px;
  }
}
.g-nav .wrap .contents .sub-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4vw;
  margin-top: 5.3333333333vw;
  margin-bottom: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents .sub-nav ul {
    gap: 18px;
    margin-top: 40px;
    margin-bottom: 0;
  }
}
.g-nav .wrap .contents .sub-nav ul li a {
  display: inline-block;
  -webkit-filter: brightness(0) saturate(100%) invert(69%) sepia(40%) saturate(279%) hue-rotate(139deg) brightness(92%) contrast(89%);
          filter: brightness(0) saturate(100%) invert(69%) sepia(40%) saturate(279%) hue-rotate(139deg) brightness(92%) contrast(89%);
  opacity: 0.6;
}

.g-nav .wrap .contents .sub-nav ul .i-facebook {
  width: 24px;
  height: 24px;
  background: url(../images/common_img/icon_facebook.svg) center center/cover no-repeat;
}

.g-nav .wrap .contents .sub-nav ul .i-x {
  width: 21px;
  height: 21px;
  background: url(../images/common_img/icon_x.svg) center center/cover no-repeat;
}

@media screen and (min-width: 1024px) {
  .g-nav .wrap .contents .sub-nav ul .i-facebook {
    width: 24px;
    height: 24px;
  }
  .g-nav .wrap .contents .sub-nav ul .i-x {
    width: 21px;
    height: 21px;
  }
}
/* ========== トップメインビジュアル ========== */
.top-mainvisual {
  position: relative;
  height: 180vw;
}

@media screen and (min-width: 1024px) {
  .top-mainvisual {
    height: auto;
  }
}
.top-mainvisual .mv-bg {
  background: url(../images/top/mv_sp.jpg) center center/cover no-repeat;
  height: 146.6666666667vw;
  margin: 17.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  border-radius: 16vw;
}

@media screen and (min-width: 1024px) {
  .top-mainvisual .mv-bg {
    height: 880px;
    background: url(../images/top/mv.jpg) right bottom/cover no-repeat;
    margin: 100px 100px 0;
    border-radius: 250px;
  }
}
.top-mainvisual .box {
  position: absolute;
  top: 5.3333333333vw;
  left: 10.6666666667vw;
}

@media screen and (min-width: 1024px) {
  .top-mainvisual .box {
    top: 110px;
    left: 200px;
  }
}
.top-mainvisual .container {
  position: static;
}

.top-mainvisual .head {
  font-size: 6.4vw;
  font-weight: 400;
  line-height: 1.46;
  margin-top: 8vw;
  letter-spacing: 0.45rem;
}

@media screen and (min-width: 1024px) {
  .top-mainvisual .head {
    font-size: 7.2rem;
    margin-top: 1rem;
  }
}
.top-mainvisual .lgtxt {
  font-size: 5.3333333333vw;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2rem;
  margin-top: 4.2666666667vw;
}

@media screen and (min-width: 1024px) {
  .top-mainvisual .lgtxt {
    font-size: 3.6rem;
    margin-top: 25px;
  }
}
.top-mainvisual .txt {
  font-size: 4vw;
  font-weight: 500;
  margin-top: 5.3333333333vw;
  width: 80vw;
}

@media screen and (min-width: 1024px) {
  .top-mainvisual .txt {
    font-size: 1.8rem;
    margin-top: 30px;
    width: 745px;
  }
}
.top-mainvisual .head.d-active {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.top-mainvisual .lgtxt.d-active {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.top-mainvisual .txt.d-active {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.top-mainvisual .scroll {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.7333333333vw;
  font-weight: 500;
  margin-bottom: 3.7333333333vw;
}

@media screen and (min-width: 1024px) {
  .top-mainvisual .scroll {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 143px;
  }
}
.top-mainvisual .scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 13.3333333333vw;
  background-color: #abb1b2;
  position: absolute;
  bottom: -13.3333333333vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 1024px) {
  .top-mainvisual .scroll::before {
    width: 1px;
    height: 80px;
    bottom: -84px;
  }
}
/* ========== メインビジュアル：右下リンク ========== */
.mv-link {
  position: absolute;
  right: 4vw;
  bottom: 28vw;
  background: url(../images/top/mv_btn.png) center center/cover no-repeat;
  width: 33.3333333333vw;
  height: 33.6vw;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

@media screen and (min-width: 1024px) {
  .mv-link {
    right: 100px;
    bottom: 55px;
    width: 180px;
    height: 179px;
  }
  .mv-link:hover a {
    opacity: 0.8;
  }
}
.mv-link a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 2.9333333333vw;
  font-weight: 500;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 27.7333333333vw;
  height: 29.0666666667vw;
  margin-left: 5.3333333333vw;
  margin-top: 3.7333333333vw;
}

@media screen and (min-width: 1024px) {
  .mv-link a {
    font-size: 1.6rem;
    width: 160px;
    height: 160px;
    margin-top: 14px;
    margin-left: 20px;
  }
}
.mv-link.d-active {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

/* ========== 下層：メインビジュアル ========== */
.mainvisual {
  position: relative;
  height: 106.6666666667vw;
}

.mainvisual.is-contact {
  height: 186.6666666667vw;
}

@media screen and (min-width: 1024px) {
  .mainvisual {
    height: auto;
  }
  .mainvisual.is-contact {
    height: auto;
  }
}
.mainvisual .mv-bg {
  background: url(../images/top/mv_sp.jpg) center center/cover no-repeat;
  height: 66.6666666667vw;
  margin: 17.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  border-radius: 16vw;
}

.mainvisual.is-contact .mv-bg {
  background: url(../contact/images/mv_sp.jpg) center center/cover no-repeat;
  margin-top: 8vw;
  height: 146.6666666667vw;
}

.mainvisual.is-philosophy .mv-bg {
  background: url(../images/philosophy/mv-philosophy.jpg) center center/cover no-repeat;
}

.mainvisual.is-service .mv-bg {
  background: url(../images/service/mv-service.jpg) center center/cover no-repeat;
}

.mainvisual.is-aboutus .mv-bg {
  background: url(../images/aboutus/mv-aboutus.jpg) center center/cover no-repeat;
}

.mainvisual.is-faq .mv-bg {
  background: url(../images/faq/mv-faq.jpg) center center/cover no-repeat;
}

.mainvisual.is-info .mv-bg {
  background: url(../images/information/mv-info.jpg) center center/cover no-repeat;
}

@media screen and (min-width: 1024px) {
  .mainvisual .mv-bg {
    height: 880px;
    background: url(../images/top/mv.jpg) center bottom/cover no-repeat;
    margin: 100px 100px 0;
    border-radius: 250px;
  }
  .mainvisual.is-contact .mv-bg {
    background: url(../contact/images/mv.jpg) center center/cover no-repeat;
    margin-top: 100px;
    height: 880px;
  }
}
.mainvisual .box {
  position: absolute;
  top: 5.3333333333vw;
  left: 10.6666666667vw;
}

@media screen and (min-width: 1024px) {
  .mainvisual .box {
    top: 280px;
    left: 200px;
  }
  .mainvisual .box:not(:has(.txt)) {
    top: 356px;
    left: 202px;
  }
}
.mainvisual .container {
  position: static;
}

.mainvisual .head {
  font-size: 6.4vw;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 18.6666666667vw;
}

@media (max-width: 1023px) {
  .mainvisual.is-contact .head {
    margin-top: 34.6666666667vw;
  }
}

.mainvisual.is-detail .head {
  max-width: 90%;
}
@media (max-width: 1023px) {
  .mainvisual.is-detail .head {
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .mainvisual .head {
    font-size: 5rem;
    margin-top: 0;
  }
  .mainvisual.is-info .head {
    width: 100%;
    letter-spacing: 0.05em;
    margin-top: 10px;
    min-width: 850px;
  }
  .mainvisual.is-info .box {
    top: 289px;
    left: 206px;
  }
}
.mainvisual .h-title {
  font-size: 5.3333333333vw;
  color: #636871;
  margin-top: 2.6666666667vw;
}

@media screen and (min-width: 1024px) {
  .mainvisual .h-title {
    font-size: 2rem;
    margin-top: 20px;
  }
}
.mainvisual .txt {
  font-size: 4vw;
  font-weight: 500;
  margin-top: 8vw;
  width: 80vw;
}

@media screen and (min-width: 1024px) {
  .mainvisual .txt {
    font-size: 1.8rem;
    margin-top: 40px;
    width: 650px;
  }
}
.mainvisual .head.d-active {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.mainvisual .h-title.d-active {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.mainvisual .txt.d-active {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.mainvisual .scroll {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.7333333333vw;
  font-weight: 500;
  margin-bottom: 3.7333333333vw;
}

@media screen and (min-width: 1024px) {
  .mainvisual .scroll {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 145px;
  }
}
.mainvisual .scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 13.3333333333vw;
  background-color: #abb1b2;
  position: absolute;
  bottom: -13.3333333333vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 1024px) {
  .mainvisual .scroll::before {
    width: 1px;
    height: 80px;
    bottom: -84px;
  }
}
/* ========== メインエリア ========== */
main {
  background: #f1f5f6;
}

/* ========== パンくず ========== */
.footer-bc {
  background-color: #e4ebed;
}

.footer-bc ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 4vw 0;
  flex-wrap: wrap;
}

@media screen and (min-width: 1024px) {
  .footer-bc ul {
    padding: 13px 0;
  }
}
.footer-bc ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-bc li + li {
  margin-left: 6.6666666667vw;
}

@media screen and (min-width: 1024px) {
  .footer-bc li + li {
    margin-left: 35px;
  }
}
.footer-bc li p,
.footer-bc li a {
  font-size: 2.9333333333vw;
  color: #757981;
}

.footer-bc li a {
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .footer-bc li p,
  .footer-bc li a {
    font-size: 1.3rem;
  }
  .footer-bc li a:hover {
    opacity: 0.7;
  }
}
.footer-bc li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 52%;
  left: -4vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.6vw;
  height: 0.2666666667vw;
  background-color: #6b6b6b;
}

.footer-bc li:first-of-type::before {
  display: none;
}

@media screen and (min-width: 1024px) {
  .footer-bc li::before {
    top: 52%;
    left: -20px;
    width: 4px;
    height: 1px;
  }
}
/* ========== フッター ========== */
footer {
  position: relative;
  background-color: #002445;
  padding-top: 8vw;
}

@media screen and (min-width: 1024px) {
  footer {
    padding-top: 175px;
  }
}
footer .footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 1024px) {
  footer .footer-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
footer .footer-main .logo {
  width: 48vw;
  margin-top: 2.6666666667vw;
}

@media screen and (min-width: 1024px) {
  footer .footer-main .logo {
    width: 305px;
    margin-top: 0;
  }
}
footer .footer-main .lgtxt {
  font-size: 6.1333333333vw;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-top: 8vw;
}

@media screen and (min-width: 1024px) {
  footer .footer-main .lgtxt {
    font-size: 4rem;
    margin-top: 110px;
  }
}
footer .footer-main .txt {
  font-size: 4.2666666667vw;
  color: #fff;
  margin-top: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  footer .footer-main .txt {
    font-size: 1.4rem;
    width: 595px;
    margin-top: 30px;
  }
}
footer .footer-sub {
  width: 100%;
  padding-bottom: 13.3333333333vw;
}

@media screen and (min-width: 1024px) {
  footer .footer-sub {
    width: 500px;
    padding-bottom: 0;
  }
}
footer .footer-sub .name {
  font-size: 6.4vw;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.3rem;
  color: #fff;
  padding-top: 10.6666666667vw;
}

@media screen and (min-width: 1024px) {
  footer .footer-sub .name {
    font-size: 4rem;
    padding-left: 60px;
    padding-top: 43px;
  }
}
footer .footer-sub .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.3333333333vw;
  margin-top: 8vw;
  margin-bottom: 10.6666666667vw;
}

@media screen and (min-width: 1024px) {
  footer .footer-sub .list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 21px 0;
    margin-top: 70px;
    margin-bottom: 95px;
  }
}
footer .footer-sub .list li {
  width: auto;
}

@media screen and (min-width: 1024px) {
  footer .footer-sub .list li {
    width: 50%;
  }
  footer .footer-sub .list li:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  footer .footer-sub .list li:nth-of-type(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  footer .footer-sub .list li:nth-of-type(3) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  footer .footer-sub .list li:nth-of-type(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  footer .footer-sub .list li:nth-of-type(5) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  footer .footer-sub .list li:nth-of-type(6) {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
footer .footer-sub .list li a {
  font-size: 4vw;
  font-weight: 500;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  footer .footer-sub .list li a {
    font-size: 1.7rem;
  }
  footer .footer-sub .list li a:hover {
    opacity: 0.7;
  }
}
footer .footer-sub .btnwrap li .en {
  position: relative;
  font-size: 4.2666666667vw;
  text-align: center;
  color: #fff;
  margin: 0 auto 1.0666666667vw;
  width: 45.3333333333vw;
}

footer .footer-sub .btnwrap li .en::before {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 5.3333333333vw;
  background-color: #7db6be;
  position: absolute;
  top: 0.8vw;
  left: -0.8vw;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

footer .footer-sub .btnwrap li .en::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 5.3333333333vw;
  background-color: #7db6be;
  position: absolute;
  top: 0.8vw;
  right: -0.8vw;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

@media screen and (min-width: 1024px) {
  footer .footer-sub .btnwrap li .en {
    font-size: 2rem;
    margin: 0 auto;
    width: 200px;
  }
  footer .footer-sub .btnwrap li .en::before {
    width: 1px;
    height: 20px;
    top: 9px;
    left: -5px;
  }
  footer .footer-sub .btnwrap li .en::after {
    width: 1px;
    height: 20px;
    top: 9px;
    right: -5px;
  }
}
footer .footer-sub .btnwrap li .btn01 {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  footer .footer-sub .btnwrap li .btn01 {
    width: 500px;
  }
}
footer .footer-sub .btnwrap li .btn02 {
  width: 100%;
  margin-top: 4vw;
}

@media screen and (min-width: 1024px) {
  footer .footer-sub .btnwrap li .btn02 {
    width: 500px;
    margin-top: 20px;
  }
}
footer .footer-middle .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4vw;
  margin-top: 5.3333333333vw;
  margin-bottom: 10.6666666667vw;
  position: relative;
}

@media screen and (min-width: 1024px) {
  footer .footer-middle .sns-list {
    gap: 22px;
    margin-top: 180px;
    width: 120px;
  }
}
footer .footer-middle .sns-list li a {
  display: inline-block;
  opacity: 0.6;
}

footer .footer-middle .sns-list .i-facebook {
  width: 7.4666666667vw;
  height: 7.4666666667vw;
  background: url(../images/common_img/icon_facebook.svg) center center/cover no-repeat;
}

footer .footer-middle .sns-list .i-x {
  width: 6.4vw;
  height: 6.4vw;
  background: url(../images/common_img/icon_x.svg) center center/cover no-repeat;
}

@media screen and (min-width: 1024px) {
  footer .footer-middle .sns-list .i-facebook {
    width: 28px;
    height: 28px;
  }
  footer .footer-middle .sns-list .i-x {
    width: 24px;
    height: 24px;
  }
}
footer .footer-copyright {
  font-size: 2.4vw;
  color: #58697a;
  text-align: center;
  background-color: #001d38;
  line-height: 13.3333333333vw;
}

@media screen and (min-width: 1024px) {
  footer .footer-copyright {
    font-size: 1.3rem;
    line-height: 60px;
  }
}
/* ========== index トップページ(#frontpage) ========== */
/* message */
#frontpage .message {
  position: relative;
  margin-top: 8vw;
  margin-bottom: 40vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .message {
    margin-top: 0;
    margin-bottom: 195px;
  }
}
#frontpage .message .bg01 {
  background: url(../images/top/message_img03.jpg) center top/cover no-repeat;
  width: 82.1333333333vw;
  height: 60.2666666667vw;
  position: absolute;
  top: 0;
  left: 0;
  border-top-right-radius: 16vw;
  border-bottom-right-radius: 16vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .message .bg01 {
    background: url(../images/top/message_img03.jpg) center top/cover no-repeat;
    width: 60%;
    height: 880px;
    margin-left: 100px;
    border-radius: 250px;
  }
}
@media screen and (min-width: 1024px) {
  #frontpage .message .bg02 {
    background: url(../images/top/message_img04.jpg) center top/cover no-repeat;
    position: absolute;
    width: 30%;
    height: 580px;
    top: 0;
    right: 0;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
  }
}
#frontpage .message .lgtitle-en {
  padding-top: 41.6vw;
  text-align: right;
  position: relative;
  left: -3.4666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .message .lgtitle-en {
    padding-top: 665px;
    text-align: right;
    left: auto;
    margin-right: -17px;
  }
}
#frontpage .message .box {
  margin-top: 13.3333333333vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .message .box {
    width: 800px;
    margin: 156px 0 0 auto;
  }
}
#frontpage .message .sec-title {
  line-height: 1.85;
  margin-top: 2.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .message .sec-title {
    margin-top: 20px;
  }
}
#frontpage .message .txt {
  font-weight: 500;
  margin-top: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .message .txt {
    font-weight: 500;
    margin-top: 40px;
    width: 712px;
  }
}
/* menu */
#frontpage .menu {
  background-color: #043460;
  padding-top: 20vw;
  padding-bottom: 10.6666666667vw;
  margin-top: 21.3333333333vw;
  border-top-right-radius: 16vw;
  border-bottom-left-radius: 16vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu {
    padding-top: 175px;
    padding-bottom: 200px;
    margin-top: 310px;
    border-top-right-radius: 250px;
    border-bottom-left-radius: 250px;
  }
}
#frontpage .menu .lgtitle-en {
  text-align: center;
  color: #002d57;
}

#frontpage .menu .title-en {
  letter-spacing: 0.2rem;
  text-align: center;
  margin-top: -18.9333333333vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .title-en {
    letter-spacing: 0.5rem;
    margin-top: -118px;
  }
}
#frontpage .menu .sec-title {
  font-size: 5.8666666667vw;
  text-align: center;
  color: #fff;
  padding-top: 4vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .sec-title {
    font-size: 4rem;
    padding-top: 15px;
  }
}
#frontpage .menu .lead {
  margin-top: 4vw;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .lead {
    margin-top: 30px;
  }
}
#frontpage .menu .contents {
  padding-top: 10.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .contents {
    padding-top: 110px;
  }
}
#frontpage .menu .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.3333333333vw;
  background-color: #fff;
  border-radius: 16vw;
  padding: 10.6666666667vw 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 95px;
    border-radius: 250px;
    padding: 97px;
  }
}
#frontpage .menu .box + .box {
  margin-top: 8vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .box + .box {
    margin-top: 80px;
  }
}
#frontpage .menu .box img {
  border-radius: 13.3333333333vw;
  width: 100%;
  height: 56vw;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .box img {
    border-radius: 200px;
    width: calc((100% - 95px) / 2);
    height: auto;
  }
}
#frontpage .menu .box .desc {
  width: auto;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .box .desc {
    width: calc((100% - 95px) / 2);
    margin-top: -35px;
  }
}
#frontpage .menu .box .desc .head {
  font-size: 5.0666666667vw;
  letter-spacing: 0.2rem;
  padding-bottom: 4vw;
  border-bottom: 1px solid #d8e3e6;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .box .desc .head {
    font-size: 3.4rem;
    padding-bottom: 30px;
  }
}
#frontpage .menu .box .desc .head span {
  display: block;
  font-size: 5.8666666667vw;
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .box .desc .head span {
    font-size: 3.8rem;
  }
}
#frontpage .menu .box .desc .txt {
  margin-top: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .box .desc .txt {
    margin-top: 30px;
  }
}
#frontpage .menu .btn01 {
  margin: 8vw auto;
}

@media screen and (min-width: 1024px) {
  #frontpage .menu .btn01 {
    margin: 130px auto 100px;
  }
}
/* menu guideline  */
.c-guideline .subtitle-en {
  font-size: 5.0666666667vw;
  color: #7db6be;
}
@media (min-width: 1024px) {
  .c-guideline .subtitle-en {
    font-size: 2.2rem;
  }
}
.c-guideline .subtitle {
  font-size: 5.8666666667vw;
  font-weight: 400;
  margin-bottom: 5.3333333333vw;
}
@media (min-width: 1024px) {
  .c-guideline .subtitle {
    font-size: 4rem;
    margin-bottom: 43px;
  }
}
@media (min-width: 1024px) {
  .c-guideline .container {
    padding-left: 286px;
    z-index: 1;
  }
}
.c-guideline .area-top {
  position: relative;
  margin-top: 32vw;
  padding-bottom: 85.3333333333vw;
}
@media (min-width: 1024px) {
  .c-guideline .area-top {
    margin-top: 415px;
    padding-bottom: 1190px;
  }
}
.c-guideline .area-top::before {
  content: "";
  display: block;
  background: #e7f1f3;
  border-radius: 0 16vw 16vw 0;
  position: absolute;
  top: -100px;
  left: 0;
  width: 90%;
  height: 133.3333333333vw;
}
@media (min-width: 1024px) {
  .c-guideline .area-top::before {
    border-radius: 0 250px 250px 0;
    width: 90%;
    max-width: 1800px;
    height: 768px;
    top: -175px;
  }
}
.c-guideline .area-top .container .txt {
  max-width: 658px;
}
.c-guideline .bg01 {
  background: url(../images/top/menu_img09.jpg) center top/cover no-repeat;
  position: absolute;
}
@media (max-width: 1023px) {
  .c-guideline .bg01 {
    width: 82.1333333333vw;
    height: 60.2666666667vw;
    top: 6.6666666667vw;
    right: 0;
    border-top-left-radius: 16vw;
    border-bottom-left-radius: 16vw;
  }
}
@media (min-width: 1024px) {
  .c-guideline .bg01 {
    width: 60%;
    height: 800px;
    top: 195px;
    left: 0;
    margin-left: 100px;
    border-radius: 250px;
  }
}
@media (min-width: 1024px) {
  .c-guideline .bg02 {
    background: url(../images/top/menu_img10.jpg) center top/cover no-repeat;
    position: absolute;
    width: 30%;
    height: 580px;
    top: -48px;
    right: 0;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
  }
}
.c-guideline .area-bottom {
  background: #fff;
  border-radius: 16vw;
  padding: 13.3333333333vw 8vw;
  width: 85%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .c-guideline .area-bottom {
    border-radius: 250px;
    padding: 116px 186px 164px;
    max-width: 1600px;
  }
}
.c-guideline .area-bottom .list {
  margin-top: 4vw;
  margin-bottom: 4vw;
}
@media (min-width: 1024px) {
  .c-guideline .area-bottom .list {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.c-guideline .area-bottom .list li {
  position: relative;
  padding-left: 4vw;
}
@media (min-width: 1024px) {
  .c-guideline .area-bottom .list li {
    padding-left: 18px;
  }
}
.c-guideline .area-bottom .list li + li {
  margin-top: 1.0666666667vw;
}
@media (min-width: 1024px) {
  .c-guideline .area-bottom .list li + li {
    margin-top: 3px;
  }
}
.c-guideline .area-bottom .list li::before {
  content: "";
  display: block;
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  border-radius: 50%;
  background-color: #7db6be;
  position: absolute;
  top: 3.2vw;
  left: 0.5333333333vw;
}
@media (min-width: 1024px) {
  .c-guideline .area-bottom .list li::before {
    width: 8px;
    height: 8px;
    top: 15px;
    left: 2px;
  }
}

/* features */
#frontpage .features {
  background-color: #043460;
  padding-top: 20vw;
  padding-bottom: 21.3333333333vw;
  margin-top: 21.3333333333vw;
  border-top-right-radius: 16vw;
  border-bottom-left-radius: 16vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .features {
    padding-top: 190px;
    padding-bottom: 200px;
    margin-top: 310px;
    border-top-right-radius: 250px;
    border-bottom-left-radius: 250px;
  }
}
#frontpage .features .lgtitle-en {
  text-align: center;
  color: #002d57;
}

#frontpage .features .title-en {
  letter-spacing: 0.2rem;
  text-align: center;
  margin-top: -18.9333333333vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .features .title-en {
    letter-spacing: 0.5rem;
    margin-top: -118px;
  }
}
#frontpage .features .sec-title {
  font-size: 5.8666666667vw;
  text-align: center;
  color: #fff;
  padding-top: 4vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .features .sec-title {
    font-size: 4rem;
    padding-top: 15px;
  }
}
#frontpage .features .contents {
  padding-top: 10.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .features .contents {
    padding-top: 70px;
  }
}
#frontpage .features .box {
  position: relative;
}

#frontpage .features .box .box-bg {
  position: absolute;
  bottom: 48vw;
  left: 0;
  border-top-right-radius: 16vw;
  border-bottom-right-radius: 16vw;
  width: 93.3333333333vw;
  height: 93.3333333333vw;
}

#frontpage .features .box:nth-of-type(1) .box-bg {
  background: url(../images/top/features_img01.jpg) center center/cover no-repeat;
}

#frontpage .features .box:nth-of-type(2) .box-bg {
  background: url(../images/top/features_img02.jpg) center center/cover no-repeat;
  right: 0;
  left: auto;
  margin-left: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 16vw;
  border-bottom-left-radius: 16vw;
}

#frontpage .features .box:nth-of-type(3) .box-bg {
  background: url(../images/top/features_img03.jpg) center center/cover no-repeat;
}

@media screen and (min-width: 1024px) {
  #frontpage .features .box .box-bg {
    bottom: 120px;
    left: 0;
    border-radius: 250px;
    width: 65%;
    height: 800px;
    margin-left: 100px;
  }
  #frontpage .features .box:nth-of-type(2) .box-bg {
    right: 0;
    left: auto;
    margin-right: 100px;
    margin-left: 0;
    border-radius: 250px;
  }
}
#frontpage .features .box .desc {
  position: relative;
  padding: 12vw 0 0 5.3333333333vw;
  margin: 40vw 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 10;
}

#frontpage .features .box:nth-of-type(2) .desc {
  padding: 5.3333333333vw 5.3333333333vw 0 0;
  margin: 80vw auto 0 0;
}

#frontpage .features .box:nth-of-type(3) .desc {
  margin: 80vw auto 0 0;
}

@media screen and (min-width: 1024px) {
  #frontpage .features .box .desc {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 680px;
    height: 700px;
    padding: 120px 0 0 150px;
    margin: 300px 0 0 auto;
  }
  #frontpage .features .box:nth-of-type(2) .desc {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 120px 150px 0 0;
    margin: 300px auto 0 0;
  }
  #frontpage .features .box:nth-of-type(3) .desc {
    margin: 300px 0 0 auto;
  }
}
#frontpage .features .box .desc::before {
  content: "";
  display: block;
  background-color: #f1f5f6;
  width: 133.3333333333vw;
  height: 117.3333333333vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-top-left-radius: 16vw;
  border-bottom-left-radius: 16vw;
}

#frontpage .features .box:nth-of-type(2) .desc::before {
  right: 0;
  left: auto;
  border-top-right-radius: 16vw;
  border-bottom-right-radius: 16vw;
  height: 106.6666666667vw;
}

#frontpage .features .box:nth-of-type(3) .desc::before {
  height: 106.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .features .box .desc::before {
    width: 2000px;
    height: 700px;
    border-top-left-radius: 250px;
    border-bottom-left-radius: 250px;
  }
  #frontpage .features .box:nth-of-type(2) .desc::before {
    border-top-right-radius: 250px;
    border-bottom-right-radius: 250px;
    height: 700px;
  }
  #frontpage .features .box:nth-of-type(3) .desc::before {
    height: 700px;
  }
}
#frontpage .features .box .desc .num {
  width: 21.3333333333vw;
}

#frontpage .features .box:nth-of-type(2) .desc .num {
  margin-right: 0;
}

@media screen and (min-width: 1024px) {
  #frontpage .features .box .desc .num {
    width: auto;
    margin-right: 300px;
  }
}
#frontpage .features .box .desc .head {
  font-size: 5.0666666667vw;
  letter-spacing: 0.2rem;
  margin-top: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .features .box .desc .head {
    font-size: 3.4rem;
    margin-top: 40px;
  }
}
#frontpage .features .box .desc .head span {
  display: block;
  font-size: 6.4vw;
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  #frontpage .features .box .desc .head span {
    font-size: 3.8rem;
  }
}
#frontpage .features .box .desc .txt {
  margin-top: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .features .box .desc .txt {
    margin-top: 40px;
    width: 500px;
  }
}
#frontpage .features .btn01 {
  width: 100%;
  margin: 24vw auto 0;
}

@media screen and (min-width: 1024px) {
  #frontpage .features .btn01 {
    margin: 60px auto 0;
    width: 600px;
  }
}
/* work */
#frontpage .work {
  margin-top: 26.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .work {
    margin-top: 260px;
  }
}
@media screen and (min-width: 1024px) {
  #frontpage .work .lgtitle-en {
    margin-left: -100px;
    letter-spacing: 0.5rem;
    padding-top: 10px;
  }
}
#frontpage .work .title-en {
  margin-top: -22.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .title-en {
    margin-top: -255px;
  }
}
#frontpage .work .sec-title {
  font-size: 5.8666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .sec-title {
    font-size: 4rem;
  }
}
#frontpage .work .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10.6666666667vw;
  margin-top: 9.3333333333vw;
}

#frontpage .work .list.d-active {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    width: 1100px;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1500px) {
  #frontpage .work .list {
    margin: -245px 0 0 auto;
  }
}
#frontpage .work .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 5vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .list li {
    width: 45.5%;
    padding: 0;
  }
  #frontpage .work .list li:nth-of-type(2) {
    margin-top: 220px;
  }
  #frontpage .work .list li:nth-of-type(3) {
    margin-top: -80px;
  }
  #frontpage .work .list li:nth-of-type(4) {
    margin-top: 140px;
  }
}
#frontpage .work .list img {
  border-radius: 66.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .list img {
    border-radius: 250px;
  }
}
#frontpage .work .list .head {
  font-size: 5.3333333333vw;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin-top: 4vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .list .head {
    font-size: 2.8rem;
    margin-top: 28px;
  }
}
#frontpage .work .list .txt {
  line-height: 2;
  margin-top: 4vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .list .txt {
    margin-top: 15px;
    width: 400px;
  }
}
#frontpage .work .btn01 {
  margin: 13.3333333333vw auto 16vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .btn01 {
    margin: 110px auto 140px;
  }
}
#frontpage .work .work-link {
  position: relative;
  display: block;
  width: 100%;
  background-color: #d4e1e4;
  border-radius: 21.3333333333vw;
  padding-top: 2.6666666667vw;
  padding-bottom: 10.6666666667vw;
  margin-top: 13.3333333333vw;
  z-index: 1;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .work-link {
    width: 100%;
    border-radius: 170px;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 130px;
  }
}
#frontpage .work .work-link .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .work-link .desc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 340px;
    padding-left: 130px;
  }
}
#frontpage .work .work-link .head {
  font-size: 4.8vw;
  line-height: 1.8;
  border-bottom: 1px solid #fff;
  padding: 5.3333333333vw 0 2.6666666667vw 0;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .work-link .head {
    font-size: 3.4rem;
    padding: 9px 74px 9px 0;
    border-bottom: none;
    border-right: 1px solid #fff;
    width: auto;
  }
}
#frontpage .work .work-link .txt {
  padding-top: 6.6666666667vw;
  padding-right: 8vw;
  padding-left: 8vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .work-link .txt {
    width: 510px;
    padding-top: 0;
    padding-right: 110px;
    padding-left: 65px;
  }
}
@media screen and (min-width:1400px) {
	#frontpage .work .work-link .txt {
		padding-right: 0;
	}
}
@media screen and (min-width: 1700px) {
  #frontpage .work .work-link .txt {
    width: 675px;
  }
}
#frontpage .work .work-link .i-arrow {
  background: url(../images/common_img/arrow_circle01.svg) center center/cover no-repeat;
}
@media (max-width: 1023px) {
  #frontpage .work .work-link .i-arrow {
    display: block;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    margin: 8vw auto 0;
  }
}
@media (min-width: 1024px) {
  #frontpage .work .work-link .i-arrow {
    position: absolute;
    top: 50%;
    right: 5.3333333333vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 50px;
    width: 60px;
    height: 60px;
  }
}
#frontpage .work .work-link .i-arrow:hover {
  opacity: 0.8;
}

#frontpage .work .bg {
  background: url(../images/top/work_bg.jpg) center center/cover no-repeat;
  width: 100%;
  height: 66.6666666667vw;
  margin-top: 21.3333333333vw;
  margin-bottom: 16vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .work .bg {
    height: 980px;
    margin-top: 235px;
    margin-bottom: 234px;
  }
}
/* challenge */
#frontpage .work.challenge .list .head {
  text-align: center;
  line-height: 1.57;
  width: 100%;
  font-weight: 500;
}
@media (max-width: 1023px) {
  #frontpage .work.challenge .list .head {
    font-size: 4.8vw;
  }
}

#frontpage .work.challenge {
  margin-bottom: 40vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .work.challenge {
    margin-top: 335px;
    margin-bottom: 217px;
  }
  #frontpage .work.challenge .lgtitle-en {
    margin-left: -100px;
  }
  #frontpage .work.challenge .sec-title {
    margin-top: 20px;
  }
  #frontpage .work.challenge .list {
    margin: 16px 0 0 auto;
  }
  #frontpage .work.challenge .list .txt {
    margin-top: 25px;
  }
  #frontpage .work.challenge .list li:nth-of-type(3) {
    margin-top: -115px;
  }
  #frontpage .work.challenge .list li:nth-of-type(4) {
    margin-top: 105px;
  }
}
/* policy */
#frontpage .policy {
  position: relative;
  padding-bottom: 53.3333333333vw;
}
@media (min-width: 1024px) {
  #frontpage .policy {
    padding-bottom: 805px;
  }
}
#frontpage .policy .container {
  text-align: center;
  margin-bottom: 21.3333333333vw;
}
@media (min-width: 1024px) {
  #frontpage .policy .container {
    margin-bottom: 120px;
  }
}
#frontpage .policy .lgtitle-en {
  position: absolute;
}
@media (min-width: 1024px) {
  #frontpage .policy .lgtitle-en {
    left: -24px;
    top: 260px;
  }
}
@media (min-width: 1024px) {
  #frontpage .policy .sec-title {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  #frontpage .policy .bg01 {
    background: url(../images/top/policy_img02.jpg) center top/cover no-repeat;
    width: 30%;
    height: 580px;
    position: absolute;
    top: 0;
    left: 0;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
  }
}
#frontpage .policy .bg02 {
  background: url(../images/top/message_img01.jpg) center top/cover no-repeat;
  position: absolute;
  width: 82.1333333333vw;
  height: 60.2666666667vw;
  position: absolute;
  top: 0;
  left: 0;
  border-top-right-radius: 16vw;
  border-bottom-right-radius: 16vw;
}
@media (min-width: 1024px) {
  #frontpage .policy .bg02 {
    margin-right: 100px;
    width: 60%;
    height: 880px;
    top: 0;
    right: 0;
    left: unset;
    border-radius: 250px;
  }
}
#frontpage .policy .bg02.d-active {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/* information */
#frontpage .information {
  padding-bottom: 16vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .information {
    padding-bottom: 165px;
  }
}
#frontpage .information .titlebox {
  margin-bottom: 8vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .titlebox {
    position: absolute;
    top: -70px;
    left: 50px;
    margin-bottom: 0;
  }
}
#frontpage .information .title-en {
  line-height: 1.2;
  margin-top: -7.4666666667vw;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .title-en {
    margin-top: -72px;
  }
}
#frontpage .information .box {
  background-color: #fff;
  border-radius: 16vw;
  width: 100%;
  padding: 5.3333333333vw;
  margin: 0 0 0 auto;
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .box {
    border-radius: 250px;
    width: 1200px;
    padding: 50px 100px 100px 100px;
    right: -50px;
  }
}
#frontpage .information .list {
  margin-bottom: 2.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .list {
    margin-bottom: 10px;
  }
}
#frontpage .information .list article + article {
  border-top: 1px solid #d8e3e6;
}

#frontpage .information .list article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 5.3333333333vw;
  padding-bottom: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .list article a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #frontpage .information .list article a:hover {
    opacity: 0.7;
  }
}
#frontpage .information .list img {
  border-radius: 10.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .list img {
    border-radius: 110px;
  }
}
#frontpage .information .list .txtarea {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .list .txtarea {
    width: auto;
    margin-left: 50px;
  }
}
#frontpage .information .list .t-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .list .t-top {
    margin-top: 55px;
  }
}
#frontpage .information .list .date {
  color: #7db6be;
  line-height: 5.3333333333vw;
  padding-right: 2.6666666667vw;
  border-right: 1px solid #7db6be;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .list .date {
    line-height: 20px;
    padding-right: 12px;
  }
}
#frontpage .information .list .cat {
  color: #7db6be;
  line-height: 5.3333333333vw;
  padding-left: 2.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .list .cat {
    line-height: 20px;
    padding-left: 12px;
  }
}
#frontpage .information .list .title {
  font-size: 4.8vw;
  font-weight: 600;
  margin-top: 4vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .list .title {
    font-size: 2rem;
    margin-top: 14px;
  }
}
#frontpage .information .list .txt {
  font-size: 4vw;
  color: #8e9197;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 3.2vw;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .list .txt {
    font-size: 1.5rem;
    margin-top: 10px;
  }
}
#frontpage .information .box .btn01 {
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  #frontpage .information .box .btn01 {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
}
/* ========== index CTA(cta-contact) ========== */
.cta-contact {
  position: relative;
  overflow: hidden;
}

#frontpage .cta-contact {
  margin-bottom: 13.3333333333vw;
}

@media screen and (min-width: 1024px) {
  .cta-contact {
    padding-top: 100px;
  }
  #frontpage .cta-contact {
    margin-bottom: 200px;
  }
}
.cta-contact::before {
  content: "";
  display: block;
  background-color: #8f1111;
  position: absolute;
  width: 100%;
  height: 130.6666666667vw;
  bottom: 0;
}

@media screen and (min-width: 1024px) {
  .cta-contact::before {
    height: 550px;
  }
}
.cta-contact .lgtitle-en {
  position: absolute;
  bottom: -3.2vw;
  left: 50%;
  color: #790202;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 1024px) {
  .cta-contact .lgtitle-en {
    bottom: -30px;
  }
}
.cta-contact .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 20.5333333333vw;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 50px;
  }
}
.cta-contact .box .desc {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .desc {
    width: 190px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    display: none;        
  }
}
@media screen and (min-width: 1360px) {
	.cta-contact .box .desc {
		width: 290px;
	}
}
@media screen and (min-width: 1500px) {
  .cta-contact .box .desc {
    display: block;
    position: relative;
    width: 342px;
  }
}
.cta-contact .box .desc.pc-small {
  display: none;
}
.cta-contact .box .desc .sec-title {
  line-height: 1.7;
  color: #fff;
  padding-top: 8vw;
}
@media screen and (min-width: 1024px) {
  .cta-contact .box .desc .sec-title {
    font-size: 3.0rem;
    padding-top: 100px;
  }
}
@media screen and (min-width:1440px) {
	.cta-contact .box .desc .sec-title {
		font-size: 4.0rem;
	}
}

.cta-contact .box .desc .txt {
  color: #fff;
  padding-top: 2.6666666667vw;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .desc .txt {
    padding-top: 20px;
  }
  .cta-contact .box .desc.pc-small .txt {
    padding-top: 0;
  }
}
.cta-contact .box .link-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 106.6666666667vw;
  padding-left: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .link-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 500px;
    top: -100px;
    padding-left: 70px;
  }
}
@media screen and (min-width: 1750px) {
  .cta-contact .box .link-area {
    padding-left: 178px;
  }
}
.cta-contact .box .link-area::before {
  content: "";
  display: block;
  background-color: #043460;
  border-top-left-radius: 26.6666666667vw;
  border-bottom-left-radius: 26.6666666667vw;
  position: absolute;
  top: 0;
  left: 0;
  width: 106.6666666667vw;
  height: 106.6666666667vw;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .link-area::before {
    border-top-left-radius: 250px;
    border-bottom-left-radius: 250px;
    width: 2000px;
    height: 500px;
  }
}
.cta-contact .box .link-area .tel {
  position: relative;
  border-bottom: 1px solid #002445;
  padding: 9.3333333333vw 0 6.6666666667vw 0;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .link-area .tel {
    padding: 14px 20px 22px 0;
    width: 430px;
    border-right: 1px solid #002445;
    border-bottom: none;
  }
}
@media screen and (min-width:1440px) {
	.cta-contact .box .link-area .tel {
		width: 470px;
	}
}
@media screen and (min-width:1750px) {
	.cta-contact .box .link-area .tel {
		padding: 14px 65px 22px 0;
		width: 563px;
	}
}

.cta-contact .box .link-area .tel .head {
  font-size: 5.6vw;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .link-area .tel .head {
    font-size: 3rem;
  }
}
.cta-contact .box .link-area .tel .en {
  font-size: 10.1333333333vw;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin-top: 10px;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .link-area .tel .en {
		font-size: 5.6rem;
		margin-top: 30px;
  }
}
@media screen and (min-width:1440px) {
	.cta-contact .box .link-area .tel .en {
		font-size: 6.6rem;
		margin-top: 10px;
	}
}
@media screen and (min-width: 1750px) {
  .cta-contact .box .link-area .tel .en {
    font-size: 7.6rem;
  }
}
.cta-contact .box .link-area .tel .time {
  font-size: 2.9333333333vw;
  display: block;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #002445;
  padding: 0 2.6666666667vw;
  margin-top: 2.6666666667vw;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .link-area .tel .time {
    font-size: 1.5rem;
    padding: 0;
    margin-top: 10px;
  }
}
@media screen and (min-width:1440px) {
	.cta-contact .box .link-area .tel .time {
		font-size: 1.8rem;
	}
}

.cta-contact .box .link-area .mail {
  position: relative;
  padding-top: 4vw;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .link-area .mail {
    padding-top: 0;
    padding-left: 20px;
  }
}
@media screen and (min-width: 1750px) {
  .cta-contact .box .link-area .mail {
    padding-left: 60px;
  }
}
.cta-contact .box .link-area .mail .head {
  font-size: 5.6vw;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .link-area .mail .head {
    font-size: 3rem;
  }
}
.cta-contact .box .link-area .mail .btn01 {
  margin-top: 2.6666666667vw;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .link-area .mail .btn01 {
    width: 500px;
    margin-top: 20px;
  }
}
.cta-contact .box .link-area .mail .txt {
  font-size: 3.2vw;
  color: #fff;
  text-align: center;
  margin-top: 2.6666666667vw;
}

@media screen and (min-width: 1024px) {
  .cta-contact .box .link-area .mail .txt {
    font-size: 1.5rem;
    margin-top: 5px;
  }
}
/* ========== index CONTACT(#contact) ========== */
#contact {
  background-color: #f1f6f6;
}

#contact .contact-form .inner {
  position: relative;
  padding-bottom: 5.3333333333vw;
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .inner {
    padding-bottom: 200px;
    max-width: 1400px;
    width: auto;
    margin: 0 auto;
  }
}
#contact .contact-form .step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4.8vw;
  border-radius: 16vw;
  background-color: #dfeaeb;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .step {
    margin-bottom: 100px;
    border-radius: 60px;
  }
}
#contact .contact-form .step li {
  position: relative;
  padding-top: 2.6666666667vw;
  padding-bottom: 2.6666666667vw;
  width: 33.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .step li {
    padding-top: 20px;
    padding-bottom: 27px;
    width: 33.3%;
  }
}
#contact .contact-form .step li.is-active {
  background-color: #7db6be;
  border-radius: 16vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .step li.is-active {
    border-radius: 60px;
  }
}
#contact .contact-form .step li p {
  text-align: center;
  color: #141517;
  font-weight: 400;
}

#contact .contact-form .step li.is-active p {
  color: #fff;
}

#contact .contact-form .step li p:nth-of-type(1) {
  display: inline-block;
  font-size: 4vw;
  line-height: 1.2;
  color: #7db6be;
}

#contact .contact-form .step li.is-active p:nth-of-type(1) {
  color: #fff;
}

#contact .contact-form .step li p:nth-of-type(1) .num {
  display: inline-block;
  position: relative;
  font-size: 5.8666666667vw;
  padding-left: 0.5333333333vw;
  top: 0.2666666667vw;
}

#contact .contact-form .step li p:nth-of-type(2) {
  font-size: 3.7333333333vw;
  letter-spacing: 0.05rem;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .step li p:nth-of-type(1) {
    font-size: 1.8rem;
  }
  #contact .contact-form .step li p:nth-of-type(1) .num {
    font-size: 3.4rem;
    padding-left: 5px;
    top: 5px;
  }
  #contact .contact-form .step li p:nth-of-type(2) {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
#contact .contact-form .contact-main .main-wrap h2 {
  font-size: 5.0666666667vw;
  font-weight: 400;
  padding-bottom: 4vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-main .main-wrap h2 {
    font-size: 2.8rem;
    padding-bottom: 10px;
  }
}
#contact .contact-form li {
  list-style: none;
}

#contact .contact-form .contact-main .lead {
  font-size: 4vw;
  margin-bottom: 5.3333333333vw;
  color: #141517;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-main .lead {
    font-size: 1.8rem;
    text-align: center;
    padding-left: 0;
    margin-bottom: 25px;
  }
}
#contact .contact-form .contact-main .sublead {
  position: relative;
  font-size: 4vw;
  margin-bottom: 5.3333333333vw;
  color: #141517;
}

#contact .contact-form .contact-main .sublead .icon {
  display: inline-block;
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  background-color: #7db6be;
  border-radius: 50%;
  margin-right: 1.0666666667vw;
  position: relative;
  top: -0.2666666667vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-main .sublead {
    font-size: 1.8rem;
    text-align: center;
    padding-left: 0;
    margin-bottom: 90px;
  }
  #contact .contact-form .contact-main .sublead .icon {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    top: -1px;
  }
}
#contact .contact-form .contact-sub {
  background-color: #f1f5f6;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 10px;
}

#contact .contact-form .contact-sub p {
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-sub {
    border-radius: 20px;
    padding: 50px;
  }
  #contact .contact-form .contact-sub p {
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 1px;
  }
}
#contact .contact-form .form-bg {
  background-color: #fff;
  border-radius: 8vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .form-bg {
    border-radius: 60px;
  }
}
#contact .contact-form .form-table {
  display: block;
  width: 100%;
  border-collapse: collapse;
  padding: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .form-table {
    padding: 90px 100px 0;
  }
}
#contact .contact-form .form-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#contact .contact-form .form-table tr.no-bottom {
  border-bottom: none;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .form-table tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#contact .contact-form .form-table th,
#contact .contact-form .form-table td {
  vertical-align: top;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contact .contact-form .form-table th {
  position: relative;
  display: block;
  color: #141517;
  font-size: 4.2666666667vw;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 4.8vw 0 1.3333333333vw 1.3333333333vw;
  border-bottom: 2px solid #7db6be;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .form-table th {
    font-size: 1.6rem;
    display: table-cell;
    padding: 35px 20px 30px 46px;
    width: 300px;
  }
  #contact .contact-form .form-table tr.no-bottom th,
  #contact .contact-form .form-table tr.no-bottom th.must,
  #contact .contact-form .form-table tr.no-bottom td,
  #contact .contact-form .form-table tr.no-bottom td.must {
    padding-bottom: 0;
  }
}
#contact .contact-form .form-table td {
  display: block;
  border-bottom: none;
  padding: 4vw 1.3333333333vw;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .form-table td {
    display: table-cell;
    padding: 20px 50px;
    width: calc(100% - 300px);
  }
}
#contact .contact-form .form-table td > p {
  position: relative;
  font-size: 4vw;
  font-weight: 400;
  letter-spacing: 0;
  color: #464646;
  padding-top: 8px;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .form-table td > p {
    font-size: 1.6rem;
    font-weight: 500;
    padding-top: 16px;
  }
}
#contact .contact-form .form-table th.must::before {
  content: "";
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  background-color: #7db6be;
  border-radius: 50%;
  position: absolute;
  top: 7.7333333333vw;
  left: -3.2vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .form-table th.must::before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 45px;
    left: 8px;
  }
}
#contact .contact-form .form-table th .sub-text,
#contact .contact-form .form-table td .sub-text {
  font-size: 2.9333333333vw;
  font-weight: 500;
  padding-top: 2.6666666667vw;
}

#contact .contact-form .form-table th.must .sub-text {
  margin-left: -11.7333333333vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .form-table th .sub-text,
  #contact .contact-form .form-table td .sub-text,
  #contact .contact-form .form-table th.must .sub-text {
    font-size: 1.2rem;
    padding-top: 8px;
    margin-left: 0;
  }
}
#contact .contact-form .form-table th .sub-text-lg,
#contact .contact-form .form-table td .sub-text-lg {
  font-size: 3.2vw;
  font-weight: 500;
  padding-top: 1.6vw;
}

#contact .contact-form .form-table th.must .sub-text-lg {
  margin-left: -11.7333333333vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .form-table th .sub-text-lg,
  #contact .contact-form .form-table th.must .sub-text-lg,
  #contact .contact-form .form-table td .sub-text-lg {
    font-size: 16px;
    padding-top: 10px;
    margin-left: 0;
  }
}
#contact .contact-form .form-table th .sub-text-lg + .sub-text {
  padding-top: 0.8vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .form-table th .sub-text-lg + .sub-text {
    padding-top: 6px;
  }
}
#contact .contact-form .checkbox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .checkbox {
    gap: 20px 60px;
    margin-top: 12px;
  }
}
#contact .contact-form .checkbox li {
  width: 100%;
}

#contact .contact-form .checkbox.ch-kakunin li {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .checkbox li,
  #contact .contact-form .checkbox.ch-kakunin li {
    width: 310px;
  }
}
#contact .contact-form .checkbox .checkbox-input input {
  display: none;
}

#contact .contact-form .checkbox .checkbox-input .checkbox-text {
  position: relative;
  font-size: 4vw;
  font-weight: 500;
  color: #141517;
  padding: 2.6666666667vw 0 2.6666666667vw 10.1333333333vw;
  line-height: 8vw;
  display: block;
  border-radius: 2.1333333333vw;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

#contact .contact-form .checkbox.ch-kakunin .checkbox-input .checkbox-text {
  padding-left: 6.1333333333vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .checkbox .checkbox-input .checkbox-text {
    font-size: 1.6rem;
    padding: 0 20px 0 52px;
    line-height: 40px;
    border-radius: 10px;
  }
  #contact .contact-form .checkbox.ch-kakunin .checkbox-input .checkbox-text {
    padding-left: 40px;
  }
}
#contact .contact-form .checkbox .checkbox-input .checkbox-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 7.4666666667vw;
  height: 7.4666666667vw;
  background-color: #f1f5f6;
  border: 1px solid #ddd;
  border-radius: 1.6vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact .contact-form .checkbox .checkbox-input.mfp_checked .checkbox-text::before {
  background-color: #7db6be;
  border: 1px solid #7db6be;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .checkbox .checkbox-input .checkbox-text::before {
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 5px;
  }
}
#contact .contact-form .checkbox .checkbox-input.mfp_checked .checkbox-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 46%;
  left: 2.6666666667vw;
  width: 2.4vw;
  height: 3.2vw;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
  border-bottom: 0.5333333333vw solid #fff;
  border-right: 0.5333333333vw solid #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .checkbox .checkbox-input.mfp_checked .checkbox-text::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 10px;
    height: 14px;
    top: 45%;
    left: 15px;
  }
}
#contact .contact-form form#mailformpro .checkbox .checkbox-input {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form form#mailformpro .checkbox .checkbox-input {
    width: auto;
  }
}
#contact .contact-form .radiobox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 2.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .radiobox {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
#contact .contact-form .radiobox li {
  width: calc((100% - 2.6666666667vw) / 2);
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .radiobox li {
    width: auto;
  }
}
#contact .contact-form .radiobox-input input {
  display: none;
}

#contact .contact-form .radiobox-input .radiobox-text {
  position: relative;
  font-size: 4vw;
  font-weight: 500;
  color: #141517;
  line-height: 9.3333333333vw;
  padding: 2.6666666667vw 0 2.6666666667vw 9.3333333333vw;
  display: block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .radiobox-input .radiobox-text {
    font-size: 1.6rem;
    padding: 0 25px 0 42px;
    line-height: 58px;
  }
}
#contact .contact-form .radiobox-input .radiobox-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 8vw;
  height: 8vw;
  background-color: #f1f5f6;
  border: 1px solid #ddd;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#contact .contact-form .radiobox-input.mfp_checked .radiobox-text::before {
  background-color: #7db6be;
  border: 1px solid #7db6be;
}

#contact .contact-form .radiobox-input.mfp_checked .radiobox-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 5.7333333333vw;
  left: 2.4vw;
  width: 3.2vw;
  height: 3.2vw;
  background-color: #fff;
  border-radius: 50%;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .radiobox-input .radiobox-text::before {
    top: 50%;
    left: 0;
    width: 30px;
    height: 30px;
  }
  #contact .contact-form .radiobox-input.mfp_checked .radiobox-text::after {
    top: 24px;
    left: 10px;
    width: 10px;
    height: 10px;
  }
}
#contact .contact-form form#mailformpro .radiobox-input {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form form#mailformpro .radiobox-input {
    width: auto;
  }
}
#contact .contact-form .select-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.6666666667vw 4vw;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .select-flex {
    gap: 20px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
#contact .contact-form .selectbox {
  position: relative;
  width: 48vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .selectbox {
    width: 250px;
  }
}
#contact .contact-form .selectbox:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2vw;
  width: 3.4666666667vw;
  height: 1.6vw;
  background: url(../images/common_img/arrow_down.svg) center center/cover no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .selectbox:after {
    top: 52%;
    right: 20px;
    width: 16px;
    height: 10px;
  }
}
#contact .contact-form .address-wrap {
  position: relative;
  padding-bottom: 0;
}

#contact .contact-form .address-wrap .address-icon {
  position: absolute;
  top: 3.2vw;
  left: 1.0666666667vw;
}

#contact .contact-form .address-wrap .address-input {
  width: 32vw !important;
  margin-left: 6.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .address-wrap {
    padding-bottom: 20px;
  }
  #contact .contact-form .address-wrap .address-icon {
    top: 20px;
    left: -30px;
  }
  #contact .contact-form .address-wrap .address-input {
    width: 180px !important;
    margin-left: 0;
  }
}
#contact .contact-form .selectbox-wrap {
  position: relative;
}

#contact .contact-form .selectbox-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 7.4666666667vw;
  right: 4vw;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: 0.2666666667vw solid #141517;
  border-right: 0.2666666667vw solid #141517;
}

@media screen and (min-width: 1280px) {
  #contact .contact-form .selectbox-wrap::after {
    border-bottom: 2px solid #141517;
    border-right: 2px solid #141517;
    width: 15px;
    height: 15px;
    top: 37px;
    right: 76px;
  }
}
#contact .contact-form textarea,
#contact .contact-form input[type=text],
#contact .contact-form input[type=tel],
#contact .contact-form input[type=email],
#contact .contact-form select {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 4vw;
  color: #141517;
  border: none;
  border-radius: 0;
  background: #f1f5f6;
  width: 100% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px #ddd solid;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form input[type=text],
  #contact .contact-form input[type=tel],
  #contact .contact-form input[type=email],
  #contact .contact-form select {
    font-size: 1.6rem;
  }
  #contact .contact-form textarea {
    font-size: 1.6rem;
  }
}
#contact .contact-form input[type=text],
#contact .contact-form input[type=tel],
#contact .contact-form input[type=email],
#contact .contact-form select {
  line-height: 12vw;
  height: 12vw;
  padding: 0 4vw;
  background-color: #f1f5f6;
  border-radius: 2.1333333333vw;
  border: 1px solid #c8cccd;
  margin-bottom: 2.1333333333vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form input[type=text],
  #contact .contact-form input[type=tel],
  #contact .contact-form input[type=email],
  #contact .contact-form select {
    line-height: 60px;
    height: 60px;
    padding: 0 20px;
    margin-bottom: 0;
    border-radius: 5px;
  }
}
#contact .contact-form input[type=text] + p,
#contact .contact-form input[type=tel] + p,
#contact .contact-form input[type=email] + p {
  height: 68px;
  padding-top: 16px;
}

#contact .contact-form textarea {
  height: 32vw !important;
  padding: 12px;
  background-color: #f1f5f6;
  border: 1px solid #ddd;
  border-radius: 2.1333333333vw;
}

#contact .contact-form textarea.textarea-small {
  height: 80px !important;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form textarea {
    height: 260px !important;
    padding: 15px 20px;
    border-radius: 5px;
  }
  #contact .contact-form textarea.textarea-small {
    height: 120px !important;
  }
}
#contact .contact-form textarea::-webkit-input-placeholder, #contact .contact-form input[type=text]::-webkit-input-placeholder, #contact .contact-form input[type=tel]::-webkit-input-placeholder, #contact .contact-form input[type=email]::-webkit-input-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(33, 59, 76, 0.4);
}
#contact .contact-form textarea::-moz-placeholder, #contact .contact-form input[type=text]::-moz-placeholder, #contact .contact-form input[type=tel]::-moz-placeholder, #contact .contact-form input[type=email]::-moz-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(33, 59, 76, 0.4);
}
#contact .contact-form textarea:-ms-input-placeholder, #contact .contact-form input[type=text]:-ms-input-placeholder, #contact .contact-form input[type=tel]:-ms-input-placeholder, #contact .contact-form input[type=email]:-ms-input-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(33, 59, 76, 0.4);
}
#contact .contact-form textarea::-ms-input-placeholder, #contact .contact-form input[type=text]::-ms-input-placeholder, #contact .contact-form input[type=tel]::-ms-input-placeholder, #contact .contact-form input[type=email]::-ms-input-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(33, 59, 76, 0.4);
}
#contact .contact-form textarea::placeholder,
#contact .contact-form input[type=text]::placeholder,
#contact .contact-form input[type=tel]::placeholder,
#contact .contact-form input[type=email]::placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(33, 59, 76, 0.4);
}

@media screen and (min-width: 1024px) {
  #contact .contact-form textarea::-webkit-input-placeholder, #contact .contact-form input[type=text]::-webkit-input-placeholder, #contact .contact-form input[type=tel]::-webkit-input-placeholder, #contact .contact-form input[type=email]::-webkit-input-placeholder {
    font-size: 1.6rem;
  }
  #contact .contact-form textarea::-moz-placeholder, #contact .contact-form input[type=text]::-moz-placeholder, #contact .contact-form input[type=tel]::-moz-placeholder, #contact .contact-form input[type=email]::-moz-placeholder {
    font-size: 1.6rem;
  }
  #contact .contact-form textarea:-ms-input-placeholder, #contact .contact-form input[type=text]:-ms-input-placeholder, #contact .contact-form input[type=tel]:-ms-input-placeholder, #contact .contact-form input[type=email]:-ms-input-placeholder {
    font-size: 1.6rem;
  }
  #contact .contact-form textarea::-ms-input-placeholder, #contact .contact-form input[type=text]::-ms-input-placeholder, #contact .contact-form input[type=tel]::-ms-input-placeholder, #contact .contact-form input[type=email]::-ms-input-placeholder {
    font-size: 1.6rem;
  }
  #contact .contact-form textarea::placeholder,
  #contact .contact-form input[type=text]::placeholder,
  #contact .contact-form input[type=tel]::placeholder,
  #contact .contact-form input[type=email]::placeholder {
    font-size: 1.6rem;
  }
}
#contact .contact-form div.mfp_err {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.4666666667vw;
  color: #d54d85;
  position: relative;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form div.mfp_err {
    font-size: 1.6rem;
    line-height: 2;
    top: 10px;
  }
}
#contact .contact-form .contact-box {
  position: relative;
  padding: 8vw 5.3333333333vw 0;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-box {
    padding: 90px 150px 0;
    margin: 0 auto;
  }
}
#contact .contact-form .contact-box h2 {
  font-size: 5.6vw;
  font-weight: bold;
  color: #141517;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-box h2 {
    font-size: 2rem;
  }
}
#contact .contact-form .contact-box p {
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.1rem;
  color: #141517;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-box p {
    font-size: 1.8rem;
    padding-top: 10px;
  }
}
#contact .contact-form .contact-box + .contact-box {
  margin-top: 6.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-box + .contact-box {
    margin-top: 40px;
  }
}
#contact .contact-form .contact-box .agree-area {
  background-color: #f1f5f6;
  border-radius: 16vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 16vw;
  margin-top: 8vw;
}

#contact .contact-form .contact-box .agree-area .checkbox-text::before {
  left: 3.4666666667vw;
}

#contact .contact-form .checkbox.agree-area .checkbox-input.mfp_checked .checkbox-text::after {
  left: 5.8666666667vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-box .agree-area {
    border-radius: 40px;
    height: 80px;
    margin-top: 45px;
  }
  #contact .contact-form .contact-box .agree-area .checkbox-text::before {
    left: 0;
  }
  #contact .contact-form .checkbox.agree-area .checkbox-input.mfp_checked .checkbox-text::after {
    left: 15px;
  }
}
#contact .contact-form .checkbox.agree-area .checkbox-input .checkbox-text::before {
  background-color: #fff;
}

#contact .contact-form .checkbox.agree-area .checkbox-input.mfp_checked .checkbox-text::before {
  background-color: #7db6be;
}

#contact .contact-form .contact-box .agree-area + .mfp_err {
  text-align: center;
}

#contact .contact-form .checkbox.agree-area .checkbox-input .checkbox-text {
  font-size: 3.4666666667vw;
  padding: 2.6666666667vw 0 2.6666666667vw 12.5333333333vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .checkbox.agree-area .checkbox-input .checkbox-text {
    font-size: 1.6rem;
    padding: 0 20px 0 52px;
  }
}
#contact .contact-form .contact-submit {
  padding-bottom: 8vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-submit {
    padding-bottom: 150px;
  }
}
#contact .contact-form .contact-submit button {
  position: relative;
  display: block;
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.1rem;
  color: #fff;
  text-align: center;
  background-color: #093e6d;
  border-radius: 16vw;
  padding-top: 4vw;
  padding-bottom: 4vw;
  margin: 10.6666666667vw auto 0;
  white-space: nowrap;
  width: 78.6666666667vw;
  overflow: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-submit button {
    font-size: 1.8rem;
    border-radius: 40px;
    padding-top: 27px;
    padding-bottom: 27px;
    margin: 80px auto 0;
    width: 600px;
  }
  #contact .contact-form .contact-submit button:hover {
    color: #093e6d;
    background-color: #fff;
  }
}
#contact .contact-form .contact-submit button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2.1333333333vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  background: url(../images/common_img/arrow_circle02.svg) center center/cover no-repeat;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-submit button::before {
    right: 10px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1024px) {
  #contact .contact-form .contact-submit button::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e8f0f1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
  }
  #contact .contact-form .contact-submit button:hover::after {
    -webkit-transform: translateY(-50%) scale(22);
            transform: translateY(-50%) scale(22);
  }
}
#contact .contact-form #mfp_hidden {
  display: none;
}

/* CONTACT：確認 */
#contact .contact-form #mfp_phase_confirm {
  display: none;
  position: relative;
  padding-bottom: 26.6666666667vw;
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm {
    border-radius: 30px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm #mfp_phase_confirm_inner {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
  }
}
#contact .contact-form #mfp_phase_confirm #mfp_phase_confirm_inner > h4 {
  display: none;
  font-size: 4.2666666667vw;
  padding-bottom: 1.3333333333vw;
  padding-left: 2.6666666667vw;
  letter-spacing: 0.2rem;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm #mfp_phase_confirm_inner > h4 {
    font-size: 28px;
    padding-bottom: 60px;
    padding-left: 0;
    letter-spacing: 4px;
  }
}
#contact .contact-form #mfp_phase_confirm #mfp_phase_confirm_inner .confirm_area {
  background-color: #f5f2f0;
  border-radius: 20px;
  padding: 28px 20px 52px 20px;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm #mfp_phase_confirm_inner .confirm_area {
    padding: 60px 50px;
  }
}
#contact .contact-form #mfp_phase_confirm table#mfp_confirm_table {
  position: relative;
  display: block;
  overflow: visible !important;
  width: 100%;
  padding: 10.6666666667vw 5.3333333333vw 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm table#mfp_confirm_table {
    padding: 90px 100px 0;
  }
}
#contact .contact-form #mfp_phase_confirm table#mfp_confirm_table::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 58.6666666667vw);
  position: absolute;
  left: 50%;
  top: 0;
  background-color: #fff;
  border-radius: 60px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm table#mfp_confirm_table::before {
    height: calc(100% + 420px);
  }
}
#contact .contact-form #mfp_phase_confirm table#mfp_confirm_table tbody {
  display: block;
  width: 100%;
}

#contact .contact-form #mfp_phase_confirm table#mfp_confirm_table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#contact .contact-form #mfp_phase_confirm table#mfp_confirm_table th,
#contact .contact-form #mfp_phase_confirm table#mfp_confirm_table td {
  vertical-align: top;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contact .contact-form #mfp_phase_confirm table#mfp_confirm_table th {
  position: relative;
  display: block;
  font-size: 4vw;
  font-weight: 500;
  color: #141517;
  padding-top: 3.2vw;
  padding-bottom: 4.2666666667vw;
  width: 100%;
  border-bottom: 2px solid #7db6be;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm table#mfp_confirm_table th {
    font-size: 1.6rem;
    display: table-cell;
    padding: 34px 22px 34px 50px;
    width: 300px;
  }
}
#contact .contact-form #mfp_phase_confirm table#mfp_confirm_table th::before {
  content: "";
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  background-color: #7db6be;
  border-radius: 50%;
  position: absolute;
  top: 6vw;
  left: -3.2vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm table#mfp_confirm_table th::before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 44px;
    left: 10px;
  }
}
#contact .contact-form #mfp_phase_confirm table#mfp_confirm_table td {
  position: relative;
  display: block;
  font-size: 4vw;
  color: #141517;
  border-bottom: none;
  padding-top: 3.2vw;
  padding-bottom: 4.2666666667vw;
  width: 100%;
  border-bottom: 2px solid #c8cccd;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm table#mfp_confirm_table td {
    display: table-cell;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    padding: 34px 22px 34px 50px;
    width: calc(100% - 300px);
  }
}
#contact .contact-form #mfp_phase_confirm #th_mfp_element_19,
#contact .contact-form #mfp_phase_confirm #td_mfp_element_19 {
  display: none !important;
}

#contact .contact-form #mfp_phase_confirm .mfp_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4vw;
  margin-bottom: 5.3333333333vw;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm .mfp_buttons {
    gap: 30px;
    margin-top: 0;
    margin-bottom: 250px;
  }
}
#contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_send {
  position: relative;
  display: block;
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.1rem;
  color: #fff;
  text-align: center;
  background-color: #093e6d;
  border-radius: 16vw;
  padding-top: 4vw;
  padding-bottom: 4vw;
  margin: 10.6666666667vw auto 0;
  white-space: nowrap;
  width: 78.6666666667vw;
  overflow: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_send {
    font-size: 1.8rem;
    border-radius: 40px;
    padding-top: 27px;
    padding-bottom: 27px;
    margin: 80px auto 0;
    width: 600px;
  }
  #contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_send:hover {
    color: #093e6d;
    background-color: #fff;
  }
}
#contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_send::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2.1333333333vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  background: url(../images/common_img/arrow_circle02.svg) center center/cover no-repeat;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_send::before {
    right: 10px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_send::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e8f0f1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
  }
  #contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_send:hover::after {
    -webkit-transform: translateY(-50%) scale(22);
            transform: translateY(-50%) scale(22);
  }
}
#contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_cancel {
  position: relative;
  display: block;
  font-size: 4vw;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: center;
  background-color: #e8f0f1;
  border-radius: 16vw;
  padding-top: 4vw;
  padding-bottom: 4vw;
  margin: 0 auto;
  white-space: nowrap;
  width: 78.6666666667vw;
  overflow: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_cancel {
    font-size: 1.8rem;
    border-radius: 40px;
    padding-top: 27px;
    padding-bottom: 27px;
    margin: 0 auto;
    width: 600px;
  }
  #contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_cancel:hover {
    /* background-color: #fff; */
    opacity: 0.8;
  }
}
#contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_cancel::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 2.1333333333vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  background: url(../images/common_img/arrow_circle03.svg) center center/cover no-repeat;
}

@media screen and (min-width: 1024px) {
  #contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_cancel::before {
    left: 10px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1024px) {
  /* #contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_cancel::after {
  	content: '';
  	display: block;
  	position: absolute;
  	top: 50%;
  	left: 10px;
  	transform: translateY(-50%);
  	width: 60px;
  	height: 60px;
  	border-radius: 50%;
  	background-color: #fff;
  	transition: all .4s ease;
  	z-index: -1;
  }
  #contact .contact-form #mfp_phase_confirm .mfp_buttons #mfp_button_cancel:hover::after {
  	transform: translateY(-50%) scale(22);
  } */
}
/* CONTACT：完了 */
#contact.contact-comp .contact-form {
  height: calc(100vh - 50.1333333333vw);
}

@media screen and (min-width: 1024px) {
  #contact.contact-comp .contact-form {
    height: auto;
  }
}
#contact.contact-comp .contact-form .thanks-desc h2 {
  font-size: 6.1333333333vw;
  text-align: center;
  padding-top: 8vw;
}

@media screen and (min-width: 1024px) {
  #contact.contact-comp .contact-form .thanks-desc h2 {
    font-size: 4rem;
    padding-top: 0;
  }
}
#contact.contact-comp .contact-form .thanks-desc li {
  list-style: none;
}

#contact.contact-comp .contact-form .thanks-desc p {
  font-size: 4vw;
  padding-top: 4.8vw;
  line-height: 1.8;
}

@media screen and (min-width: 1024px) {
  #contact.contact-comp .contact-form .thanks-desc p {
    font-size: 1.8rem;
    padding-top: 35px;
    text-align: center;
  }
}
#contact.contact-comp .thanks-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 10.6666666667vw;
}

@media screen and (min-width: 1024px) {
  #contact.contact-comp .thanks-btn {
    margin-top: 60px;
  }
}
/* ========== COMMON PARTS ========== */
.posit_r {
  position: relative !important;
}

.posit_a {
  position: absolute !important;
}

.posit_f {
  position: fixed !important;
}

.align_c {
  text-align: center !important;
}

.align_r {
  text-align: right !important;
}

.align_l {
  text-align: left !important;
}

.disp_l {
  float: left !important;
}

.disp_r {
  float: right !important;
}

.va_top {
  vertical-align: top !important;
}

.va_mid {
  vertical-align: middle !important;
}

.va_btm {
  vertical-align: bottom !important;
}

.va_sub {
  vertical-align: sub !important;
}

/* ▼width▼ */
.w4per {
  width: 4%;
}

.w5per {
  width: 5%;
}

.w8per {
  width: 8%;
}

.w10per {
  width: 10%;
}

.w15per {
  width: 15%;
}

.w20per {
  width: 20%;
}

.w22per {
  width: 22%;
}

.w25per {
  width: 25%;
}

.w30per {
  width: 30%;
}

.w35per {
  width: 35%;
}

.w50per {
  width: 50%;
}

.w55per {
  width: 55%;
}

.w56per {
  width: 56%;
}

.w60per {
  width: 60%;
}

.w70per {
  width: 70%;
}

.w75per {
  width: 75%;
}

.w80per {
  width: 80%;
}

.w100per {
  width: 100% !important;
}

/* ▼area▼ */
.mb200 {
  margin-bottom: 200px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb12 {
  margin-bottom: 12px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mlr300 {
  margin-left: 300px !important;
  margin-right: 300px !important;
}

.mlr115 {
  margin-left: 115px !important;
  margin-right: 115px !important;
}

.mlr100 {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

.mlr80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.mlr75 {
  margin-left: 75px !important;
  margin-right: 75px !important;
}

.mlr70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}

.mlr60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

.mlr55 {
  margin-left: 55px !important;
  margin-right: 55px !important;
}

.mlr50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.mlr45 {
  margin-left: 40px !important;
  margin-right: 45px !important;
}

.mlr40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.mlr35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}

.mlr30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.mlr25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.mlr20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mlr15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.mlr10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.mlr5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.mlr-1 {
  margin-left: -1px !important;
  margin-right: -1px !important;
}

.mlr-5 {
  margin-left: -5px !important;
  margin-right: -5px !important;
}

.mlr-10 {
  margin-left: -10px !important;
  margin-right: -10px !important;
}

.mlr-20 {
  margin-left: -20px !important;
  margin-right: -20px !important;
}

.mlr-50 {
  margin-left: -50px !important;
  margin-right: -50px !important;
}

.mlr-100 {
  margin-left: -100px !important;
  margin-right: -100px !important;
}

.mlr_auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr-5 {
  margin-right: -5px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml-5 {
  margin-left: -5px !important;
}

.ml-10 {
  margin-left: -10px !important;
}

.ml-15 {
  margin-left: -15px !important;
}

.ml-20 {
  margin-left: -20px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt3 {
  margin-top: 3px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: -5px !important;
}

.mt-10 {
  margin-top: -10px !important;
}

.mt-20 {
  margin-top: -20px !important;
}

.mt-40 {
  margin-top: -40px !important;
}

.mt-50 {
  margin-top: -50px !important;
}

.mt-60 {
  margin-top: -60px !important;
}

.mt-70 {
  margin-top: -70px !important;
}

.mt-80 {
  margin-top: -80px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb8 {
  padding-bottom: 8px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.p20 {
  padding: 20px !important;
}

.p15 {
  padding: 15px !important;
}

.p10 {
  padding: 10px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt15 {
  padding-top: 20px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.ptb20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.ptb15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.ptb5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.ptb0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.plr25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

/* キーフレーム */
@-webkit-keyframes fadein-anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.98;
  }
}
@keyframes fadein-anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.98;
  }
}
@-webkit-keyframes fadeout-anime {
  0% {
    opacity: 0.98;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeout-anime {
  0% {
    opacity: 0.98;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}