@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@600&display=swap");


/**
 * ***************************************
 * ページ全体に関わるCSSの設定
 * ***************************************
 */
html *,
::before,
::after {
  box-sizing: border-box;
}
/* フォント */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
  /*font-family: 'Noto Sans JP', sans-serif;*/
  font-family: "Shippori Mincho", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400; /* Noto Sans JPのレギュラーウェイトを指定 */
  background-color: rgba(139, 71, 123, 0.1);
}
/* おもな太字タグのフォントウェイト設定 */
h1, h2, h3, h4, h5, h6, th, strong {
  font-weight: 700;
}
/* ベースのリンクカラー */
a {
  color: #f30;
}

/* レスポンシブイメージと画像下スペース防止 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;/* 画像下のスペースを消す */
}

/**
 * ***************************************
 * ヘッダー
 * ***************************************
 *
 * ヘッダーコンテナ
 */
.page-header {
  /*background: url(../images/header-topline.svg) repeat-x;*/
  /*background-color: rgba(202, 231, 236, 0.2);*/
  background-color: #ffffff;
  /*border-bottom: 1px solid #d8d8d8;*/
}
@media (min-width: 768px) {
  .header-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1040px;
  }
}

/**
 * ---------------------------------------
 * ヘッダーモジュール
 */

/* ヘッダーロゴとモバイルナビボタン */
.sitetitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .sitetitle {
    display: block;
    padding: 10px 0 10px 0;
  }
}
/* ヘッダーロゴ */
.header-logo {
  margin: 0;/* h1のデフォルト設定オフ */
  padding-left: 15px;
  font-size: 0;/* 画像上下の余白を消すためh1の設定オフ */
  line-height: 0;/* 画像上下の余白を消すためh1のサイズオフ */
}
.header-logo img {
  /*width: 200px;*/
  width: 20%;
}
@media (min-width: 768px) {
  .header-logo {
    padding: 0;
  }
  .header-logo img {
    /*width: 300px;*/
    width: 20%;
  }
}
@media (max-width: 767.98px) {
  .header-logo img {
    /*width: 300px;*/
    width: 50%;
  }
}
/* モバイル向けボタン */
.navbtn {
  display: block;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center center;
}
.navbtn.close {
}
@media (min-width: 768px) {
  .navbtn {
    display: none;
  }
}
/* ヘッダーナビゲーション */
.header-nav {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-nav.collapse {
  display: none;
}
.header-nav li a {
  display: block;
  padding: 20px 30px;
  border-top: 1px solid #d8d8d8;
  background: #efefef;
  color: #000;
  text-decoration: none;
}
.header-nav li a:hover {
  background: #b8e5ea;
}
@media (min-width: 768px) {
  /* PC向けレイアウト */
  .header-nav {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
  }
  .header-nav li a {
    padding: 6px 20px 2px 20px;
    border-top: none;
    border-bottom: 4px solid transparent;
    background: none;
  }
  .header-nav li a:hover {
    border-bottom: 4px solid #73cbd6;
    background: none;
  }
}



/**
 * ***************************************
 * ページ下部
 * ***************************************
 *
 * ページ下部コンテナ
 */
.page-bottom {
  background: url(../images/bottom-bg.svg);
}
.bottom-container {
  padding: 60px 4% 0 4%;
}
@media (min-width: 768px) {
  .bottom-container {
      margin: 0 auto;
      padding: 60px 20px 0 20px;
      max-width: 1040px;
  }
}

/**
 * ---------------------------------------
 * ページ下部モジュール
 */
/* 複数のバナーを並べる */
.banner {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.banner div {
  margin-bottom: 20px;
  text-align: center;
}
.banner a:hover {
  opacity: .8;
}
@media (min-width: 768px) {
  .banner {
    flex-direction: row;
  }
  .banner div {
    margin: 0 10px;
  }
}
/* ボタンを横に並べる */
.followus {
  margin: 0 0 15px 0;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 1.875rem;
  text-align: center;
}
.sns {
  display: flex;
  justify-content: center;
  margin-bottom :30px;
}
.sns div {
  margin: 0 10px;
}
.sns div a {
  display: block;
  width: 70px;
  height:70px;
  background: #73cbd6;
  border-radius: 50%;
  font-size: 30px;
  line-height: 70px;
  text-align:center;
  color: #ffffff;
}
.sns div a:hover {
  opacity: .8;
}
/* ページトップへ戻るボタン */
.gotop {
  text-align: center;
}
.gotop a {
  display: inline-block;
  padding: 1rem 4rem;
  background: #000000;
  border-radius: 20px 20px 0 0;
  font-size: 1.25rem;
  text-align:center;
  color: #ffffff;
  opacity: .6;
}
.gotop a:hover {
  opacity: .8;
}

/**
 * ***************************************
 * フッター
 * ***************************************
 *
 * フッターコンテナ
 */
.page-footer {
  /*background: rgba(202, 231, 236, 0.2);*/
}
.footer-container {
  padding: 60px 4%;
}
@media (min-width: 768px) {
  .footer-container {
      max-width: 1040px;
      margin: 0 auto;
      padding: 30px 20px;
  }
}

/**
 * ---------------------------------------
 * フッターモジュール
 */
/* ロゴ */
.footer-logo {
  margin-bottom: 30px;
  text-align: center;
}
.footer-logo img {
  width: 160px;
}
/* フッターのナビゲーション① */
.footer-nav1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.footer-nav1 li {
  margin: 0 0 2rem 0;
  font-size: .875rem;
}
.footer-nav1 li a {
  color:  #d8d8d8;
  text-decoration: none;
}
.footer-nav1 li a:hover {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-nav1 {
    flex-direction: row;
    justify-content: center;
  }
  .footer-nav1 li {
    margin: 0 1rem;
  }
}
/* ナビゲーション② その他リンク */
.footer-nav2 {
  display: flex;
  justify-content: center;
  margin: 0 0 20px 0; /* ulのデフォルト設定オフ */
  padding: 0; /* ulのデフォルト設定オフ */
  list-style: none; /* ulのデフォルト設定オフ */
}
.footer-nav2 li {
  margin: 0 .75rem 3px .75rem;
  font-size: .75rem;
}
.footer-nav2 li a {
  color:  #d8d8d8;
  text-decoration: none;
}
.footer-nav2 li a:hover {
  color: #fff;
  text-decoration: underline;
}
/* コピーライト */
.copyright {
  font-size: .75rem;
  color:  #d8d8d8;
  text-align: center;
}

/**
 * ***************************************
 * メインコンテナ
 * ***************************************
 */
/**
 * ***************************************
 * ［index.html］ホームページ
 * ***************************************
 */
/* ホーム - ヒーローコンテナ */
.hero-container {
  position: relative;
}
/* ホーム - メインコンテナ */
.home .page-main {
  background: url(../images/home-bg.svg);
}
.home .main-container {
  padding: 60px 4%;
}
@media (min-width: 768px) {
.home .main-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 60px 20px;
  }
}
/* ホーム - ニュースコンテナ */
.news {
  background: #efefef;
}
.news-container {
  padding: 60px 4%;
}
@media (min-width: 768px) {
  .news-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 20px;
  }
}


