@charset "utf-8";

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
  display: block;
}

/*ボタンの設定*/
.pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 99;
  position: fixed;
  right: 24px;
  bottom: 20px;
  color: #fff;
  font-size: 1.2rem;
  background: #EB9A00;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}

.pagetop a i {
  line-height: 40px;
  position: relative;
  right: -1px;
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {
  display: none;
  flex: 1;
}

#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menubar ul li a {
  transition: 0.3s;
}

#menubar>nav>ul>li:hover>a {
  color: #D33E42;
}

#menubar>nav>ul>li.nav_contact:hover>a {
  color: #ffdbdc;
}

.ddmenu_parent ul li {
  transition: 0.3s;
}

.ddmenu_parent ul li:hover {
  background: #FDFBF3;
  border-radius: 3px;
}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {
  display: block;
}

.small-screen #menubar.display-block {
  display: block;
}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {
  display: none;
}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {
  display: none;
}

/*ドロップダウンの親メニューのカーソル表示を変更*/
#menubar a.ddmenu {
  cursor: default;
  padding-right: 24px;
  position: relative;
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-weight: bold;
  position: absolute;
  right: 0px;
}

.nav_contact {
  background: #D33E42;
  display: block;
  width: 100%;
  max-width: 160px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 35px;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

@media screen and (max-width:1080px) {
  .nav_contact {
    max-width: 130px;
  }
}

#menubar .nav_contact a {
  display: block;
  width: 100%;
  color: #fff;
  font-weight: 600;
  padding: 0 0;
}

.nav_contact:hover {
  background: #D33E42;
}

.nav_crc img {
  width: 93px;
  height: 36px;
  display: block;
}

/*大きな端末、小さな端末共通のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar a {
  display: block;
  text-decoration: none;
  padding: 0.5rem 0;
  /*上下、左右へのメニュー内の余白*/
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.large-screen #menubar>nav>ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#menubar li {
  font-size: 15px;
  letter-spacing: 0.03em;
}
@media screen and (max-width:1080px) {
  #menubar li {
    font-size: 14px;
  }
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li {
  position: relative;
  /*ドロップダウンの幅となる基準を作っておく*/
  text-align: center;
  /*テキストをセンタリング*/
}


/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
  animation: opa1 0.5s 0.1s both;
  /*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.large-screen #menubar ul ul {
  position: absolute;
  z-index: 100;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  border-radius: 6px;
  padding: 10px;
}
.large-screen #menubar ul ul li {
  border-bottom: 2px #F4E6D1 dashed;
}
.large-screen #menubar ul ul li:last-child {
  border-bottom: 0 #F4E6D1 dashed;
}
.large-screen #menubar ul ul li a {
  padding: 10px 0;
}

/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
  position: fixed;
  overflow: auto;
  z-index: 100;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding-top: 90px;
  background: rgba(255, 255, 255, 0.95);
  animation: animation1 0.2s both;
  /*animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen nav>ul>li {
  margin: 1rem;
  /*メニューの外側に空けるスペース*/
  border-radius: 5px;
  /*角を丸くする指定*/
  padding: 0 2rem;
  /*メニュー内の余白。上下、左右へ。*/
}

.small-screen nav>ul>li.nav_contact {
  border-radius: 35px;
}

/*文字色*/
.small-screen #menubar,
.small-screen #menubar a {
  color: #333;
}

.small-screen #menubar .nav_contact a {
  color: #fff;
}

/*900px以下でのみ表示させるブロック*/
#menubar .sh {
  padding: 1rem 2rem 2rem;
  /*上、左右、下へのブロック内の余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
  animation: opa1 0s 0.2s both;
  position: fixed;
  z-index: 101;
  cursor: pointer;
  right: 30px;
  /*右からの配置場所指定*/
  top: 30px;
  /*上からの配置場所指定*/
  padding: 16px 14px;
  /*上下、左右への余白*/
  width: 46px;
  /*幅（３本バーが出ている場合の幅になります）*/
  height: 46px;
  /*高さ*/
  display: flex;
  /*flexボックスを使う指定*/
  flex-direction: column;
  /*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
  justify-content: space-between;
  /*並びかたの種類の指定*/
  background: #D33E42;
  border-radius: 4px;
}

