@charset "UTF-8";
/*===
  #common
  ===*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  color: #333;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.5;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.5s ease;
}

a:hover {
  opacity: 0.6;
}

.container {
  width: 1360px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.main {
  padding-top: 100px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .main {
    padding-top: 52px;
  }
}

/* ===============================================
# タイトル
=============================================== */
.sec_ttl {
  text-align: center;
  line-height: 1.2;
}

.sec_ttl .en_ttl {
  font-family: "arial", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.4641vw, 20px);
  letter-spacing: 0.08em;
  color: #49afe5;
  margin-bottom: 15px;
}

.sec_ttl .ttl {
  font-size: clamp(40px, 3.66vw, 50px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #3281c4;
}

@media screen and (max-width: 767px) {
  .sec_ttl .ttl {
    font-size: 32px;
  }
}

.sec_ttl .ttl .f_small {
  font-size: clamp(30px, 2.928vw, 40px);
}

@media screen and (max-width: 767px) {
  .sec_ttl .ttl .f_small {
    font-size: 24px;
  }
}

.sec_ttl .ttl .f_big {
  font-size: clamp(50px, 4.392vw, 60px);
}

@media screen and (max-width: 767px) {
  .sec_ttl .ttl .f_big {
    font-size: 42px;
  }
}

.sec_ttl .ttl .f_color {
  color: #447aa8;
}

/* ===============================================
# ボタン
=============================================== */
.sec_btn a {
  display: inline-block;
  font-size: clamp(18px, 1.5373vw, 21px);
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #fff;
  background-color: #295d89;
  border-radius: 999px;
  padding: 20px 75px 20px 45px;
  transition: all 0.5s ease;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sec_btn a {
    font-size: 18px;
    padding: 15px 60px 15px 40px;
  }
}

.sec_btn a::after {
  position: absolute;
  content: "";
  background: url(../img/btn-arrow.png) center center/cover no-repeat;
  width: 20px;
  height: 20px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.sec_btn a:hover {
  background-color: #49afe5;
}

/* ===============================================
# ヘッダー
=============================================== */
#header {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 52px;
  }
}

#header.change-color {
  background-color: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
}

#header > .container > .inner {
  padding: 20px 0;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  #header > .container > .inner {
    display: block;
    padding-bottom: 8px;
    padding-top: 5px;
  }
}

.header-left {
  margin-right: auto;
}

.header-logo {
  line-height: 1;
  width: clamp(250px, 31.259vw, 427px);
}

@media screen and (max-width: 767px) {
  .header-logo {
    margin-top: 3px;
    max-width: 250px;
  }
}

.header-logo a {
  transition: all 0.3s ease 0s;
  color: #fff;
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .header-logo a {
    font-size: 20px;
  }
}

.header-logo a:hover {
  opacity: 0.6;
}

.header-sub {
  color: #fff;
  font-family: "HiraKaku", "ヒラギノ角ゴ", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 12px;
  line-height: 1.71429;
}

@media screen and (max-width: 767px) {
  .header-sub {
    font-size: 10px;
    text-align: left;
    margin-left: 0;
  }
}

.header-sub span {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .header-sub span {
    font-size: 14px;
  }
}

.header-right {
  margin-left: auto;
}

.header-nav {
  top: 100px;
  left: 0;
  right: 0;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 30px;
  line-height: 30px;
}

.header-nav li {
  margin-right: 40px;
  margin-right: clamp(20px, 2.083vw, 40px);
}

.header-nav li:last-child {
  margin-right: 0;
}

.header-nav li > a {
  color: #224981;
  display: block;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  opacity: 1;
  line-height: 1;
  text-align: center;
  font-size: 16px;
  font-size: clamp(14px, 1.1713vw, 16px);
}

.header-nav li > a:hover {
  opacity: 0.6;
}

/* ===============================================
# ドロワー 
=============================================== */
.drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .drawer {
    display: block;
  }
}

.drawer-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #224981;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 15px;
  text-align: center;
  top: 6px;
  z-index: 41;
}

.drawer-open {
  display: block;
}

.m_checked .drawer-open {
  display: none;
}

.drawer-close {
  display: none;
}

.m_checked .drawer-close {
  display: block;
}

.drawer-content {
  background-color: #49afe5;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: auto;
  padding: 100px 16px 16px;
  position: fixed;
  text-align: left;
  top: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
  z-index: 40;
}

.m_checked .drawer-content {
  opacity: 1;
  visibility: visible;
}

.drawer-nav li a {
  border-bottom: 1px solid white;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 20px 12px 24px 5px;
  text-decoration: none;
}

.fa-times::before {
  color: #fff;
}