/**
 * ***************************************
 * ［form.html］フォームページ
 * ***************************************
 */
/* フォーム - キャッチフレーズコンテナ */
.apply .campaign-container {
  margin: 0 auto;
  padding: 60px 4%;
  max-width: 1040px;

}
@media (min-width: 768px) {
  .apply .campaign-container {
    padding: 60px 20px;
  }
}
/* フォーム - フォームコンテナ */
.apply .form-container {
  margin: 0 auto;
  padding: 0 4% 30px 4%;
  max-width: 640px;
}
@media (min-width: 768px) {
  .apply .form-container {
    padding: 0 20px 0 20px;
  }
}

/**
 * ---------------------------------------
 * ［form.html］フォームページ - モジュール
 */
/* 見出しとテキスト */
.apply-title {
  margin: 0 0 60px 0;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.5;
}
.apply-title span {
  font-size: 1.875rem;
  /*font-family: 'Croissant One', cursive;*/
  font-weight: 400;
}
.apply-lead {
  text-align: center; /*ADD*/
  margin: 0;
  line-height: 1.9;
}

/* 入力フォームのフォントサイズを大きくする */
input, textarea, label {
  font-size: 16px;
  letter-spacing: 0.2rem;
}
/* テキストフィールドとメールアドレスフィールド */
.form p {
  margin: 0 0 30px 0;
  line-height: 1.9;
}
.required {
  margin-left: 10px;
  font-size: .875rem;
  color: red;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  /*border: 1px solid #747474;*/
  border: 0px solid #747474;
  border-radius: 5px;
}
/* メニューリスト */
select {
  -webkit-appearance: none;

  border: 1px solid #d8d8d8;
  padding: 4px 2rem 4px 4px;
  border-radius: 4px;
  background: url(../images/caret-down.svg) no-repeat;
  background-position: right 6px center;
  background-size: 12px 12px;
  font-size: 16px;
}
/* メッセージ（テキストエリア） */
textarea {
  width: 100%;
  height: 16rem;
  padding: 10px;
  /*border: 1px solid #747474;*/
  border: 0px solid #747474;
  line-height: 1.5;
  border-radius: 5px;
}
/* チェックボックス */
input[type="checkbox"] {
  margin-right: 10px;
}
/* 送信ボタン */
.form-button {
  margin-bottom: 0;
  text-align: center;
}
input[type="submit"] {
  padding: 20px 60px;
  /*margin-right: 20px;*/
  background-color: #8B477B;
  border: none;
  border-radius: 10px;
  color: #fff;
}
input[type="submit"]:hover {
  opacity: .5;
}