/*バー１本あたりの設定*/
#menubar_hdr span {
  display: block;
  transition: 0.3s;
  /*アニメーションにかける時間。0.3秒。*/
  border-top: 2px solid #fff;
  /*線の幅、線種、色*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
  background: #ff0000;
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
  transform-origin: center center;
  /*変形の起点。センターに。*/
  width: 20px;
  /*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1) {
  transform: rotate(45deg) translate(3.8px, 5px);
  /*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3) {
  transform: rotate(-45deg) translate(3.8px, -5px);
  /*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2) {
  display: none;
  /*２本目は使わないので非表示にする*/
}

/*リンク関連
---------------------------------------------------------------------------*/

.btn {
  border: 1px solid #D33E42;
  background: #D33E42;
  display: block;
  width: 100%;
  max-width: 340px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 35px;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.btn_g {
  border: 1px solid #48ACA2;
  background: #48ACA2;
}

a.txt_link.green:hover {
  color: #4DC3B8 !important;
}

.btn_s {
  max-width: 200px;
  height: 40px;
  line-height: 40px;
}

.btn a {
  display: block;
  width: 100%;
  color: #fff;
  font-weight: 600;
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn:hover {
  border: 1px solid #f9464b;
  background: #f9464b !important;
}

.btn_g:hover {
  border: 1px solid #4DC3B8;
  background: #4DC3B8 !important;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268 !important;
  border-color: #545b62;
}

a.txt_link {
  color: #D33E42;
  text-decoration: underline;
  font-weight: 600;
}

a.txt_link:hover {
  color: #f9464b;
}

@media screen and (max-width:899px) {}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*NEWS
---------------------------------------------------------------------------*/
.news {
  position: relative;
}

.news::after {
  position: absolute;
  content: "";
  display: block;
  width: 140px;
  height: 80px;
  background: url(/assets/img/common/icon_news.svg) no-repeat;
  background-size: 140px 80px;
  margin: 0 auto;
  right: 0;
  left: 0;
  top: -40px;
}

/*FAQ
---------------------------------------------------------------------------*/
.icon {
  position: relative;
  width: 30px;
  height: 30px;
  background: #D33E42;
  border-radius: 50%;
}

.icon::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 1s;
}

.icon--plus:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 1s;
}

.show .icon--plus:before {
  opacity: 0;
}

.show .icon--plus:after {
  transform: translateY(-50%) rotate(180deg);
}

.openclose-parts {
  cursor: pointer;
}

/*card
---------------------------------------------------------------------------*/
.card {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  align-items: center;
}

.card>* {
  flex: 1 1 450px;
}

.card02 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.card02>* {
  flex: 1 1 auto;
  width: calc(25% - 15px);
}
@media screen and (max-width:899px) {
  .card02>* {
    flex: 1 1 auto;
    width: calc(50% - 10px);
  }
}
/*voice
---------------------------------------------------------------------------*/
.voice:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: url(/assets/img/about/voice01.svg) no-repeat;
  display: block;
  background-size: 150px 150px;
  width: 150px;
  height: 150px;
}

.voice02:after {
  background: url(/assets/img/about/voice02.svg) no-repeat;
}

.voice03:after {
  background: url(/assets/img/about/voice03.svg) no-repeat;
}

.voice04:after {
  background: url(/assets/img/about/voice04.svg) no-repeat;
}

.voice05:after {
  background: url(/assets/img/about/voice05.svg) no-repeat;
}

.voice06:after {
  background: url(/assets/img/about/voice06.svg) no-repeat;
}

/*table
---------------------------------------------------------------------------*/
.table {
  border-collapse: collapse;
  display: block;
}

