/**
 * @author sara
 * Copyright (c) 2020 sara Co., Ltd.
 * All rights reserved.
 */

/* リセット
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@charset "UTF-8";

/* 共通部分 */
* {
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow-y: auto; /* 縦スクロールを必要に応じて表示 */
  font-size: 62.5%;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

p {
  margin: 0; /* 上下左右のマージンを0に設定 */
}

ul {
  list-style: none;
}
/* 共通部分*/
html {
  color: #222222;
  background-color: white;
  font-size: 100%;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  text-align: left;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body header {
  justify-content: space-between;
  margin-right: 0%;
}

body .page-header {
  width: 100%;
  height: 80px;
  right: 0px;
  justify-content: space-between;
  display: flex;
  background-color: #ffffff;
  opacity: 100%;
  z-index: 3;
  position: fixed;
  align-items: center;
  padding: 10px 13px 10px;
}

body .page-header img {
  max-width: 50%;
  padding-top: 0.5rem;
}

/* nav menu PC 　*/
body .page-header ul {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
}

/* nav menu iPad */
/* PCでは非表示にしておく */
.nav_toggle,
.nav i,
.nav-ipad,
.open-menu {
  display: none;
}

/* ハンバーガーアイコン */
.hamburger-menu {
  display: none; /* PCデスクトップでは隠す */
  flex-direction: column;
  justify-content: space-between;
  height: 18px;
  width: 30px;
  cursor: pointer;
  position: relative;
  z-index: 100;
}

.hamburger-menu .bar {
  height: 2px;
  width: 100%;
  background-color: #222222;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ×の形に変化するためのクラス */
.hamburger-menu.open .bar:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
}

.hamburger-menu.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.open .bar:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
}

header li {
  margin-right: 3rem;
  text-align: center;
  background-color: none;
  position: relative;
  font-weight: bold;
}

.PC-nav a {
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1.5;
}

.PC-nav li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #1f3875;
  z-index: -1;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}

.PC-nav li .contact-button::after {
  background: none;
}

.PC-nav li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.PC-nav a:hover {
  color: #1f3875;
}

header .contact-button {
  display: block;
  background-color: #1f3875;
  padding: 0.5rem 2.5rem;
  border-radius: 50px;
  box-shadow: 2px 2px 5px #727272;
}

header .contact-button span {
  color: #ffffff;
  font-weight: bold;
}

header li .contact-button {
  font-weight: bold;
  color: #fff;
}

header .contact-button:hover {
  box-shadow: none;
  transform: scale(0.99, 0.99) translateY(2px);
  transition: all 0.3s;
  display: block;
  color: #fff;
  border: none;
  background-color: #1f3875;
}

.PC-nav a {
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1.7;
}

header a span {
  font-family: "Josefin Sans", sans-serif;
  color: #464646;
  display: block;
  flex-direction: column;
  text-align: center;
  font-size: 0.7rem;
}


header .login-button img{
  width: 18px;
  height: 18px;
  vertical-align: middle;
  padding-top: 0;
  margin-left: 0.2rem;
}

/* 全体（main）PC
===================================================== */
main {
  width: 100%;
  text-align: center;
  padding-top: 10vh;
  flex-grow: 1;
  flex-direction: column;
  background-color: #edf8ff;
  background-image: radial-gradient(
    circle,
    #e4e4e49c 1px,
    transparent 1px
  );
  background-size: 8px 8px; /* ドット間隔 */
  background-repeat: repeat; /* ドットを繰り返し配置 */
}

/*================================================== PC
# FOOTER（フッター）
==================================================== */

footer {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 2rem;
  padding-bottom: 0.5rem;
  background-color: #ffffff;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  z-index: 1;
}

footer .page-footer {
  width: 100%;
  bottom: 0;
  text-align: center;
}

footer .footer-contents {
  text-align: center;
  padding: 1rem 2rem 2rem;
}

footer ul {
  text-decoration: none;
  list-style: none;
  display: inline-block;
  text-align-last: left;
  vertical-align: text-top;
  margin-right: 2rem;
}

