/*
* 基本スタイル
* ┗共通スタイル
* ヘッダー
* ┗グローバルナビゲーション
* フッター
* 汎用
* パーツ
*/
/* LESS Document */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  html {
    min-width: 320px;
  }
}
body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  font-size: 1.8rem;
  font-feature-settings: "pwid";
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.2vw;
  }
}
p {
  margin-bottom: 1em;
}
p:nth-last-child(1) {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  clear: both;
  border: none;
  border-top: #999 1px dotted;
  margin: 30px 0;
}
/* -------------------------------- テーブル */
table {
  margin: 0 0 20px;
}
table th {
  border: #999 1px solid;
  background: rgba(217, 0, 0, 0.5);
  text-align: center;
  padding: 3px 5px;
}
table td {
  border: #999 1px solid;
  text-align: center;
  padding: 3px 5px;
}
@media screen and (max-width: 767px) {
  .tableWrap {
    overflow: auto;
    white-space: nowrap;
  }
  .tableWrap::-webkit-scrollbar {
    background: #CCC;
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }
  .tableWrap::-webkit-scrollbar-thumb {
    background: #635A4B;
    border-radius: 15px;
  }
  table.tableResponsive thead {
    display: none;
  }
  table.tableResponsive th {
    display: block;
  }
  table.tableResponsive tr {
    display: block;
    margin-top: 10px;
  }
  table.tableResponsive td {
    display: block;
    border-top: none;
  }
  table.tableResponsive td::before {
    content: attr(aria-label);
    display: inline-block;
    width: 50px;
  }
}
/* -------------------------------- リスト */
.listDisc_01 {
  padding: 0 0 0 2rem;
  list-style: disc;
}
.listDisc_01 li::marker {
  color: #ddd;
}
.listDisc_01 li:not(:last-child) {
  margin: 0 0 5px;
}
.listDisc_02 {
  padding: 0 0 0 2rem;
}
.listDisc_02 li:not(:last-child) {
  margin: 0 0 5px;
}
.listDisc_02 li::marker {
  content: '\f0da';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.listDisc_03 {
  padding: 0 0 0 1.5rem;
}
.listDisc_03 li:not(:last-child) {
  margin: 0 0 0;
}
.listDisc_03 li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #635A4B;
  margin-right: -8px;
  font-size: 1rem;
  text-align: center;
  vertical-align: 2px;
  position: relative;
  left: -12px;
}
.listDecimal_01 {
  list-style: decimal;
  padding-left: 25px;
}
.listDecimal_01 > li {
  text-indent: 0;
}
.listDecimal_02 {
  padding: 0 0 0 2.5rem;
}
.listDecimal_02 > li {
  counter-increment: number;
  margin-bottom: 10px;
}
.listDecimal_02 > li::before {
  content: "(" counter(number) ") ";
  display: inline-block;
  width: 2.5rem;
  margin: 0 0 0 -2.5rem;
}
/* -------------------------------- 定義リスト */
/* dlリスト
dl_01…PC横並び、SP以下改行
dl_02…PC、SP共に横並びリスト
*/
.dlList_01 > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
}
.dlList_01 > div dt {
  min-width: 0;
}
.dlList_01 > div dd {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .dlList_01 > div {
    display: block;
  }
  .dlList_01 > div dt {
    width: 100%;
    padding: 8px 0 2px;
  }
  .dlList_01 > div dd {
    width: 100%;
    padding: 2px 0 8px;
  }
  .dlList_01 > div dd:nth-of-type(n+2) {
    border: none;
  }
}
.dlList_01.dlBorder > div {
  border-bottom: #666 1px dotted;
}
.dlList_02 > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
}
.dlList_02 > div dt {
  min-width: 0;
}
.dlList_02 > div dd {
  flex: 1;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	共通スタイル
+++++++++++++++++++++++++++++++++++++++++++ */
.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 10px;
  }
}
.ttl {
  margin: 100px 0;
}
@media screen and (max-width: 767px) {
  .ttl {
    margin: 0;
  }
}
.ttl .background {
  background-image: url(../img/back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
  transform: skewY(-5deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ttl .background {
    background-size: 110%;
  }
}
.ttl .background h2 {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 2.2px;
  color: #fff;
  transform: skewY(5deg);
  padding-top: calc(5vh + 20px);
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .ttl .background h2 {
    font-size: 8vw;
  }
}
.ttl .background p {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 2.2px;
  color: #fff;
  transform: skewY(5deg);
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .ttl .background p {
    font-size: 4vw;
  }
}
.mv {
  margin-top: 50px;
  padding-bottom: calc(5vh + 20px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: calc(20px + 30px);
    padding-bottom: calc(5vh + 10px);
  }
}
.mv img {
  position: absolute;
  top: 0;
  right: 0;
  width: 1096px;
  height: 559px;
}
@media screen and (max-width: 1023px) {
  .mv img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .mv img {
    width: 100%;
    height: auto;
  }
}
.mv h1 {
  position: relative;
  height: 50vh;
  font-size: 5rem;
  font-weight: bold;
  color: #0fd0d3;
  text-indent: -1px;
  line-height: 1.7;
  z-index: 5;
  padding-top: 150px;
  padding-bottom: 10px;
  margin-left: min(12%, 85px);
}
@media screen and (max-width: 1023px) {
  .mv h1 {
    font-size: 5.5vw;
    align-items: flex-start;
    margin-left: min(7%, 85px);
    padding-top: 42%;
    height: 5vh;
  }
}
.serviceArea {
  margin-bottom: 30px !important;
  margin-top: 50px;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .serviceArea {
    margin: 0!important;
  }
}
.serviceArea .service_flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 70px 0 30px 0;
}
@media screen and (max-width: 767px) {
  .serviceArea .service_flex {
    display: block;
  }
}
.serviceArea .service_flex:nth-child(2),
.serviceArea .service_flex:nth-child(4) {
  flex-direction: row-reverse;
}
.serviceArea .service_flex .service_img img {
  width: 100%;
  height: auto;
}
.serviceArea .service_flex .service_box {
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: center;
}
.serviceArea .service_flex .service_box.ai_fs {
  align-items: flex-start;
}
.serviceArea .service_flex .service_box.ai_c {
  align-items: center;
}
.serviceArea .service_flex .service_box.ai_fe {
  align-items: flex-end;
}
.serviceArea .service_flex .service_box.jc_fs {
  justify-content: flex-start;
}
.serviceArea .service_flex .service_box.jc_c {
  justify-content: center;
}
.serviceArea .service_flex .service_box .flexText {
  flex: 1;
}
.serviceArea .service_flex .service_box .flexImg {
  text-align: center;
}
.serviceArea .service_flex .service_box .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  .serviceArea .service_flex .service_box.sp_column {
    flex-direction: column;
  }
  .serviceArea .service_flex .service_box.sp_column .flexText {
    display: contents;
  }
  .serviceArea .service_flex .service_box.sp_block {
    display: block;
  }
}
.serviceArea .service_flex .service_box .service_text h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c73a5;
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .serviceArea .service_flex .service_box .service_text h3 {
    font-size: 5vw;
    text-align: left;
  }
}
.serviceArea .service_flex .service_box .service_text p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .serviceArea .service_flex .service_box .service_text p {
    font-size: 3.2vw;
    width: 100%;
    text-align: left;
  }
}
.serviceArea .service_flex .service_box .service_count p {
  font-size: 20rem;
  color: #2c73a5;
  opacity: 0.6;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .serviceArea .service_flex .service_box .service_count p {
    font-size: 20vw;
  }
}
.trainerArea {
  margin-top: 100px;
  background: #f4faff;
}
.trainerArea .trainer .senior_message {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_message {
    display: block;
    text-align: center;
  }
}
.trainerArea .trainer .senior_message .senior_img {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_message .senior_img {
    padding-top: 20px;
  }
}
.trainerArea .trainer .senior_message .senior_img img {
  width: 417px;
  height: 502px;
  box-shadow: #000000;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_message .senior_img img {
    width: 100%;
    height: auto;
  }
}
.trainerArea .trainer .senior_message .senior_img .c-btn {
  width: 100%;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_message .senior_img .c-btn {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.trainerArea .trainer .senior_message .senior_img .c-btn:hover {
  opacity: 0.7;
  transition: 0.5s;
  background: #2c73a5;
}
.trainerArea .trainer .senior_message .senior_img .c-btn:hover p {
  color: #fff;
}
.trainerArea .trainer .senior_message .senior_img .c-btn:hover i {
  color: #fff;
}
.trainerArea .trainer .senior_message .senior_img p {
  border: 1px solid #2c73a5;
  border-top: none;
  text-align: center;
  font-size: 1.8rem;
  color: #2c73a5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_message .senior_img p {
    font-size: 3.6vw;
  }
}
.trainerArea .trainer .senior_message .senior_img p i {
  position: absolute;
  right: 1rem;
  color: #2c73a5;
}
.trainerArea .trainer .senior_box {
  overflow: visible;
}
.trainerArea .trainer .senior_box .senior_intro {
  width: calc(100vw - 17px);
  margin-left: calc(-50vw + 50%);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_box .senior_intro {
    width: 100%;
    margin: 0;
    background-color: #f0f0f0;
  }
}
.trainerArea .trainer .senior_box .senior_intro .inner {
  position: relative;
  z-index: 10;
}
.trainerArea .trainer .senior_box .senior1_box {
  background: linear-gradient(105deg, #f0f0f0 85%, transparent 85%);
}
.trainerArea .trainer .senior_box .senior2_box {
  background: linear-gradient(105deg, transparent 15%, #f0f0f0 15%);
}
.trainerArea .trainer .senior_box .senior2_box .senior_flex {
  flex-direction: row-reverse;
}
.trainerArea .trainer .senior_box .senior3_box {
  background: linear-gradient(105deg, #f0f0f0 85%, transparent 85%);
}
.trainerArea .trainer .senior_box .senior3_box .senior_flex .senior3_img {
  padding: 3rem 4rem 4rem 0;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_box .senior3_box .senior_flex .senior3_img {
    padding: 0;
  }
}
.trainerArea .trainer .senior_box .senior_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_box .senior_flex {
    display: block;
    text-align: center;
  }
}
.trainerArea .trainer .senior_box .senior_flex .senior_img {
  padding: 2rem 4rem 2rem 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_box .senior_flex .senior_img {
    padding: 2rem 0 2rem 0;
  }
}
.trainerArea .trainer .senior_box .senior_flex .senior_img img {
  width: 324px;
  height: 453px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_box .senior_flex .senior_img img {
    width: 90%;
    height: auto;
  }
}
.trainerArea .trainer .senior_box .senior_flex .senior1_text h3,
.trainerArea .trainer .senior_box .senior_flex .senior2_text h3,
.trainerArea .trainer .senior_box .senior_flex .senior3_text h3 {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_box .senior_flex .senior1_text h3,
  .trainerArea .trainer .senior_box .senior_flex .senior2_text h3,
  .trainerArea .trainer .senior_box .senior_flex .senior3_text h3 {
    font-size: 6vw;
    padding-top: 10px;
  }
}
.trainerArea .trainer .senior_box .senior_flex .senior1_text p,
.trainerArea .trainer .senior_box .senior_flex .senior2_text p,
.trainerArea .trainer .senior_box .senior_flex .senior3_text p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_box .senior_flex .senior1_text p,
  .trainerArea .trainer .senior_box .senior_flex .senior2_text p,
  .trainerArea .trainer .senior_box .senior_flex .senior3_text p {
    font-size: 3.2vw;
    padding-bottom: 2rem;
  }
}
.trainerArea .trainer .senior_box .senior_flex .senior1_text p.weightBold span,
.trainerArea .trainer .senior_box .senior_flex .senior2_text p.weightBold span,
.trainerArea .trainer .senior_box .senior_flex .senior3_text p.weightBold span {
  color: #0072bb;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .trainerArea .trainer .senior_box .senior_flex .senior1_text p.weightBold span,
  .trainerArea .trainer .senior_box .senior_flex .senior2_text p.weightBold span,
  .trainerArea .trainer .senior_box .senior_flex .senior3_text p.weightBold span {
    font-size: 3.6vw;
  }
}
.trainerArea .trainer .senior_box .senior_flex .senior1_text p.weightBold span:last-child,
.trainerArea .trainer .senior_box .senior_flex .senior2_text p.weightBold span:last-child,
.trainerArea .trainer .senior_box .senior_flex .senior3_text p.weightBold span:last-child {
  color: #c11111;
}
#Fee {
  padding: 50px 0;
}
.FeeArea .Fee_flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .FeeArea .Fee_flex {
    display: block;
  }
}
.FeeArea .Fee_flex .Fee_card {
  background: #fff;
  box-shadow: 0 0 10px rgba(161, 161, 161, 0.3);
  text-align: center;
  width: 33.333333%;
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .FeeArea .Fee_flex .Fee_card {
    width: 100%;
  }
}
.FeeArea .Fee_flex .Fee_card.featured img {
  position: absolute;
  top: -1%;
  left: 5%;
  width: 70px;
  height: 70px;
  z-index: 10;
}
.FeeArea .Fee_flex .Fee_card.featured .Fee_top {
  background-color: #87ceeb;
}
.FeeArea .Fee_flex .Fee_card:nth-child(1) .Fee_top {
  background-color: #d3d3d3;
}
.FeeArea .Fee_flex .Fee_card:nth-child(3) .Fee_top {
  background-color: #00709c;
}
.FeeArea .Fee_flex .Fee_card .Fee_top {
  height: 15px;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.FeeArea .Fee_flex .Fee_card h2 {
  font-size: 2.5rem;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .FeeArea .Fee_flex .Fee_card h2 {
    font-size: 6vw;
  }
}
.FeeArea .Fee_flex .Fee_card .price {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1px solid #dadada;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .FeeArea .Fee_flex .Fee_card .price {
    font-size: 4vw;
  }
}
.FeeArea .Fee_flex .Fee_card .price span {
  color: red;
  font-size: 4.5rem;
}
@media screen and (max-width: 767px) {
  .FeeArea .Fee_flex .Fee_card .price span {
    font-size: 9vw;
  }
}
.FeeArea .Fee_flex .Fee_card .features li {
  font-size: 1.6rem;
  text-align: left;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .FeeArea .Fee_flex .Fee_card .features li {
    font-size: 3.2vw;
  }
}
.FeeArea .Fee_flex .Fee_card .features li .fa-solid {
  margin-right: 10px;
}
.FeeArea .Fee_flex .Fee_card a .cta_button {
  padding: 5px 25px;
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-weight: 600;
  background: #15b7b9;
  color: #fff;
  border: 2px solid #15b7b9;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .FeeArea .Fee_flex .Fee_card a .cta_button {
    font-size: 3.6vw;
  }
}
.FeeArea .Fee_flex .Fee_card a .cta_button:hover {
  background: #fff;
  border-color: #15b7b9;
  color: #15b7b9;
}
.voiceArea {
  background: #fbf4dd;
}
.voiceArea .voice_box .voice_ttl h3 {
  font-size: 4rem;
  letter-spacing: 1.5;
  color: #000;
  text-align: center;
  padding-top: 50px;
}
.voiceArea .voice_box .archive-list {
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 0;
}
.voiceArea .voice_box .archive-list.ai_fs {
  align-items: flex-start;
}
.voiceArea .voice_box .archive-list.ai_c {
  align-items: center;
}
.voiceArea .voice_box .archive-list.ai_fe {
  align-items: flex-end;
}
.voiceArea .voice_box .archive-list.jc_fs {
  justify-content: flex-start;
}
.voiceArea .voice_box .archive-list.jc_c {
  justify-content: center;
}
.voiceArea .voice_box .archive-list .flexText {
  flex: 1;
}
.voiceArea .voice_box .archive-list .flexImg {
  text-align: center;
}
.voiceArea .voice_box .archive-list .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  .voiceArea .voice_box .archive-list.sp_column {
    flex-direction: column;
  }
  .voiceArea .voice_box .archive-list.sp_column .flexText {
    display: contents;
  }
  .voiceArea .voice_box .archive-list.sp_block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .voiceArea .voice_box .archive-list {
    display: block;
    padding: 10px 0;
  }
}
.voiceArea .voice_box .archive-list .archive-item {
  width: 30%;
  padding: 10px;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .voiceArea .voice_box .archive-list .archive-item {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 2rem;
  }
}
.voiceArea .voice_box .archive-list .archive-item .archive-img-wrap {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 10px;
  text-align: center;
}
.voiceArea .voice_box .archive-list .archive-item .archive-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voiceArea .voice_box .archive-list .archive-item:not(:nth-child(3n)) {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .voiceArea .voice_box .archive-list .archive-item:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.voiceArea .voice_box .archive-list .archive-item .text {
  padding: 10px;
  flex-grow: 1;
}
.voiceArea .voice_box .archive-list .archive-item .text .archive-sub {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 5px;
  color: #ffc400;
}
@media screen and (max-width: 767px) {
  .voiceArea .voice_box .archive-list .archive-item .text .archive-sub {
    font-size: 3.2vw;
  }
}
.voiceArea .voice_box .archive-list .archive-item .text .archive-sub.men {
  color: #0072bb;
}
.voiceArea .voice_box .archive-list .archive-item .text .archive-sub.cup {
  color: #c11111;
}
.voiceArea .voice_box .archive-list .archive-item .text .archive-ttl {
  margin: 0 0 10px 0;
  line-height: 1.5;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .voiceArea .voice_box .archive-list .archive-item .text .archive-ttl {
    font-size: 3.2vw;
  }
}
.voiceArea .voice_box .archive-list .archive-item .text .archive-ttl span {
  color: #ff0000;
}
.voiceArea .voice_box .archive-list:nth-child(2) .archive-item:not(:nth-child(3n)) {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .voiceArea .voice_box .archive-list:nth-child(2) .archive-item:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.cp_qa04 {
  padding: 30px 0;
}
.cp_qa04 .cp_actab {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.cp_qa04 .cp_actab input[type="checkbox"] {
  display: none;
}
.cp_qa04 .cp_actab input[type="checkbox"]:checked + label + .cp_actab-content {
  max-height: 500px;
  /* 適切な値に調整 */
  opacity: 1;
  padding: 15px;
}
.cp_qa04 .cp_actab input[type="checkbox"]:checked + label span::after {
  transform: rotate(135deg);
}
.cp_qa04 .cp_actab label {
  display: block;
  padding: 15px;
  cursor: pointer;
  background-color: #f9f9f9;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cp_qa04 .cp_actab label {
    font-size: 3.6vw;
  }
}
.cp_qa04 .cp_actab label span {
  display: block;
  position: relative;
  padding-right: 30px;
}
.cp_qa04 .cp_actab label span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.cp_qa04 .cp_actab .cp_actab-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  background-color: #fff;
  padding: 0 15px;
}
.cp_qa04 .cp_actab .cp_actab-content p {
  font-size: 1.6rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .cp_qa04 .cp_actab .cp_actab-content p {
    font-size: 3.2vw;
  }
}
input {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  input {
    font-size: 3.6vw;
  }
}
input[type="text"],
input[type="email"],
input[type="password"] {
  max-width: 710px;
  width: 100%;
  padding: 5px;
  padding-top: 10px;
  border-radius: 20%;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    max-width: none;
  }
}
input[type="submit"] {
  -webkit-appearance: none;
  cursor: pointer;
  max-width: 270px;
  width: 100%;
  height: 46px;
  background: #333;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  border: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  input[type="submit"] {
    font-size: 4vw;
    height: auto;
    padding: 3vw 10px;
  }
}
input[type="submit"].btn {
  background: #D90000;
}
input[type="button"] {
  -webkit-appearance: none;
  cursor: pointer;
}
textarea {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  max-width: 510px;
  width: 100%;
  height: 312px;
  padding: 10px;
  background: #eaeaea;
  border: none;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  textarea {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 767px) {
  textarea {
    max-width: none;
    height: 40vw;
  }
}
select {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  select {
    font-size: 3.6vw;
  }
}
label {
  display: inline-block;
  cursor: pointer;
}
button {
  -webkit-appearance: none;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  button {
    font-size: 3.6vw;
  }
}
::-webkit-input-placeholder {
  color: #ddd;
}
::-moz-placeholder {
  color: #ddd;
}
.inputL {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .inputL {
    width: 100%;
  }
}
.inputM {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .inputM {
    width: 80%;
  }
}
.inputS {
  width: 100px;
}
.inputSS {
  width: 60px;
}
.help {
  color: #666;
  font-size: 92.8%;
  vertical-align: middle;
}
.submit {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .submit {
    flex-direction: column;
  }
}
.submit .btn {
  order: 1;
}
@media screen and (max-width: 767px) {
  .submit .btn {
    order: -1;
  }
}
.complete .btn {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .complete .btn {
    font-size: 4vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
#header {
  margin-top: 10px !important;
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  padding: 0 20px;
  top: 0;
  z-index: 999;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
#header.ai_fs {
  align-items: flex-start;
}
#header.ai_c {
  align-items: center;
}
#header.ai_fe {
  align-items: flex-end;
}
#header.jc_fs {
  justify-content: flex-start;
}
#header.jc_c {
  justify-content: center;
}
#header .flexText {
  flex: 1;
}
#header .flexImg {
  text-align: center;
}
#header .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  #header.sp_column {
    flex-direction: column;
  }
  #header.sp_column .flexText {
    display: contents;
  }
  #header.sp_block {
    display: block;
  }
}
#header .header_img {
  margin-top: 20px !important;
}
@media screen and (max-width: 1340px) {
  #header .header_img img {
    width: 150px;
  }
}
#header .header_nav {
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: center;
}
#header .header_nav.ai_fs {
  align-items: flex-start;
}
#header .header_nav.ai_c {
  align-items: center;
}
#header .header_nav.ai_fe {
  align-items: flex-end;
}
#header .header_nav.jc_fs {
  justify-content: flex-start;
}
#header .header_nav.jc_c {
  justify-content: center;
}
#header .header_nav .flexText {
  flex: 1;
}
#header .header_nav .flexImg {
  text-align: center;
}
#header .header_nav .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  #header .header_nav.sp_column {
    flex-direction: column;
  }
  #header .header_nav.sp_column .flexText {
    display: contents;
  }
  #header .header_nav.sp_block {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  #header .header_nav {
    display: none;
  }
}
#header .header_nav .header_ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: flex-end;
}
#header .header_nav .header_ul li {
  font-size: 2rem;
  font-weight: 500;
  padding: 10px;
  list-style: none;
}
@media screen and (max-width: 1340px) {
  #header .header_nav .header_ul li {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  #header .header_nav .header_ul li {
    font-size: 4vw;
  }
}
#header .header_nav .header_ul li a {
  text-decoration: none;
  color: #333;
}
#header .header_nav .header_ul li a:hover {
  opacity: 0.9;
  color: #ff0000;
  transition: 0.5s;
}
#header .header_nav .header_ul.box {
  background: none;
}
#header .header_nav .header_ul.box li {
  padding: 5px 25px;
  font-size: 1.8rem;
  font-weight: 600;
  background: #15b7b9;
  border: 2px solid #15b7b9;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  #header .header_nav .header_ul.box li {
    font-size: 3.6vw;
  }
}
#header .header_nav .header_ul.box li a {
  color: #fff;
  text-decoration: none;
  display: block;
}
#header .header_nav .header_ul.box li a:hover {
  color: #15b7b9;
}
#header .header_nav .header_ul.box li:hover {
  background: #fff;
  border-color: #15b7b9;
}
#header .header_nav .header_ul.box li:hover a {
  color: #15b7b9;
}
#header .header_wrap {
  display: none;
}
@media screen and (max-width: 1200px) {
  #header .header_wrap {
    display: block;
    margin-top: 10px;
  }
  #header .header_wrap .header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;
    color: #fff;
    padding: 0 25px;
    margin-right: auto;
    margin-left: auto;
  }
  #header .header_wrap .header_container input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  #header .header_wrap .header_container .hamburger {
    display: block;
    width: 50px;
    height: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  #header .header_wrap .header_container .hamburger span {
    position: absolute;
    display: block;
    content: "";
    width: 90%;
    height: 2px;
    background-color: #000000;
    transition: all 0.5s;
  }
  #header .header_wrap .header_container .hamburger span::before {
    top: -15px;
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.5s;
  }
  #header .header_wrap .header_container .hamburger span::after {
    bottom: -15px;
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.5s;
  }
  #header .header_wrap .header_container input[type="checkbox"]:checked + .hamburger span {
    background-color: transparent;
  }
  #header .header_wrap .header_container input[type="checkbox"]:checked + .hamburger span::before {
    top: 0;
    transform: rotate(45deg);
  }
  #header .header_wrap .header_container input[type="checkbox"]:checked + .hamburger span::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
  #header .header_wrap .header_container .nav {
    position: fixed;
    width: calc(100vw * 0.5);
    height: 100vh;
    top: 80px;
    right: -120%;
    background-color: #adadad;
    color: #fff;
    padding: 50px 0;
    border-top: 1px solid #fff;
    transition: all 0.5s;
    text-align: center;
  }
  #header .header_wrap .header_container .nav .nav_list {
    padding: 10px;
    list-style: none;
  }
  #header .header_wrap .header_container .nav .nav_list .nav_item > a {
    display: block;
    font-size: 2rem;
    padding: 20px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
  }
  #header .header_wrap .header_container .nav .nav_list .nav_item > a:hover {
    color: #0F37C6;
    background-color: #fff;
  }
  #header .header_wrap .header_container .nav .nav_list .nav_item:last-child a,
  #header .header_wrap .header_container .nav .nav_list .nav_item:nth-last-child(2) a {
    padding: 15px 5px;
    font-size: 1.8rem;
    font-weight: 600;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: min(5vw, 20px);
    background: #15b7b9;
    border: 2px solid #15b7b9;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  #header .header_wrap .header_container .nav .nav_list .nav_item:last-child a:hover,
  #header .header_wrap .header_container .nav .nav_list .nav_item:nth-last-child(2) a:hover {
    background: #fff;
    border-color: #15b7b9;
    color: #15b7b9;
  }
  #header .header_wrap .header_container input[type="checkbox"]:checked ~ .nav {
    right: 0;
  }
}
@media screen and (max-width: 1200px) and screen and (max-width: 767px) {
  #header .header_wrap .header_container .nav .nav_list .nav_item > a {
    font-size: 4vw;
  }
}
@media screen and (max-width: 1200px) and screen and (max-width: 767px) {
  #header .header_wrap .header_container .nav .nav_list .nav_item:last-child a,
  #header .header_wrap .header_container .nav .nav_list .nav_item:nth-last-child(2) a {
    font-size: 3.6vw;
  }
}
#header.hidden {
  background: #ffffff;
  box-shadow: 0 10px 10px 0 rgba(187, 187, 187, 0.5);
}
/*+++++++++++++++++++++++++++++++++++++++++++
	フッター
+++++++++++++++++++++++++++++++++++++++++++ */
footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
footer .footer-logo img {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}
footer .footer-logo p {
  font-size: 14px;
  margin: 5px 0;
  color: #ddd;
}
footer .footer-nav {
  margin: 20px 0;
}
footer .footer-nav ul {
  list-style: none;
  padding: 0;
}
footer .footer-nav ul li {
  display: inline-block;
  margin: 0 15px;
}
footer .footer-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
footer .footer-nav ul li a:hover {
  color: #ff6600;
}
footer .footer-contact {
  font-size: 14px;
  margin: 20px 0;
}
footer .footer-contact p {
  margin: 5px 0;
  color: #bbb;
}
footer .footer-social {
  margin: 20px 0;
}
footer .footer-social a {
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  text-decoration: none;
}
footer .footer-social a:hover {
  color: #ff6600;
}
footer .footer-newsletter form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}
footer .footer-newsletter form label {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ddd;
}
footer .footer-newsletter form input[type="email"] {
  padding: 10px;
  width: 250px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}