.table tbody {
  display: block;
}

.table tr {
  border-bottom: 2px solid #F4E6D1;
  display: flex;
  align-items: center;
}

.table td {
  position: relative;
  flex: 1;
}

.table td:before {
  content: "";
  position: absolute;
  background: #F4E6D1;
  background-size: 3px 100px;
  width: 2px;
  height: 50%;
  display: table;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: center center;
  margin: auto 0;
  vertical-align: middle;
  border-radius: 10px;
}
@media screen and (max-width:899px) {
  .table tr {
    flex-flow: column;
  }
  .table td:before {
    content: inherit;
  }
}

/*table02テーブルブロック設定*/

.table02 {
  width: 100%;
  margin: 0 auto 1em;
  background: #fff;
}

.table02, .table02 td, .table02 th {
  word-break: break-all;
  border: 1px solid #e3eef3;
  padding: 10px;
  text-align: center;
}
.table02 th {
  width: 30%;
  background: #c8dde7;
  border: 1px solid #fff;
}

.table02 tbody th {
  background: #f1f6f9;
}

@media screen and (min-width:900px) {
  .table02 caption {
    padding: 5px 15px;
  }
  .table02 th, .table02 td {
    padding: 20px 15px;
  }
  .table02 th {
    width: 20%;
  }
}
/*logo
---------------------------------------------------------------------------*/
#logo {
  width: 310px;
}
@media screen and (max-width:1235px) {
  #logo {
    width: 200px;
  }
}

@media screen and (max-width:959px) {
  #logo {
    width: 240px;
  }
}

/*mv
---------------------------------------------------------------------------*/
#top header {
  background: #d8d8d6;
}

.mv {
  background: url(/assets/img/top/mv.png) no-repeat;
  background-size: cover;
  background-position: center top;
  height: 800px;
  padding-top: 80px;
}

.mv h1 {
  margin: 0 auto 20px;
}

.mv h2 {
  margin: 0 auto 38px;
}

.mv .btn {
  max-width: 465px;
}

@media screen and (max-width:1200px) {
  .mv .btn {
    max-width: 350px;
  }

  .mv {
    padding-top: 20px;
  }
}

@media screen and (max-width:899px) {
  .mv {
    height: 660px;
    padding-top: 20px;
  }

  .mv h1 {
    margin: 0 auto 10px;
  }

  .mv h2 {
    margin: 0 auto 16px;
    font-size: 30px !important;
    letter-spacing: 0;
  }
}

@media screen and (max-width:600px) {
  .mv .btn {
    max-width: 240px;
  }
  .mv .btn a {
    line-height: 1.4;
    padding: 13px 0 15px 0;
  }
}

.circle {
  width: 115px;
  height: 115px;
  margin: auto;
}

@media screen and (max-width:1200px) {
  .circle {
    width: 100px;
    height: 100px;
  }
}

.circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}

.circleText__circle {
  fill: #FFAE44;
}

.circleText__text {
  fill: #FFAE44;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.mv .circle_point {
  width: 465px;
  position: relative;
}

@media screen and (max-width:1200px) {
  .mv .circle_point {
    width: 350px;
  }
}

@media screen and (max-width:600px) {
  .mv .circle_point {
    width: 240px;
  }
}

.mv .circle {
  position: absolute;
  right: -50px;
  top: -80px;
}

.mv .circle::after {
  white-space: pre;
  content: "2025\A受付開始";
  position: absolute;
  color: #fff;
  font-size: 18px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  line-height: 1.4;
  font-weight: 800;
}

@media screen and (max-width:899px) {
  .mv .circle {
    right: -50px;
    top: -26px;
  }

  .mv .circle {
    width: 70px;
    height: 66px;
  }

  .mv .circle::after {
    font-size: 13px;
  }
}

/*フォーム
---------------------------------------------------------------------------*/
.form-group.row input[type=radio] {
  margin: 0 8px 0 0;
}