input[type="reset"] {
  padding: 20px 30px;
  background-color: #fff;
  border:1px solid #74c7d3;
  border-radius: 40px;
  color: #74c7d3;
}
input[type="reset"]:hover {
  opacity: .5;
}

input[type="button"] {
  padding: 20px 60px;
  background-color: #fff;
  border:1px solid #8B477B;
  border-radius: 10px;
  color: #333333;
}
input[type="button"]:hover {
  opacity: .5;
}

.top-back {
  width: fit-content;
  margin: 0px auto 0;
  padding: 20px 0px;
  /*font-size: 1.8rem;*/
}

@media only screen and (max-width: 767.98px) {
  .top-back {
    margin: 0px auto 0;
  }
  .top-back .header_nav--pearent .name {
    font-size: 1.2rem;
  }
}

.top-back a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 0;
  text-decoration: none;
}

.top-back .name {
  position: relative;
  display: block;
  /* font-size: 2rem; */
  letter-spacing: 0.075em;
  color: #2e3448;
  transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
}

.top-back .name::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #8B477B;
  transition: all 0.3s 0s ease;
  -webkit-transition: all 0.3s 0s ease;
  -moz-transition: all 0.3s 0s ease;
  -o-transition: all 0.3s 0s ease;
}

.top-back .name:hover::before {
  width: 100%;
}







.main {
  display: relative;
  z-index: 1;
}

.main_block {
  display: flex;
}

.home_copyright {
  margin: 150px 50px;
}
.home_copyright--copyright {
  writing-mode: vertical-rl;
}

.home_copyright--copyright__text {
  text-align: center;
  display: inline-block;
  font-size: 0.7rem;
}

.home_contact {
  /*padding: 120px 25px 50px;*/
  padding: 70px 120px 50px;
  width: 100%;
}

@media only screen and (max-width: 767.98px) {
  .home_contact {
    padding: 40px 25px 60px;
  }
}

.home_contact--line {
  border-bottom: 1px solid #8B477B;
}

.home_contact--text {
  margin: 30px auto;
}

.home_contact--text p{
  color: #8B477B;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: bold;
}

.home_contact .inner {
  /*max-width: 780px;*/
  margin: 60px auto;
}

.home_contact .inner .pc {
  display: inline;
}

.home_contact .inner .sp {
  display: none;
}

@media only screen and (max-width: 767.98px) {
  .home_contact .inner {
    padding: 0 20px;
  }

  .home_contact .inner .pc {
    display: none;
  }

  .home_contact .inner .sp {
    display: inline;
  }
}