footer .footer-newsletter form button {
  background-color: #ff6600;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}
footer .footer-newsletter form button:hover {
  background-color: #e65a00;
}
footer .footer-legal {
  margin: 20px 0;
}
footer .footer-legal a {
  color: #bbb;
  font-size: 12px;
  text-decoration: none;
  margin: 0 5px;
}
footer .footer-legal a:hover {
  color: #ff6600;
}
footer .footer-copyright {
  font-size: 12px;
  color: #666;
  margin-top: 20px;
}
@media (max-width: 768px) {
  footer {
    text-align: left;
  }
  footer .footer-logo,
  footer .footer-contact,
  footer .footer-social,
  footer .footer-newsletter,
  footer .footer-legal {
    margin-bottom: 20px;
  }
  footer .footer-nav ul li {
    display: block;
    margin: 10px 0;
  }
  footer .footer-newsletter form {
    align-items: flex-start;
  }
  footer .footer-newsletter form input[type="email"] {
    width: 100%;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
  color: #000;
  text-underline-offset: 3px;
}
a:focus {
  outline: none;
}
a:hover,
a:active {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover img {
  opacity: 0.7;
  transition: all 0.3s ease;
}
a:hover img.noOpacity {
  opacity: 1;
}
a.link::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7.5px;
  border-color: transparent transparent transparent #2da7e0;
  margin: 0 3px 0 0;
  vertical-align: baseline;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  cursor: text;
  color: inherit;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
    cursor: pointer;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ error */
.err {
  background-color: #fcc !important;
}
.error {
  color: #f00;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	汎用
+++++++++++++++++++++++++++++++++++++++++++ */
.clear {
  clear: both;
}
.texCenter {
  text-align: center !important;
}
.texLeft {
  text-align: left !important;
}
.texRight {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .texCenter_sp {
    text-align: center!important;
  }
  .texLeft_sp {
    text-align: left!important;
  }
  .texRight_sp {
    text-align: right!important;
  }
}
.weightNormal {
  font-weight: 500 !important;
}
.weightBold {
  font-weight: bold !important;
}
.borderNone {
  border: none !important;
}
.overflowHidden {
  overflow: hidden;
}
.lineHeight20 {
  line-height: 2;
}
.lineHeight19 {
  line-height: 1.9;
}
.lineHeight18 {
  line-height: 1.8;
}
.lineHeight17 {
  line-height: 1.7;
}
.lineHeight16 {
  line-height: 1.6;
}
.lineHeight15 {
  line-height: 1.5;
}
.lineHeight14 {
  line-height: 1.4;
}
.lineHeight13 {
  line-height: 1.3;
}
.lineHeight12 {
  line-height: 1.2;
}
.iBlock {
  display: inline-block;
}
.inline {
  display: inline;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	color
+++++++++++++++++++++++++++++++++++++++++++ */
.colorRed {
  color: #D90000;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	font-size
+++++++++++++++++++++++++++++++++++++++++++ */
.fs10 {
  font-size: 1rem !important;
}
.fs11 {
  font-size: 1.1rem !important;
}
.fs12 {
  font-size: 1.2rem !important;
}
.fs13 {
  font-size: 1.3rem !important;
}
.fs14 {
  font-size: 1.4rem !important;
}
.fs15 {
  font-size: 1.5rem !important;
}
.fs16 {
  font-size: 1.6rem !important;
}
.fs17 {
  font-size: 1.7rem !important;
}
.fs18 {
  font-size: 1.8rem !important;
}
.fs19 {
  font-size: 1.9rem !important;
}
.fs20 {
  font-size: 2rem !important;
}
.fs21 {
  font-size: 2.1rem !important;
}
.fs22 {
  font-size: 2.2rem !important;
}
.fs23 {
  font-size: 2.3rem !important;
}
.fs24 {
  font-size: 2.4rem !important;
}
.fs25 {
  font-size: 2.5rem !important;
}
.fs26 {
  font-size: 2.6rem !important;
}
.fs27 {
  font-size: 2.7rem !important;
}
.fs28 {
  font-size: 2.8rem !important;
}
.fs29 {
  font-size: 2.9rem !important;
}
.fs30 {
  font-size: 3rem !important;
}
.fs32 {
  font-size: 3.2rem !important;
}
.fs34 {
  font-size: 3.4rem !important;
}
.fs36 {
  font-size: 3.6rem !important;
}
.fs38 {
  font-size: 3.8rem !important;
}
.fs40 {
  font-size: 4rem !important;
}
.fs42 {
  font-size: 4.2rem !important;
}
.fs44 {
  font-size: 4.4rem !important;
}
.fs46 {
  font-size: 4.6rem !important;
}
.fs48 {
  font-size: 4.8rem !important;
}
@media screen and (max-width: 767px) {
  .fs10 {
    font-size: 2vw!important;
  }
  .fs11 {
    font-size: 2.2vw !important;
  }
  .fs12 {
    font-size: 2.4vw !important;
  }
  .fs13 {
    font-size: 2.6vw !important;
  }
  .fs14 {
    font-size: 2.8vw !important;
  }
  .fs15 {
    font-size: 3vw!important;
  }
  .fs16 {
    font-size: 3.2vw !important;
  }
  .fs17 {
    font-size: 3.4vw !important;
  }
  .fs18 {
    font-size: 3.6vw !important;
  }
  .fs19 {
    font-size: 3.8vw !important;
  }
  .fs20 {
    font-size: 4vw!important;
  }
  .fs21 {
    font-size: 4.2vw !important;
  }
  .fs22 {
    font-size: 4.4vw !important;
  }
  .fs23 {
    font-size: 4.6vw !important;
  }
  .fs24 {
    font-size: 4.8vw !important;
  }
  .fs25 {
    font-size: 5vw!important;
  }
  .fs26 {
    font-size: 5.2vw !important;
  }
  .fs27 {
    font-size: 5.4vw !important;
  }
  .fs28 {
    font-size: 5.6vw !important;
  }
  .fs29 {
    font-size: 5.8vw !important;
  }
  .fs30 {
    font-size: 6vw!important;
  }
  .fs32 {
    font-size: 6.4vw !important;
  }
  .fs34 {
    font-size: 6.8vw !important;
  }
  .fs36 {
    font-size: 7.2vw !important;
  }
  .fs38 {
    font-size: 7.6vw !important;
  }
  .fs40 {
    font-size: 8vw!important;
  }
  .fs42 {
    font-size: 8.4vw !important;
  }
  .fs44 {
    font-size: 8.8vw !important;
  }
  .fs46 {
    font-size: 9.2vw !important;
  }
  .fs48 {
    font-size: 9.6vw !important;
  }
  .fs10_sp {
    font-size: 2vw!important;
  }
  .fs11_sp {
    font-size: 2.2vw !important;
  }
  .fs12_sp {
    font-size: 2.4vw !important;
  }
  .fs13_sp {
    font-size: 2.6vw !important;
  }
  .fs14_sp {
    font-size: 2.8vw !important;
  }
  .fs15_sp {
    font-size: 3vw!important;
  }
  .fs16_sp {
    font-size: 3.2vw !important;
  }
  .fs17_sp {
    font-size: 3.4vw !important;
  }
  .fs18_sp {
    font-size: 3.6vw !important;
  }
  .fs19_sp {
    font-size: 3.8vw !important;
  }
  .fs20_sp {
    font-size: 4vw!important;
  }
  .fs21_sp {
    font-size: 4.2vw !important;
  }
  .fs22_sp {
    font-size: 4.4vw !important;
  }
  .fs23_sp {
    font-size: 4.6vw !important;
  }
  .fs24_sp {
    font-size: 4.8vw !important;
  }
  .fs25_sp {
    font-size: 5vw!important;
  }
  .fs26_sp {
    font-size: 5.2vw !important;
  }
  .fs27_sp {
    font-size: 5.4vw !important;
  }
  .fs28_sp {
    font-size: 5.6vw !important;
  }
  .fs29_sp {
    font-size: 5.8vw !important;
  }
  .fs30_sp {
    font-size: 6vw!important;
  }
  .fs32_sp {
    font-size: 6.4vw !important;
  }
  .fs34_sp {
    font-size: 6.8vw !important;
  }
  .fs36_sp {
    font-size: 7.2vw !important;
  }
  .fs38_sp {
    font-size: 7.6vw !important;
  }
  .fs40_sp {
    font-size: 8vw!important;
  }
  .fs42_sp {
    font-size: 8.4vw !important;
  }
  .fs44_sp {
    font-size: 8.8vw !important;
  }
  .fs46_sp {
    font-size: 9.2vw !important;
  }
  .fs48_sp {
    font-size: 9.6vw !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	margin
+++++++++++++++++++++++++++++++++++++++++++ */
.mt0 {
  margin-top: 0 !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mr0 {
  margin-right: 0 !important;
}
.mr5 {
  margin-right: 5px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.mr35 {
  margin-right: 35px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.mr45 {
  margin-right: 45px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.ml0 {
  margin-left: 0 !important;
}
.ml5 {
  margin-left: 5px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.ml35 {
  margin-left: 35px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.ml45 {
  margin-left: 45px !important;
}
.ml50 {
  margin-left: 50px !important;
}
@media screen and (max-width: 767px) {
  .mt0_sp {
    margin-top: 0px!important;
  }
  .mt5_sp {
    margin-top: 5px!important;
  }
  .mt10_sp {
    margin-top: 10px!important;
  }
  .mt15_sp {
    margin-top: 15px!important;
  }
  .mt20_sp {
    margin-top: 20px!important;
  }
  .mt25_sp {
    margin-top: 25px!important;
  }
  .mt30_sp {
    margin-top: 30px!important;
  }
  .mt35_sp {
    margin-top: 35px!important;
  }
  .mt40_sp {
    margin-top: 40px!important;
  }
  .mt45_sp {
    margin-top: 45px!important;
  }
  .mt50_sp {
    margin-top: 50px!important;
  }
  .mb0_sp {
    margin-bottom: 0px!important;
  }
  .mb5_sp {
    margin-bottom: 5px!important;
  }
  .mb10_sp {
    margin-bottom: 10px!important;
  }
  .mb15_sp {
    margin-bottom: 15px!important;
  }
  .mb20_sp {
    margin-bottom: 20px!important;
  }
  .mb25_sp {
    margin-bottom: 25px!important;
  }
  .mb30_sp {
    margin-bottom: 30px!important;
  }
  .mb35_sp {
    margin-bottom: 35px!important;
  }
  .mb40_sp {
    margin-bottom: 40px!important;
  }
  .mb45_sp {
    margin-bottom: 45px!important;
  }
  .mb50_sp {
    margin-bottom: 50px!important;
  }
  .mr0_sp {
    margin-right: 0px!important;
  }
  .mr5_sp {
    margin-right: 5px!important;
  }
  .mr10_sp {
    margin-right: 10px!important;
  }
  .mr15_sp {
    margin-right: 15px!important;
  }
  .mr20_sp {
    margin-right: 20px!important;
  }
  .mr25_sp {
    margin-right: 25px!important;
  }
  .mr30_sp {
    margin-right: 30px!important;
  }
  .mr35_sp {
    margin-right: 35px!important;
  }
  .mr40_sp {
    margin-right: 40px!important;
  }
  .mr45_sp {
    margin-right: 45px!important;
  }
  .mr50_sp {
    margin-right: 50px!important;
  }
  .ml0_sp {
    margin-left: 0px!important;
  }
  .ml5_sp {
    margin-left: 5px!important;
  }
  .ml10_sp {
    margin-left: 10px!important;
  }
  .ml15_sp {
    margin-left: 15px!important;
  }
  .ml20_sp {
    margin-left: 20px!important;
  }
  .ml25_sp {
    margin-left: 25px!important;
  }
  .ml30_sp {
    margin-left: 30px!important;
  }
  .ml35_sp {
    margin-left: 35px!important;
  }
  .ml40_sp {
    margin-left: 40px!important;
  }
  .ml45_sp {
    margin-left: 45px!important;
  }
  .ml50_sp {
    margin-left: 50px!important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	TB用、SP用
+++++++++++++++++++++++++++++++++++++++++++ */
.tb_show,
.sp_show {
  display: none;
}
@media screen and (max-width: 1023px) {
  .tb_hide {
    display: none;
  }
  .tb_show {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp_hide {
    display: none;
  }
  .sp_show {
    display: block;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ clearfix */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	パーツ（色々なページで使うスタイル）
+++++++++++++++++++++++++++++++++++++++++++ */
.box {
  background: #eee;
  padding: 15px;
}
.photoFrame {
  -webkit-box-shadow: 1px 1px 3px #999;
  box-shadow: 1px 1px 3px #999;
}
ul.iBlock {
  display: block;
}
ul.iBlock li {
  display: inline-block;
  margin: 0 15px 5px 0;
}
.btn {
  background: #C11111;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: max-content;
  text-decoration: none;
  line-height: 1;
  position: relative;
  max-width: 430px;
  width: 100%;
  height: 62px;
  padding: 5px 20px;
  font-size: 2.8rem;
  border-radius: 4px;
}
.btn .arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 90%;
    height: auto;
    padding: 3vw 10px;
    font-size: 5.6vw;
  }
}
.columnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox > * {
  display: block;
  width: 49%;
}
.columnBox::before,
.columnBox::after {
  content: '';
  order: 1;
  display: block;
  width: 49%;
}
.columnBox.col3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox.col3 > * {
  display: block;
  width: 32%;
}
.columnBox.col3::before,
.columnBox.col3::after {
  content: '';
  order: 1;
  display: block;
  width: 32%;
}
.columnBox.col4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox.col4 > * {
  display: block;
  width: 24%;
}
.columnBox.col4::before,
.columnBox.col4::after {
  content: '';
  order: 1;
  display: block;
  width: 24%;
}
@media screen and (max-width: 767px) {
  .columnBox.col1_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col1_sp > * {
    display: block;
    width: 100%;
  }
  .columnBox.col1_sp::before,
  .columnBox.col1_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 100%;
  }
  .columnBox.col2_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col2_sp > * {
    display: block;
    width: 49%;
  }
  .columnBox.col2_sp::before,
  .columnBox.col2_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 49%;
  }
  .columnBox.col3_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col3_sp > * {
    display: block;
    width: 32%;
  }
  .columnBox.col3_sp::before,
  .columnBox.col3_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 32%;
  }
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
}
.flex.ai_fs {
  align-items: flex-start;
}
.flex.ai_c {
  align-items: center;
}
.flex.ai_fe {
  align-items: flex-end;
}
.flex.jc_fs {
  justify-content: flex-start;
}
.flex.jc_c {
  justify-content: center;
}
.flex .flexText {
  flex: 1;
}
.flex .flexImg {
  text-align: center;
}
.flex .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  .flex.sp_column {
    flex-direction: column;
  }
  .flex.sp_column .flexText {
    display: contents;
  }
  .flex.sp_block {
    display: block;
  }
}