.top_back {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_back video {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}

/* iOS/Safari のネイティブUIを非表示 */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* ===============================================
# fv
=============================================== */
.fv {
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
}

.fv_content {
  padding-top: 160px;
  max-width: 600px;
  max-width: clamp(400px, 43.9238vw, 600px);
}

@media screen and (max-width: 767px) {
  .fv_content {
    padding-top: 44px;
  }
}

.fv_content .read {
  font-size: clamp(18px, 1.7569vw, 24px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.458;
  color: #3281c4;
}

@media screen and (max-width: 767px) {
  .fv_content .read {
    font-size: 20px;
  }
}

.fv_content .ttl {
  font-size: clamp(40px, 4.3191vw, 59px);
  font-weight: 600;
  color: #3281c4;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-top: -5px;
}

.fv_content .ttl .f_color {
  color: #295d89;
  font-size: clamp(60px, 5.783vw, 79px);
}

.fv_content .ttl .f_big {
  font-size: clamp(50px, 5.051vw, 69px);
  position: relative;
}

.fv_content .ttl .f_big::after {
  position: absolute;
  content: "";
  background: url(../img/fv-fukidasi.png) center center/cover no-repeat;
  width: 134px;
  height: 111px;
  top: -62px;
  right: -145px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .fv_content .ttl .f_big::after {
    width: 86px;
    height: 77px;
    top: -99px;
    right: -10px;
  }
}

@media screen and (max-width: 767px) {
  .fv_content .ttl .sp-f_size {
    font-size: 34px;
  }
}

.fv_content .content_bottom {
  margin-top: 60px;
  display: flex;
  justify-content: space-around;
}

@media screen and (max-width: 767px) {
  .fv_content .content_bottom {
    padding-top: 280px;
    position: relative;
    z-index: 1;
    flex-direction: column;
  }
}

.fv_content .content_bottom .item {
  width: 30%;
  padding: 60px 10px 20px;
  border-radius: 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .fv_content .content_bottom .item {
    width: 80%;
    padding: 20px 10px;
    margin-left: auto;
    margin-top: 18px;
  }
  .fv_content .content_bottom .item:first-child {
    margin-top: 0;
  }
}

.fv_content .content_bottom .item:nth-child(1) {
  background-color: #49afe5;
}

.fv_content .content_bottom .item:nth-child(1) img {
  border: 3px solid #49afe5;
}

.fv_content .content_bottom .item:nth-child(2) {
  background-color: #3281c4;
}

.fv_content .content_bottom .item:nth-child(2) img {
  border: 3px solid #3281c4;
}

.fv_content .content_bottom .item:nth-child(3) {
  background-color: #295d89;
}

.fv_content .content_bottom .item:nth-child(3) img {
  border: 3px solid #295d89;
}

.fv_content .content_bottom .item picture {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

@media screen and (max-width: 767px) {
  .fv_content .content_bottom .item picture {
    top: 50%;
    left: -18vw;
    transform: translateY(-50%);
  }
}

.fv_content .content_bottom .item picture img {
  width: 90px;
  border-radius: 50%;
}

.fv_content .content_bottom .item .txt {
  text-align: center;
  font-size: clamp(16px, 1.464vw, 20px);
  font-weight: 600;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .fv_content .content_bottom .item .txt {
    font-size: 24px;
  }
}

.fv_slider {
  position: absolute;
  content: "";
  top: 0;
  right: -100px;
  width: clamp(400px, 58.565vw, 1000px);
}

@media screen and (max-width: 767px) {
  .fv_slider {
    top: 240px;
    width: 332px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}

.fv_slider-circle {
  position: relative;
}

.fv_slider-circle::after {
  position: absolute;
  content: "";
  background: url(../img/back-fv-slider.webp) center center/cover no-repeat;
  width: 102%;
  height: 102%;
  top: -5px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .fv_slider-circle::after {
    right: 2px;
    bottom: -10px;
    left: -2px;
  }
}

.fv_slider-circle ul {
  z-index: 1;
}

/* ===============================================
# お悩み
=============================================== */
.worries {
  padding-top: clamp(150px, 25.62vw, 450px);
  padding-bottom: 230px;
  background-color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 767px) {
  .worries {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

.worries_wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .worries_wrapper {
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

.worries_wrapper .item {
  width: 24%;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 20px 20px;
}

@media screen and (max-width: 767px) {
  .worries_wrapper .item {
    width: 48%;
    padding: 15px 10px 10px;
  }
}

.worries_wrapper .item .txt {
  font-size: clamp(16px, 1.317vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #295d89;
  text-align: justify;
  margin-top: 20px;
  line-height: 1.44;
}

@media screen and (max-width: 767px) {
  .worries_wrapper .item .txt {
    margin-top: 10px;
    letter-spacing: 0.03em;
    font-size: 14px;
  }
}

/* ===============================================
# 理由
=============================================== */
.reason {
  background-color: #cce9fa;
  padding: 100px 0 190px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .reason {
    padding: 100px 0;
  }
}

.reason::before {
  position: absolute;
  content: "";
  background: url(../img/back-reason-top.png) center center/cover no-repeat;
  width: 100%;
  height: 5.8565vw;
  top: -5.8565vw;
  left: 50%;
  transform: translateX(-50%);
}

.reason::after {
  position: absolute;
  content: "";
  background: url(../img/back-reason-bottom.png) center center/cover no-repeat;
  width: 100%;
  height: 5.8565vw;
  bottom: -5.8565vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.reason_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(40px, 9.8828vw, 135px);
}

@media screen and (max-width: 767px) {
  .reason_wrapper {
    flex-direction: column-reverse;
    margin-top: 40px;
  }
}

.reason_slider {
  width: 39.06%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .reason_slider {
    width: 100%;
    display: none;
  }
}

.reason_slider .slick-dots {
  position: absolute;
  bottom: unset;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  display: flex !important;
  flex-direction: column;
  align-items: end;
  gap: clamp(50px, 14.6412vw, 200px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.reason_slider .slick-dots li {
  margin: 0;
}

.reason_slider .slick-dots li button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 0;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}

.reason_slider .slick-dots li.slick-active button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  background: #3281c4;
  /* アクティブカラー */
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.reason_slider .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.reason_content {
  width: 53.13%;
}

@media screen and (max-width: 767px) {
  .reason_content {
    width: 100%;
  }
}

.reason_content .item {
  border-bottom: 1px dotted #707070;
  padding: 0 clamp(10px, 9.8828vw, 40px) clamp(20px, 3.2942vw, 45px) clamp(10px, 9.8828vw, 40px);
  margin-bottom: clamp(20px, 3.2942vw, 45px);
}

@media screen and (max-width: 767px) {
  .reason_content .item {
    padding: 0 10px 20px;
    margin-bottom: 20px;
  }
}

.reason_content .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.reason_content .item .ttl {
  color: #1d476a;
  font-size: clamp(18px, 1.61vw, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .reason_content .item .ttl {
    text-align: center;
  }
}

.reason_content .item .txt {
  font-size: clamp(16px, 1.317vw, 18px);
  font-weight: 700;
  color: #295d89;
  margin-top: clamp(15px, 1.464vw, 20px);
  padding-left: clamp(5px, 1.83vw, 25px);
  letter-spacing: 0.05em;
}

/* ===============================================
# サービス
=============================================== */
.service {
  background-color: #3281c4;
  padding-top: 223px;
  padding-bottom: 185px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .service {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.service::after {
  position: absolute;
  content: "";
  background: url(../img/back-service-bottom.png) center center/cover no-repeat;
  width: 100%;
  height: 5.8565vw;
  bottom: -5.8565vw;
  left: 50%;
  transform: translateX(-50%);
}

.service_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .service_wrapper {
    flex-direction: column;
  }
}

.service_content {
  width: 43.75%;
}

@media screen and (max-width: 767px) {
  .service_content {
    width: 100%;
  }
}

.service_content .sec_ttl {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .service_content .sec_ttl {
    text-align: center;
  }
}

.service_content .sec_ttl .en_ttl {
  color: #fff;
}

.service_content .sec_ttl .ttl {
  color: #fff;
}

.service_content .txt {
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.777;
  color: #fff;
  margin-top: 50px;
  padding-left: clamp(0px, 4.3923vw, 60px);
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .service_content .txt {
    margin-top: 30px;
    padding-left: 0;
  }
}

.service_content .btn_wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .service_content .btn_wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.service_content .btn_wrapper .sec_btn a {
  font-size: clamp(16px, 1.3177vw, 18px);
}

.service_content .btn_wrapper .sec_btn a:hover {
  opacity: 1;
}

.service_pic {
  width: 50.51%;
}

@media screen and (max-width: 767px) {
  .service_pic {
    width: 100%;
    margin-top: 30px;
  }
}

/* ===============================================
# 流れ
=============================================== */
.flow {
  padding-top: 198px;
  padding-bottom: 243px;
}

@media screen and (max-width: 767px) {
  .flow {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.flow_slider {
  max-width: 960px;
  margin: 50px auto 0;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 20px 30px;
}

@media screen and (max-width: 767px) {
  .flow_slider {
    padding: 15px 10px 30px;
    margin-top: 30px;
  }
}

.flow_slider .img {
  position: relative;
}

.flow_slider .slick-slide img {
  width: 100%;
  aspect-ratio: 820/320;
  object-fit: cover;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .flow_slider .slick-slide img {
    aspect-ratio: 400/200;
  }
}

.flow_slider .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 15px;
  padding: 0;
  bottom: unset;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .flow_slider .slick-dots {
    gap: 5px;
    top: 40vw;
  }
}

.flow_slider .slick-dots li {
  margin: 0;
  width: 90px;
  height: 90px;
}

@media screen and (max-width: 767px) {
  .flow_slider .slick-dots li {
    width: 50px;
    height: 50px;
  }
}

.flow_slider .slick-dots li button {
  background: #cde5f8;
  border: 5px solid #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  font-size: 0;
  position: relative;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .flow_slider .slick-dots li button {
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
  }
}

.flow_slider .slick-dots li.slick-active button {
  background: #3281c4;
}

.flow_slider .slick-dots li button .number {
  display: block;
  font-size: 32px;
  letter-spacing: 0.03em;
  font-weight: bold;
  color: #295d89;
}

@media screen and (max-width: 767px) {
  .flow_slider .slick-dots li button .number {
    font-size: 24px;
  }
}

.flow_slider .slick-dots li button .text {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3281c4;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .flow_slider .slick-dots li button .text {
    font-size: 14px;
    margin-top: 20px;
  }
}

.flow_slider .slick-dots li.slick-active button .number,
.flow_slider .slick-dots li.slick-active button .text {
  color: #fff;
}

.flow_slider .content {
  padding: 0 80px;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .flow_slider .content {
    padding: 0 10px;
    margin-top: 40px;
  }
}

.flow_slider .content .ttl {
  font-size: 22px;
  font-weight: 700;
  color: #1d476a;
  padding-right: 60px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #707070;
}

@media screen and (max-width: 767px) {
  .flow_slider .content .ttl {
    font-size: 18px;
  }
}

.flow_slider .content .txt {
  font-weight: 700;
  color: #295d89;
  line-height: 1.77;
  margin-top: 10px;
}

.flow_slider .content .txt span {
  font-size: 14px;
}

/* ===============================================
# よくあるご質問
=============================================== */
.faq {
  background-color: #d7eefb;
  padding: 110px 0 130px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 100px 0 100px;
  }
}

.faq::before {
  position: absolute;
  content: "";
  background: url(../img/back-faq-top.png) center center/cover no-repeat;
  width: 100%;
  height: 6.5885vw;
  top: -6.5885vw;
  left: 50%;
  transform: translateX(-50%);
}

.faq::after {
  position: absolute;
  content: "";
  background: url(../img/back-faq-bottom.png) center center/cover no-repeat;
  width: 100%;
  height: 6.5885vw;
  bottom: -6.5885vw;
  left: 50%;
  transform: translateX(-50%);
}

.faq_wrapper {
  max-width: 1200px;
  margin: 30px auto 0;
  background-color: #fff;
  border-radius: 10px;
  padding: clamp(40px, 6.58857vw, 90px) clamp(10px, 7.32vw, 100px) clamp(50px, 8.7847vw, 120px);
}

@media screen and (max-width: 767px) {
  .faq_wrapper {
    padding: 40px 10px 50px;
  }
}

.faq_item {
  border-bottom: 1px dotted #707070;
  margin-bottom: clamp(30px, 3.66vw, 50px);
  padding: 0px clamp(0px, 5.124vw, 70px) clamp(30px, 3.66vw, 50px);
}

@media screen and (max-width: 767px) {
  .faq_item {
    padding: 0 0 30px;
    margin-bottom: 30px;
  }
}

.faq_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq_item dt {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #1d476a;
  padding-left: 50px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .faq_item dt {
    font-size: 16px;
    padding-left: 40px;
  }
}

.faq_item dt::before {
  position: absolute;
  content: "Q";
  font-size: 16px;
  font-weight: 700;
  font-family: "arial", sans-serif;
  color: #fff;
  background-color: #3281c4;
  padding: 5px 9px;
  border-radius: 10px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.faq_item dd {
  font-weight: 700;
  color: #295d89;
  line-height: 1.777;
  margin-top: 25px;
  padding-left: 65px;
}

@media screen and (max-width: 767px) {
  .faq_item dd {
    font-size: 16px;
    padding-left: 0;
    margin-top: 10px;
    line-height: 1.5;
    padding-left: 10px;
  }
}

/* ===============================================
# 代表挨拶
=============================================== */
.message {
  padding-top: 210px;
  padding-bottom: 120px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .message {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.message_wrapper {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .message_wrapper {
    flex-direction: column-reverse;
  }
}

.message_wrapper picture {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .message_wrapper picture {
    width: 70%;
    margin: 40px auto 0;
  }
}

.message_wrapper .message_content {
  width: 50%;
  margin-left: 35px;
}

@media screen and (max-width: 767px) {
  .message_wrapper .message_content {
    width: 100%;
    margin-left: 0;
  }
}

.message_wrapper .message_content .sec_ttl {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .message_wrapper .message_content .sec_ttl {
    text-align: center;
  }
}

.message_wrapper .txt {
  font-weight: bold;
  color: #295d89;
  line-height: 1.77;
  margin-top: 50px;
  padding-left: clamp(30px, 5.1244vw, 70px);
}

@media screen and (max-width: 767px) {
  .message_wrapper .txt {
    margin-top: 30px;
    padding-left: 0;
  }
}

.message_wrapper .name {
  font-size: clamp(24px, 2.7818vw, 38px);
  font-family: "aunt-mildred-mvb", sans-serif;
  letter-spacing: 0.08em;
  color: #295d89;
  text-align: right;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .message_wrapper .name {
    font-size: 24px;
    margin-top: 15px;
  }
}

.message_wrapper .sec_btn {
  margin-top: 50px;
  padding-left: 70px;
}

@media screen and (max-width: 767px) {
  .message_wrapper .sec_btn {
    margin-top: 35px;
    padding-left: 0;
    text-align: center;
  }
}

/* ===============================================
# 対応エリア
=============================================== */
.area {
  padding-top: 80px;
  padding-bottom: 190px;
  background: url(../img/back-area.webp) center center/cover no-repeat;
  position: relative;
}

@media screen and (max-width: 767px) {
  .area {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}

.area::after {
  position: absolute;
  content: "";
  background: url(../img/back-area-top.webp) center center/cover no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.area_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .area_wrapper {
    flex-direction: column;
  }
}

.area_content {
  width: 52%;
}

@media screen and (max-width: 767px) {
  .area_content {
    width: 100%;
  }
}

.area_content picture {
  display: block;
  text-align: center;
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .area_content picture {
    margin-top: 20px;
  }
}

.area_content picture img {
  width: 310px;
}

@media screen and (max-width: 767px) {
  .area_content picture img {
    width: 200px;
  }
}

.area_city {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .area_city {
    flex-direction: column;
  }
}

.area_ttl {
  display: inline-block;
  background-color: #3281c4;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0 100%);
  width: 225px;
}

@media screen and (max-width: 767px) {
  .area_ttl {
    margin-right: auto;
    width: 200px;
    padding-right: 30px;
  }
}

.area_ttl .ttl {
  font-size: 22px;
}

@media screen and (max-width: 767px) {
  .area_ttl .ttl {
    font-size: 18px;
  }
}

.area_ttl .en_ttl {
  font-size: 14px;
  font-family: "arial", sans-serif;
  letter-spacing: 0.08em;
}

.city {
  width: calc(100% - 225px);
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .city {
    width: 100%;
    padding-left: 0;
    margin-left: 10px;
    margin-top: 20px;
  }
}

.city p {
  color: #295d89;
  font-weight: bold;
  line-height: 1.777;
}

.area_map {
  width: 44%;
}

@media screen and (max-width: 767px) {
  .area_map {
    width: 90%;
    margin-top: 30px;
  }
}

/* ===============================================
# footer
=============================================== */
.footer {
  padding-top: 90px;
  padding-bottom: 130px;
  background-color: #3281c4;
  position: relative;
}

.footer::after {
  position: absolute;
  content: "";
  background: url(../img/back-footer-top.png) center center/cover no-repeat;
  width: 100%;
  height: 6.5885vw;
  top: -6.5885vw;
  left: 50%;
  transform: translateX(-50%);
}

.footer_list {
  display: flex;
  justify-content: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .footer_list {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.footer_list li a {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.09em;
  color: #fff;
}

.footer_content {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  border-radius: 10px;
  max-width: 1120px;
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .footer_content {
    flex-direction: column;
    padding: 50px 30px;
  }
}

.footer_content .logo img {
  max-width: 420px;
}

@media screen and (max-width: 767px) {
  .footer_content .logo img {
    width: 100%;
  }
}

.tel_wrapper {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .tel_wrapper {
    margin-top: 20px;
  }
}

.tel_wrapper .tel_img img {
  max-width: 276px;
}

@media screen and (max-width: 767px) {
  .tel_wrapper .tel_img img {
    width: 100%;
  }
}

.tel_wrapper .hour {
  font-weight: bold;
}

.tel_wrapper .hour p {
  font-size: 15px;
}

.tel_wrapper .hour p span {
  font-size: 17px;
  font-family: "arial", sans-serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .contact_btn {
    margin-top: 20px;
  }
}

.contact_btn a {
  display: inline-block;
  text-align: center;
  width: 240px;
  height: 70px;
  line-height: 70px;
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: bold;
  background-color: #295d89;
  border-radius: 999px;
  padding-left: 37px;
  transition: all 0.5s ease;
  position: relative;
}

.contact_btn a::after {
  position: absolute;
  content: "";
  background: url(../img/icon-contact.png) center center/cover no-repeat;
  width: 39px;
  height: 30px;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.contact_btn a:hover {
  background-color: #49afe5;
}

.copy {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.09em;
  color: #fbfbfb;
  margin-top: 55px;
  text-align: center;
}

/* ===============================================
# 下部固定CTA
=============================================== */
.cta {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .cta {
    width: 100%;
  }
}

.cta_wrapper {
  display: flex;
}

.cta_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  height: 77px;
  border-radius: 46px 0 0 0;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .cta_item {
    width: 50%;
    border-radius: 0;
    height: 60px;
  }
}

.cta_item:nth-child(1) {
  background-color: #2872b1;
}

.cta_item:nth-child(2) {
  background-color: #ffb81d;
  margin-left: -35px;
}

@media screen and (max-width: 767px) {
  .cta_item:nth-child(2) {
    margin-left: 0;
  }
}

.cta_item .icon {
  width: 40px;
}

@media screen and (max-width: 767px) {
  .cta_item .icon {
    width: 25px;
  }
}

.cta_item .txt_wrapper {
  margin-left: 24px;
  text-align: center;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .cta_item .txt_wrapper {
    margin-left: 10px;
  }
}

.cta_item .txt_wrapper .top {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .cta_item .txt_wrapper .top {
    font-size: 16px;
  }
}

.cta_item .txt_wrapper .bottom {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.cta_item .txt_wrapper .tel {
  font-size: 24px;
  font-family: "arial", sans-serif;
}

@media screen and (max-width: 767px) {
  .cta_item .txt_wrapper .tel {
    font-size: 18px;
  }
}

/* ===============================================
# 下層ページ
=============================================== */
.mv_common {
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
}

.mv_common::after {
  position: absolute;
  content: "";
  background: url(../img/mv-common-bottom.png) center center/cover no-repeat;
  width: 100%;
  height: 5.8565vw;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.mv_common .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mv_common .wrapper .content {
  margin-left: 90px;
  width: 53.13%;
}

@media screen and (max-width: 767px) {
  .mv_common .wrapper .content {
    margin-left: 0;
    width: 100%;
  }
}

.mv_common .wrapper .circle_img {
  width: 35.16%;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .mv_common .wrapper .circle_img {
    width: 100%;
    margin-right: -80px;
  }
}

.l_sec_ttl {
  display: inline-block;
}

.l_sec_ttl .ttl {
  font-size: clamp(24px, 3.36749vw, 46px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #3281c4;
}

@media screen and (max-width: 767px) {
  .l_sec_ttl .ttl {
    font-size: 24px;
  }
}

.l_sec_ttl .en_ttl {
  font-size: clamp(18px, 1.4641vw, 20px);
  font-weight: 700;
  font-family: "arial", sans-serif;
  letter-spacing: 0.08em;
  color: #49afe5;
  text-align: right;
  margin-right: -40px;
}

@media screen and (max-width: 767px) {
  .l_sec_ttl .en_ttl {
    font-size: 18px;
  }
}

.breadcrumb {
  border-top: 1px dotted #3281c4;
  margin-top: 20px;
  padding-top: 15px;
  text-align: right;
  color: #295d89;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb .home::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 10px;
  color: #005dab;
}

.breadcrumb a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
  color: #295d89;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover {
  opacity: 0.6;
}

.breadcrumb i {
  margin-left: 10px;
  margin-right: 10px;
}

.breadcrumb span {
  margin: 0 2px;
}

.banner {
  padding-top: 180px;
  padding-bottom: 70px;
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .banner {
    padding-top: 100px;
  }
}

.banner::after {
  position: absolute;
  content: "";
  background: url(../img/back-banner-top.png) center center/cover no-repeat;
  width: 100%;
  height: 5.8565vw;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.banner .wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

@media screen and (max-width: 767px) {
  .banner .wrap {
    gap: 15px;
  }
}

.banner .wrap .item {
  max-width: 500px;
}

/* ===============================================
# 作業内容
=============================================== */
.work {
  background-color: #cce9fa;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .work {
    padding-top: 60px;
  }
}

.work .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.work .wrapper .item {
  width: 48.44%;
}

@media screen and (max-width: 767px) {
  .work .wrapper .item {
    width: 100%;
    margin-top: 60px;
  }
  .work .wrapper .item:first-child {
    margin-top: 0;
  }
}

.work .wrapper .item:nth-child(n + 3) {
  margin-top: 60px;
}

.work .wrapper .item:nth-child(1) .head::before {
  position: absolute;
  content: "";
  background: url(../img/icon-work1.png) center center/cover no-repeat;
  width: clamp(76px, 6.73499vw, 92px);
  height: clamp(98px, 8.63836vw, 118px);
  left: 40px;
  top: -23px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .work .wrapper .item:nth-child(1) .head::before {
    left: -26px;
    width: 76px;
    height: 98px;
  }
}

.work .wrapper .item:nth-child(2) .head {
  padding-left: 80px;
}

@media screen and (max-width: 767px) {
  .work .wrapper .item:nth-child(2) .head {
    padding-left: 0;
  }
}

.work .wrapper .item:nth-child(2) .head::before {
  position: absolute;
  content: "";
  background: url(../img/icon-work2.png) center center/cover no-repeat;
  width: clamp(50px, 5.8565vw, 80px);
  height: clamp(74px, 8.5651vw, 117px);
  left: 35px;
  top: -23px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .work .wrapper .item:nth-child(2) .head::before {
    width: 50px;
    height: 74px;
    left: -19px;
    top: 67px;
  }
}

.work .wrapper .item:nth-child(3) .head::before {
  position: absolute;
  content: "";
  background: url(../img/icon-work3.png) center center/cover no-repeat;
  width: 66px;
  height: 106px;
  left: 35px;
  top: -23px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .work .wrapper .item:nth-child(3) .head::before {
    width: 40px;
    height: 65px;
    left: -7px;
    top: 5px;
  }
}

.work .wrapper .item:nth-child(4) .head {
  padding-left: 80px;
}

@media screen and (max-width: 767px) {
  .work .wrapper .item:nth-child(4) .head {
    padding-left: 0;
  }
}

.work .wrapper .item:nth-child(4) .head::before {
  position: absolute;
  content: "";
  background: url(../img/icon-work4.png) center center/cover no-repeat;
  width: 137px;
  height: 97px;
  left: 0px;
  top: 0px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .work .wrapper .item:nth-child(4) .head::before {
    width: 90px;
    height: 65px;
    left: -21px;
    top: 62px;
  }
}

.work .wrapper .item .head {
  background-color: #447aa8;
  width: 90%;
  height: 100px;
  border-radius: 50px 50px 0 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .work .wrapper .item .head {
    height: 80px;
    border-radius: 30px 30px 0 0;
  }
}

.work .wrapper .item .head h2 {
  font-size: clamp(18px, 1.83vw, 25px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .work .wrapper .item .head h2 {
    font-size: 18px;
  }
}

.work .wrapper .item .head h2 span {
  font-size: clamp(16px, 1.3177vw, 18px);
}

@media screen and (max-width: 767px) {
  .work .wrapper .item .head h2 span {
    font-size: 16px;
  }
}

.work .wrapper .item .content {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 50px 60px;
  padding: clamp(20px, 3.66vw, 50px) clamp(15px, 3.66vw, 50px) clamp(30px, 4.3923vw, 60px);
}

@media screen and (max-width: 767px) {
  .work .wrapper .item .content {
    padding: 20px 15px 30px;
  }
}

.work .wrapper .item .content .txt {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2.25;
  color: #295d89;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .work .wrapper .item .content .txt {
    margin-top: 20px;
    line-height: 1.7;
  }
}

/* ===============================================
# 料金について
=============================================== */
.price {
  background-color: #cce9fa;
  padding-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .price {
    padding-top: 60px;
  }
}

.price .content:nth-child(even) {
  margin-top: 110px;
}

@media screen and (max-width: 767px) {
  .price .content:nth-child(even) {
    margin-top: 80px;
  }
}

.price .content:nth-child(even) .wrap {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .price .content:nth-child(even) .wrap {
    flex-direction: column;
  }
}

.price .content .top {
  text-align: center;
}

.price .content .top .en_ttl {
  font-size: 14px;
  font-weight: 700;
  font-family: "arial", sans-serif;
  letter-spacing: 0.08em;
  color: #6885ac;
}

.price .content .top .ttl {
  display: inline-block;
  width: 420px;
  font-size: clamp(24px, 2.3426vw, 32px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #224981;
  background-color: #fff;
  border-radius: 45px;
  padding: 5px 10px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .price .content .top .ttl {
    width: 100%;
    font-size: 24px;
  }
}

.price .content .top .read {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #295d89;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .price .content .top .read {
    font-size: 16px;
  }
}

.price .content .wrap {
  margin-top: 45px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .price .content .wrap {
    margin-top: 30px;
    flex-direction: column;
  }
}

.price .content .wrap picture {
  display: block;
  width: 39.06%;
}

@media screen and (max-width: 767px) {
  .price .content .wrap picture {
    width: 100%;
  }
}

.price .content .wrap .list {
  margin: 0 50px;
  width: 53.13%;
}

@media screen and (max-width: 767px) {
  .price .content .wrap .list {
    width: 100%;
    margin: 20px 0 0;
  }
}

.price .content .wrap .list dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dotted #707070;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .price .content .wrap .list dl {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.price .content .wrap .list dl:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.price .content .wrap .list dl dt {
  font-weight: 700;
  color: #295d89;
}

.price .content .wrap .list dl dd {
  font-size: 22px;
  font-weight: 700;
  color: #1d476a;
}

.price .content .wrap .list .txt {
  font-weight: 700;
  text-align: right;
  color: #295d89;
  margin-top: 30px;
}

.price .read_txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: #295d89;
  background-color: rgba(255, 255, 255, 0.7);
  margin-top: 70px;
  padding: 35px 85px 30px;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .price .read_txt {
    padding: 30px 15px;
    margin-top: 40px;
  }
}

/* ===============================================
# 事業概要
=============================================== */
.company {
  background-color: #cce9fa;
}

@media screen and (max-width: 767px) {
  .company {
    padding-top: 60px;
  }
}

.company_message .head {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #447aa8;
  width: 420px;
  height: 100px;
  border-radius: 60px 60px 0 0;
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .company_message .head {
    width: 90%;
    height: 50px;
    margin: 0 auto;
    border-radius: 40px 40px 0 0;
  }
}

.company_message .head .ttl {
  font-size: clamp(20px, 2.489vw, 34px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .company_message .head .ttl {
    font-size: 20px;
  }
}

.company_message .wrap {
  background-color: #fff;
  border-radius: 10px;
  padding: clamp(30px, 3.66vw, 50px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .company_message .wrap {
    padding: 30px 15px;
    flex-direction: column;
  }
}

.company_message .wrap picture {
  display: block;
  width: 44.92%;
}

@media screen and (max-width: 767px) {
  .company_message .wrap picture {
    width: 100%;
  }
}

.company_message .wrap .content {
  width: 49.15%;
}

@media screen and (max-width: 767px) {
  .company_message .wrap .content {
    width: 100%;
    margin-top: 20px;
  }
}

.company_message .wrap .content .txt {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2.25;
  color: #295d89;
}

@media screen and (max-width: 767px) {
  .company_message .wrap .content .txt {
    font-size: 14px;
    line-height: 1.7;
  }
}

.company_message .wrap .content .name {
  font-size: clamp(24px, 2.7818vw, 38px);
  font-family: "aunt-mildred-mvb", sans-serif;
  letter-spacing: 0.08em;
  color: #295d89;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .company_message .wrap .content .name {
    font-size: 24px;
    margin-top: 15px;
  }
}

.info {
  background-color: #cce9fa;
  padding-top: 135px;
  padding-bottom: 125px;
}

@media screen and (max-width: 767px) {
  .info {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.info .wrap {
  margin-top: 75px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .info .wrap {
    margin-top: 40px;
    flex-direction: column;
  }
}

.info .wrap .item {
  width: 48.44%;
}

@media screen and (max-width: 767px) {
  .info .wrap .item {
    width: 100%;
  }
}

.info .wrap .item dl {
  border-bottom: 1px dotted #707070;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(15px, 3.294vw, 45px) 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .info .wrap .item dl {
    flex-direction: column;
    padding: 0 15px 20px;
    margin-bottom: 20px;
  }
}

.info .wrap .item dl:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .info .wrap .item dl:last-child {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dotted #707070;
  }
}

.info .wrap .item dl dt {
  font-weight: 700;
  color: #295d89;
}

@media screen and (max-width: 767px) {
  .info .wrap .item dl dt {
    width: 100%;
  }
}

.info .wrap .item dl dd {
  font-size: clamp(18px, 1.61vw, 22px);
  font-weight: 700;
  color: #1d476a;
}

@media screen and (max-width: 767px) {
  .info .wrap .item dl dd {
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
    padding-left: 10px;
  }
}

/* ===============================================
# お問い合わせ
=============================================== */
.contact {
  padding-bottom: 150px;
  background-color: #cce9fa;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.contact-box {
  margin-top: clamp(40px, 5.124vw, 70px);
  padding: clamp(40px, 5.8565vw, 80px) clamp(15px, 13.177vw, 180px);
  background-color: #fff;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .contact-box {
    margin-top: 40px;
    padding: 40px 15px;
  }
}

.contact-note-txt {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #295d89;
  padding-left: 100px;
}

@media screen and (max-width: 767px) {
  .contact-note-txt {
    padding-left: 0;
    font-size: 14px;
    line-height: 1.5;
  }
}

.contact-required-txt {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.contact-required-txt span {
  color: #e81919;
}

.contact-contents__item--required {
  display: flex;
  border-bottom: 1px dotted #707070;
  padding: 0 45px 16px;
}

@media screen and (max-width: 767px) {
  .contact-contents__item--required {
    display: block;
    padding: 0 10px 15px;
  }
}

.contact-contents__item--required + .contact-contents__item--required {
  margin-top: 16px;
}

.contact-contents__item--required:last-child {
  border-bottom: none;
}

.contact-contents__item-title {
  width: 160px;
  height: 60px;
  line-height: 60px;
  font-weight: bold;
  font-size: 18px;
  color: #295d89;
}

@media screen and (max-width: 767px) {
  .contact-contents__item-title {
    font-size: 16px;
    margin-bottom: 5px;
    height: auto;
    line-height: 1;
  }
}

.contact-contents__item-input--text {
  width: calc(100% - 160px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-input--text {
    width: 100%;
    margin-top: 10px;
  }
}

.contact-contents__item-textarea {
  width: calc(100% - 160px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-textarea {
    width: 100%;
    margin-top: 10px;
  }
}

.contact_read {
  margin-top: 35px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #295d89;
}

@media screen and (max-width: 767px) {
  .contact_read {
    margin-top: 0;
    font-size: 14px;
  }
}

.contact_btn-wrap {
  text-align: center;
}

.contact-contents__submit {
  display: inline-block;
  text-align: center;
  margin: 34px auto 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact-contents__submit {
    margin-top: 20px;
  }
}

.contact-contents__submit::after {
  position: absolute;
  content: "";
  background: url(../img/icon-mail.png) center center/cover no-repeat;
  width: 30px;
  height: 23px;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.contact-contents__btn {
  width: 240px;
  height: 70px;
  border: none;
  border-radius: 999px;
  background-color: #295d89;
  color: #fff;
  font-size: 18px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-left: 30px;
  transition: all 0.5s ease;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .contact-contents__btn {
    height: 50px;
  }
}

.contact-contents__btn:hover {
  background-color: #49afe5;
}

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  border: none;
  height: 60px;
  padding-left: 10px;
  background: #f4fbff;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  input[type="text"], input[type="email"], input[type="tel"] {
    height: 40px;
  }
}

textarea {
  width: 100%;
  min-height: 160px;
  resize: vertical;
  border: none;
  background: #f4fbff;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  textarea {
    min-height: 120px;
  }
}

input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.wpcf7-list-item {
  display: block;
}

.wpcf7-list-item + .wpcf7-list-item {
  margin-top: 10px;
}

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 2px solid #e81919;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #e81919;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-spinner {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}