footer li {
  margin-right: 3rem;
  text-align: left;
  justify-content: flex-start;
  display: inline-block;
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

footer li a {
  font-family: sans-serif;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  transition: color 0.3s;
}

footer li a:hover {
  color: #999999;
}

footer li p {
  font-size: 13px;
}

footer li .span {
  font-size: 30px;
}

footer .footer-contents-01 li .address-01 {
  font-size: 12px;
  line-height: 1.4;
}

footer .footer-contents-01 li .address-02 {
  font-size: 12px;
}
footer .footer-contents-01 li .sara-tel {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

footer .footer-contents-02 li {
  font-size: 13px;
  letter-spacing: 0.2em;
}

footer .footer-contents-03 li {
  font-size: 13px;
  letter-spacing: 0.1em;
}

footer .footer-contents-03 img {
  width: 15px;
  height: auto;
  margin-left: 10px;
  font-size: 14px;
}

footer small {
  font-family: sans-serif;
  color: #adadad;
  font-size: 12px;
}

/* ふわっと */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

/*================================================== PC
# メインエリア
==================================================== */
  main {
    width: 100%;
    margin-right: 0%;
    text-align: center;
    padding-top: 12.8vh;
    flex-grow: 1;
    flex-direction: column;
    background-color: #edf8ff;
    background-image: radial-gradient(
      circle,
      #e4e4e49c 1px,
      transparent 1px
    );
    background-size: 8px 8px; /* ドット間隔 */
    background-repeat: repeat; /* ドットを繰り返し配置 */
  }


/*=====================================================
- 利用規約、プライバシーポリシー
==================================================== */
main .terms-content,
main .privacy-content {
  text-align: center;
  margin: 0% 27%;
}

.privacy header,
.terms header {
  display: flex;
  height: 80px;
  right: 0px;
  justify-content: space-between;
  display: flex;
  background-color: #ffffff;
  opacity: 90%;
  z-index: 3;
  position: fixed;
  align-items: center;
  padding: 10px 13px 10px;
}

header .header-terms ,
header .header-privacy {
  display: inline-block;
  height: 80px;
}

.terms header img ,
.privacy header img {
  width: 60%;
}

main .terms_privacy_30 {
  padding-top: 1rem;
  text-align: left;
}

main .terms-title,
main .privacy-title {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 0.3rem;
  margin-top: 30px;
  justify-content: flex-start;
}

main .terms-subtitle,
main .privacy-subtitle {
  font-size: 1.5rem;
}

main .article-title {
  color: #333;
  text-align: left;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 30px;
}

main .article-p {
  display: inline-block;
  text-align: left;
  font-size: 0.8rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  margin-top: 10px;
  color: #333;
}

main .right-p {
  text-align: right;
  font-size: 0.8rem;
  padding: 3rem 0;
  line-height: 1.3rem;
}

header .login-button img{
  width: 18px;
  height: 18px;
  vertical-align: middle;
  padding-top: 0;
  margin-left: 0rem;
  padding-bottom: 0.2rem;
}

/*================================================= PC
- 利用規約・プライバシーポリシー - PC
==================================================== */
@media screen and (max-width: 1255px) {
  main .terms-content,
  main .privacy-content {
    text-align: center;
    margin: 2% 5%;
  }
}

/*=========================================== SP（430px）
- 利用規約・プライバシーポリシー - SP
==================================================== */
@media screen and (max-width: 430px) {
  main .terms-content,
  main .privacy-content {
    text-align: center;
    margin: 2% 5%;
  }
}

/*=====================================================
- 問い合わせ内容確認画面
==================================================== */
.confirm-page form {
  padding-top: 8vh;
  flex-direction: column;
  line-height: 1.7;
  padding-left: 30%;
  padding-right: 30%;
  background-color: #edf8ff;
  background-image: radial-gradient(
    circle,
    #e4e4e49c 1px,
    transparent 1px
  );
  background-size: 8px 8px; /* ドット間隔 */
  background-repeat: repeat; /* ドットを繰り返し配置 */
}

.confirm-page form h2 {
  font-weight: bold;
  font-size: 1.3rem;
  margin-top: 4rem;
}

.confirm-page form .contact-check {
  background-color: white;
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid #001738;
  box-shadow: 3px 3px 0px 0px #b9b9b9;
}

.confirm-page form .input-area {
  font-size: 1rem;
  flex-direction: column;
  border-bottom: 1px solid #e6e6e6;
  width: 100%;
  padding: 1rem;
  margin: 0;
}
.confirm-page form .contact-btn-area {
  text-align: center;
  display: inline-block;
  border-bottom: 0;
}

.confirm-page form .item-group {
  display: flex;
  width: auto;
}

.confirm-page form p {
  font-weight: bold;
  margin: 0;
  width: 250px;
}

/* 戻るボタン */
.confirm-page form .btn-border-back {
  font-size: 1rem;
  font-weight: bold;
  padding: 0.5rem 0rem;
  border: 1px solid #001738;
  width: 100px;
  margin-right: 1rem;
  border-radius: 50px;
  background-color: #e9e9e9;
  box-shadow: 3px 3px 0px 0px #b9b9b9;
}

.confirm-page form .btn-border-back:hover {
  font-size: 1rem;
  font-weight: bold;
  padding: 0.5rem 0rem;
  border: 1px solid #001738;
  width: 100px;
  margin-right: 1rem;
  border-radius: 50px;
  background-color: #cacaca;
  box-shadow: 3px 3px 0px 0px #b9b9b9;
}

/* 送信ボタン */
.confirm-page form .btn-border {
  font-size: 1rem;
  font-weight: bold;
  padding: 0.5rem 0rem;
  border: 1px solid #001738;
  width: 100px;
  margin: 0rem auto;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 3px 3px 0px 0px #b9b9b9;
  margin-bottom: 3rem;
  color: #001738;
}

.confirm-page form .btn-border:hover {
  border: 1px solid #001738;
  background-color: #cddbf7;
  transition: all 0.3s;
}


/*=====================================================
- 送信完了画面
==================================================== */
h2 {
  font-weight: bold;
  font-size: 1.3rem;
}

.completion-message {
  background-image: radial-gradient(
    circle,
    rgba(175, 175, 175, 0.3) 1px,
    transparent 1px
  );
  height: 100vh;
  background-size: 8px 8px;
  background-repeat: repeat;
  padding: 10% 15% 5%;
  display: inline-block;
   background-color: #edf8ff;
  background-image: radial-gradient(
    circle,
    #e4e4e49c 1px,
    transparent 1px
  );
  background-size: 8px 8px; /* ドット間隔 */
  background-repeat: repeat; /* ドットを繰り返し配置 */
}

.completion-message h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.completion-message p {
  font-size: 1.3rem;
}

.completion-message a {
  color: #333;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  padding-top: 3rem;
  padding: 3rem 1rem 0.2rem;
  transition: color 0.3s;
}

.completion-message a:hover {
  color: #bbb;
}

/*================================================== PC
- レスポンシブ PC
==================================================== */
@media screen and (max-width: 1255px) {
  .confirm-page form {
    padding-top: 5vh;
    flex-direction: column;
    line-height: 1.7;
    text-align: left;
    padding-left: 5%;
    padding-right: 5%;
  }

  main {
    width: 100%;
    text-align: center;
    padding-top: 10vh;
    flex-grow: 1;
    flex-direction: column;
    background-color: #edf8ff;
    background-image: radial-gradient(
      circle,
      #e4e4e49c 1px,
      transparent 1px
    );
    background-size: 8px 8px; /* ドット間隔 */
    background-repeat: repeat; /* ドットを繰り返し配置 */
  }

  .confirm-page form p {
    font-weight: bold;
    margin: 0;
    width: 200px;
  }

  /* 送信完了メッセージ */
  .completion-message {
    padding: 15% 15% 15%;
    display: inline-block;
  }

  .completion-message h2 {
    font-size: 1.4rem;
  }

  .completion-message p {
    font-size: 1.2rem;
  }
}



/*=========================================== ipad ====
- レスポンシブ ipad
==================================================== */
/* @media screen and (max-width: 768px) { */
@media screen and (max-width: 820px) {
  header,
  .announcement-bar,
  main,
  footer {
    width: 100%;
  }

  html,
  body {
    height: 100%;
    margin: 0;
  }

  main {
    width: 100%;
    text-align: center;
    padding-top: 10vh;
    flex-grow: 1;
    flex-direction: column;
    background-color: #edf8ff;
    background-image: radial-gradient(
      circle,
      #e4e4e49c 1px,
      transparent 1px
    );
    background-size: 8px 8px; /* ドット間隔 */
    background-repeat: repeat; /* ドットを繰り返し配置 */
  }

  body header {
    justify-content: space-between;
    margin-right: 0%;
  }

  body .page-header {
    width: 100%;
    background-color: #ffffff;
  }

  body .page-header img {
    max-width: 100%;
    width: 200px;
    padding-top: 0.5rem;
  }

  /* ipad / SP ナビメニュー表示 */
  .nav_toggle,
  .nav i,
  .nav-ipad {
    display: block;
  }

  
  /* PCナビ非表示 */
  header .PC-nav,
  header .nav,
  .side-form {
    display: none;
  }

  header li {
    margin-right: 3rem;
    text-align: center;
    background-color: none;
    position: relative;
    font-weight: bold;
  }

  header .hamburger-menu {
    display: flex; /* ハンバーガーアイコンを表示 */
  }

  header .hamburger-menu {
    display: flex;
  }

  h2 {
    font-weight: bold;
    font-size: 1.3rem;
  }
  
  .open-menu.show {
    display: flex; /* ハンバーガーメニューが開いたときに表示 */
    text-align: left;
    height: 100vh;
    background-color: #ffffff;
    padding-top: 1rem;
  }
  
  .open-menu {
    display: none; /* 初期状態は非表示 */
    background-color: #fff;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 3rem;
    top: 0;
    left: 0;
    font-family: "Josefin Sans", sans-serif;
    position: fixed;
    right: -100%; /* 初期位置は画面外 */
    transition: right 1s ease-out;
    z-index: 2;
  }
  .open-menu ul {
    text-align: center;
    margin: 0;
    width: 100%;
    padding: 3rem 3rem;
  }
  
  .open-menu li {
    text-align: left;
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted #666666;
    margin-bottom: 2.6rem;
  }
  
  .open-menu li a {
    text-decoration: none;
    color: #353535;
    font-weight: bold;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .open-menu li a span {
    margin-left: 0.5rem;
  }
  
  .open-menu li a::after {
    content: '';
  width: 0;
  height: 0;
  border-top: none;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);/}
  
  .open-menu .open-menu-button {
    margin: 6.5rem 2.5rem 1rem;
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 0 1.3rem;
  }

  .open-menu .open-menu-button span{
    color: #fff;
  }

  .open-menu .login-button {
    display: inline-block;
    background-color: #555;
    box-shadow: 3px 3px 0px #bbbbbb;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    padding: 1rem 3rem 1rem;
    border-radius: 20px;
  }

  .open-menu .contact-button {
    display: inline-block;
    background-color: #1f3875;
    box-shadow: 3px 3px 0px #bbbbbb;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 1rem 2rem 1rem;
    border-radius: 20px;
  }

  .open-menu span {
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    flex-direction: column;
    color: #696969;
    font-weight: normal;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .button {
    font-size: 1rem;
  }


/*======================================== ipad ====
- 入力内容受取ページ
==================================================== */
.confirm-page form .input-area {
  padding: 0.5rem;
}

.confirm-page form .input-area p {
  font-size: 1.1rem;
}

.completion-message {
  background-color: #edf8ff;
  background-image: radial-gradient(
    circle,
    #e4e4e49c 1px,
    transparent 1px
  );
  background-size: 8px 8px; /* ドット間隔 */
  background-repeat: repeat; /* ドットを繰り返し配置 */
  height: auto;
  background-size: 8px 8px;
  background-repeat: repeat;
  padding: 10% 15% 5%;
  display: inline-block;
  margin-top: 4vh;
}

.completion-message h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.completion-message p {
  font-size: 1.1rem;
}

.completion-message a {
  color: #333;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  padding-top: 3rem;
  padding: 3rem 1rem 0.2rem;
  border-bottom: 1px solid #001738;
}

/* 送信ボタン */
.confirm-page form .btn-border {
  font-size: 1rem;
  font-weight: bold;
  padding: 0.5rem 0rem;
  border: 1px solid #001738;
  width: 100px;
  margin: 0rem auto;
  border-radius: 50px;
  background-color: #fff;
  box-shadow: 3px 3px 0px 0px #b9b9b9;
  margin-bottom: 3rem;
  color: #001738;
}

.confirm-page form .btn-border:hover {
  border: 1px solid #001738;
  background-color: #56d3a1;
  transition: all 0.3s;
}
}


/*============================================ SP（430px）
- レスポンシブ SP
==================================================== */
@media screen and (max-width: 430px) {
  .confirm-page form {
    background-color: white;
    padding-top: 5.5vh;
    flex-direction: column;
    line-height: 1.7;
    text-align: left;
    padding-left: 5%;
    padding-right: 5%;
  }

  .confirm-page form .contact-check {
    padding: 3rem 1rem;
  }

  .confirm-page form p {
    font-weight: bold;
    margin: 0;
    width: 150px;
  }

  .confirm-page form .input-area p {
    width: 100%;
}

  .confirm-page form .item-group {
    flex-direction: column;
  }

  /* 送信完了メッセージ */
  .completion-message {
    padding: 20% 5% 10%;
    display: inline-block;
  }


  .completion-message h2 {
    font-size: 1.4rem;
  }

  .completion-message p {
    font-size: 0.9rem;
  }
}


/*============================================ SP（430px）
- レスポンシブ SP
==================================================== */
@media screen and (max-width: 430px) {
  header,
  .announcement-bar,
  main,
  footer {
    width: 100%;
  }

  html,
  body {
    height: 100%;
    margin: 0;
  }

  body header {
    justify-content: space-between;
    margin-right: 0%;
  }

  body .page-header {
    width: 100%;
    background-color: #ffffff;
    height: 85px;
    padding: 0.5rem;
  }

  body .page-header img {
    width: 45%;
    max-width: 100%;
    padding-top: 0.3rem;
  }

  .page-header.announcement-visible {
    height: 8%;
    margin-top: 1.5rem;
  }

  /* ipad / SPナビ 表示 */
  .nav_toggle,
  .nav i,
  .nav-ipad {
    display: block;
  }

  header li {
    margin-right: 3rem;
    text-align: center;
    background-color: none;
    position: relative;
    font-weight: bold;
  }

  /* PCナビメニュー非表示 */
  header .PC-nav,
  header .nav,
  .side-form {
    display: none;
  }

  header .hamburger-menu {
    display: flex;
  }

  
  .open-menu {
    display: none;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 3rem;
    top: 0;
    left: 0;
  }

  .open-menu.show {
    font-weight: bb;
  }

 /* ハンバーガーメニューを開いた画面の詳細 */
  .open-menu {
    font-family: "Josefin Sans", sans-serif;
    display: none;
    position: fixed;
    top: 0;
    right: -100%; /* 初期位置は画面外 */
    width: 100%;
    flex-direction: column;
    font-size: 1.5rem;
    transition: right 1s ease-out;
    z-index: 2;
  }

  .open-menu ul {
    text-align: center;
    margin: 0;
    width: 100%;
    padding: 2rem 2rem;
  }

  .open-menu li {
    text-align: left;
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 1px dotted #666666;
    margin-bottom: 2rem;
  }

  .open-menu li a {
    text-decoration: none;
    color: #353535;
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .open-menu li a span {
    margin-left: 0.5rem;
  }

  .open-menu li a::after {
    content: '';
  width: 0;
  height: 0;
  border-top: none;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);/}

  .open-menu .open-menu-button {
    margin: 5.5rem 2.5rem 1rem;
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 0 1.3rem;
  }

  .open-menu .open-menu-button span{
    color: #fff;
    font-size: 0.8rem;
  }

  .open-menu .login-button {
    display: inline-block;
    background-color: #555;
    box-shadow: 3px 3px 0px #bbbbbb;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    padding: 1rem 1.4rem 1rem;
    border-radius: 20px;
  }

  .open-menu .contact-button {
    display: inline-block;
    background-color:#1f3875;
    box-shadow: 3px 3px 0px #bbbbbb;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    padding: 1rem 1.4rem 1rem;
    border-radius: 20px;
  }

  .open-menu span {
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    flex-direction: column;
    color: #696969;
    font-weight: normal;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .button {
    font-size: 1rem;
  }

  main {
    max-width: 100%;
    padding-top: 8vh;
    margin-left: 0%;
  }

  main h1 {
    font-size: 22px;
    padding-bottom: 0;
    letter-spacing: 0.1rem;
    height: 160px;
  }

  main h1 img {
    margin-top: 0;
    width: 270px;
    height: 80px;
  }

  main .top-illust img {
    width: 500px;
    height: 280px;
    padding: 0;
    margin: 0;
    object-fit: cover;
  }

  main .menu-title {
    font-size: 16px;
  }

  main h2 {
    font-size: 22px;
    margin: 0;
    padding-bottom: 1rem;
    letter-spacing: -0.05em;
  }

  main .CONTACT {
    padding-top: 3rem;
    margin-top: 1rem;
    background-image: url();
    background-color: #fdfdfd;
  }

  main .CONTACT h3 {
    font-size: 0.8rem;
    letter-spacing: 0;
    padding: 0 1rem;
    margin-top: 1rem;
    font-weight: normal;
  }

  .CONTACT form .form-category {
    text-align: left;
    display: inline-block;
    font-size: 1rem;
    padding-right: 4.5rem;
  }

  .CONTACT form .form-category .title-bold {
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0;
    font-weight: normal;
  }

  .CONTACT form .form-category p {
    font-size: 14px;
    margin: 15px 0;
  }

  .input-area p {
    font-size: 14px;
    letter-spacing: 0.05rem;
  }

  .input-area p span {
    font-size: 0.8rem;
  }

  .input-area {
    margin-bottom: 0.5rem;
  }

  .input-area-message p {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }

  .input-area input[type="text"],
  .input-area input[type="email"],
  .input-area input[type="tel"] {
    width: 370px;
    height: 50px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #d1d1d1;
    padding: 18px;
    font-size: 1rem;
  }
  
  .input-area-message textarea {
      height: 50px; /* 高さを調整 */
      width: 100%;
      border-radius: 14px;
      margin-bottom: 0rem;
      font-size: 0.7rem;
      padding: 10px;
      resize: vertical; /* ユーザーが縦方向にサイズを変更できる */
      border: 1px solid #ddd;
 }

  ::placeholder {
    text-align: left;
    color: #ccc;
    font-size: 14px;
  }

  main .CONTACT .btn {
    display: inline-block;
    position: relative;
    padding: 0.8rem 4rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    background: linear-gradient(45deg, #0db9d4 35%, #6fe859);
    width: 370px;
    height: 60px;
    margin-bottom: 3rem;
  }


  footer {
    width: 100%;
    text-align: center;
    padding-bottom: 0.5rem;
    margin-right: 0%;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }

  footer .page-footer {
    width: 100%;
    bottom: 0;
    text-align: center;
    padding: 2rem 0.5rem 0rem;
  }

  footer .footer-contents {
    padding: 0.5rem 0;
    justify-content: center;
    display: block;
    text-align: left;
  }

  footer ul {
    text-decoration: none;
    list-style: none;
    display: inline-block;
    text-align-last: left;
    vertical-align: text-top;
    margin-right: 1rem;
    margin-bottom: 2rem;
  }

  footer li {
    margin-right: 0rem;
    text-align: left;
    justify-content: flex-start;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 5px;
  }

  footer li a {
    font-family: sans-serif;
    text-decoration: none;
    font-size: 13px;
  }

  footer li a:hover {
    color: #f0f0f0;
  }

  footer li p {
    font-size: 13px;
  }

  footer li .span {
    font-size: 30px;
  }

  footer .footer-contents-01 li .address-01 {
    font-size: 12px;
    line-height: 1;
  }

  footer .footer-contents-01 li .address-02 {
    font-size: 12px;
  }
  footer .footer-contents-01 li .sara-tel {
    font-size: 0.9rem;
    font-weight: bold;
  }

  footer .footer-contents-02 li {
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  footer .footer-contents-03 li {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  footer small {
    font-family: sans-serif;
    font-size: 12px;
  }

  main .terms-subtitle, main .privacy-subtitle {
    font-size: 1.2rem;
}

}

/*============================================ SP（390px）
- レスポンシブ SP
==================================================== */
@media screen and (max-width: 390px) {

  .open-menu ul {
    text-align: center;
    margin: 0;
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .confirm-page form {
    background-color: #edf8ff;
    padding-top: 5.5vh;
    flex-direction: column;
    line-height: 1.7;
    text-align: left;
    padding-left: 5%;
    padding-right: 5%;
  }

  .confirm-page form .contact-check {
    padding: 3rem 1rem;
  }

  .confirm-page form .input-area p {
    width: 100%;
}

  .confirm-page form p {
    font-weight: bold;
    margin: 0;
    width: 150px;
  }
 
  .confirm-page form .item-group {
    flex-direction: column;
  }

  /* 送信完了メッセージ */
  .completion-message {
    padding: 13% 5% 10%;
    display: inline-block;
  }


  .completion-message h2 {
    font-size: 1.4rem;
  }

  .completion-message p {
    font-size: 0.9rem;
  }
}