.home_contact .home_contact--note {
  /*position: absolute;*/
/*  right: 5%;
  bottom: 30px;*/
  /*width: 30%;*/
  text-align: right;
}

.home_contact .home_contact--note img{
  width: 40%;
  margin-right: 100px;
}

@media only screen and (max-width: 767.98px) {
  .home_contact .home_contact--note {
    width: 100%;
  }
  .home_contact .home_contact--note figure{
    margin: 0 auto;
  }
  .home_contact .home_contact--note img{
    width: 70%;
    margin: 0 auto;
  }
}

.home__pp {
  margin: 30px 100px;
}

@media only screen and (max-width: 767.98px) {
  .home__pp {
    margin: 20px auto;
  }
}

.home__pp--link {
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 767.98px) {
  .home__pp--link {
    justify-content: center;
    padding: 0;
  }
}

.home__pp--link > li{
  padding-right: 30px;
}

.home__pp--link > li+ li{
  border-left: 1px solid #333333;
  padding-right: 30px;
}

@media only screen and (max-width: 767.98px) {
  .home__pp--link > li{
    padding: 0;
  }
  .home__pp--link > li+ li{
    border-left: 0px solid #ffffff;
    padding: 0;
  }
}

.home__pp--link .list_item {
  color: #333333;
}

.home__pp--link a{
  text-decoration: none;
}

.page_top{
  width: 60px;
  height: 60px;
  position: absolute;
  right: 2%;
  bottom: 50px;
  background: #C9A965;
  /*opacity: 0.6;*/
  text-align: center;
}

.page_top a{
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

.page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  /*content: '\f106';*/
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.page_top .init-top {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  /*margin: 0 10px 0 0;*/
  margin: 30px auto;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 767.98px) {
  .page_top {
    bottom: 30px;
  }
}

/* --------------------------------------------------
// common
-------------------------------------------------- */
ol, ul, li {
  list-style: none;
}

.onlyPC {
  display: block;
}

@media only screen and (max-width: 767.98px) {
  .onlyPC {
    display: none;
  }
}

.section_title {
  /*position: relative;*/
  margin: 0 auto 60px;
  font-size: 2.8rem;
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: center;
  color: #8B477B
}

@media only screen and (max-width: 767.98px) {
  .section_title {
    margin: 0 auto 30px;
    font-size: 1.8rem;
    font-weight: 500;
  }
}

.section_title span {
  /*min-width: 300px;*/
  padding-bottom: 20px;
  /*border-bottom: solid 1px;*/
  position: relative;
  font-size: 2.0rem;
}

@media only screen and (max-width: 767.98px) {
  .section_title span {
    min-width: 120px;
    padding: 0 0 15px;
  }
}

.section_title span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 51px;
  height: 0.5px;
  background-color: #808080;
  display: block;
}

@media only screen and (max-width: 767.98px) {
  .section_title span::after {
    bottom: -5px;
    width: 30px;
    height: 0.5px;
  }
}

.section_title--ja {
  display: inline-block;
}

@media only screen and (max-width: 767.98px) {
  .section_title--ja {
    /*display: none;*/
  }
}

.section_title--en {
  display: none;
}

@media only screen and (max-width: 767.98px) {
  .section_title--en {
    display: inline-block;
  }
}

/* --------------------------------------------------
// layout - footer
-------------------------------------------------- */
.footer {
  width: 100%;
  padding: 40px 20px;
  background-color: #8B477B;
  position: relative;
}

@media only screen and (max-width: 767.98px) {
  .footer {
    padding: 10px 0;
  }
}

.footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767.98px) {
  .footer .wrap {
    padding: 0 25px;
    justify-content: center;
  }
}

.footer_copyright {
  /*margin-top: 20px;*/
  /*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;*/
  font-weight: 400;
  font-size: .9rem;
  text-align: end;
  letter-spacing: 0.3em;
  color: #ffffff;
  margin: 0 auto;
  margin-right: 100px;
}

@media only screen and (max-width: 767.98px) {
  .footer_copyright {
    margin: 20px auto;
    font-size: .6rem;
    text-align: center;
  }
}
