/*
* 基本スタイル
* ┗共通スタイル
* ヘッダー
* ┗グローバルナビゲーション
* フッター
* 汎用
* パーツ
*/
/* LESS Document */
html {
  text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 750px) {
  html {
    min-width: 320px;
  }
}
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.6rem;
  font-feature-settings: "pwid";
}
@media screen and (max-width: 750px) {
  body {
    font-size: 4.2vw;
  }
}
p {
  margin-bottom: 1em;
}
p:nth-last-child(1) {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0 0 15px;
}
@media screen and (max-width: 750px) {
  figure {
    max-width: max-content;
    margin: 0 auto 20px;
  }
}
figure figcaption {
  font-size: 1rem;
  text-align: right;
}
@media screen and (max-width: 750px) {
  figure figcaption {
    font-size: 2vw;
  }
}
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: 750px) {
  .tableWrap {
    overflow: auto;
    white-space: nowrap;
  }
  .tableWrap::-webkit-scrollbar {
    background: #CCC;
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }
  .tableWrap::-webkit-scrollbar-thumb {
    background: #007CC5;
    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::before {
  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: #007CC5;
  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 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .dlList {
    flex-direction: column;
  }
}
.dlList .dl {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 5px 0;
}
@media screen and (max-width: 750px) {
  .dlList .dl {
    padding: 15px 0;
  }
}
.dlList .dl:not(:last-child) {
  border-right: #D9D9D9 1px solid;
}
@media screen and (max-width: 750px) {
  .dlList .dl:not(:last-child) {
    border-right: none;
    border-bottom: #D9D9D9 1px solid;
  }
}
.dlList .dl dt {
  color: #3D3D3D;
}
.dlList .dl dd {
  color: #007CC5;
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .dlList .dl dd {
    font-size: 6.6vw;
  }
}
.dlList .dl dd strong {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .dlList .dl dd strong {
    font-size: 10vw;
    line-height: 1;
  }
}
.dlList_01 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
}
.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: 750px) {
  .dlList_01 {
    flex-direction: column;
  }
}
.dlList_01 .dl {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 5px 0;
}
@media screen and (max-width: 750px) {
  .dlList_01 .dl {
    padding: 15px 0;
  }
}
.dlList_01 .dl:not(:last-child) {
  border-right: #D9D9D9 1px solid;
}
@media screen and (max-width: 750px) {
  .dlList_01 .dl:not(:last-child) {
    border-right: none;
    border-bottom: #D9D9D9 1px solid;
  }
}
.dlList_01 .dl dt {
  color: #3D3D3D;
}
.dlList_01 .dl dd {
  color: #007CC5;
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .dlList_01 .dl dd {
    font-size: 6.6vw;
  }
}
.dlList_01 .dl dd strong {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .dlList_01 .dl dd strong {
    font-size: 10vw;
    line-height: 1;
  }
}
@media screen and (max-width: 750px) {
  .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 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
}
.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;
}
@media screen and (max-width: 750px) {
  .dlList_02 {
    flex-direction: column;
  }
}
.dlList_02 .dl {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 5px 0;
}
@media screen and (max-width: 750px) {
  .dlList_02 .dl {
    padding: 15px 0;
  }
}
.dlList_02 .dl:not(:last-child) {
  border-right: #D9D9D9 1px solid;
}
@media screen and (max-width: 750px) {
  .dlList_02 .dl:not(:last-child) {
    border-right: none;
    border-bottom: #D9D9D9 1px solid;
  }
}
.dlList_02 .dl dt {
  color: #3D3D3D;
}
.dlList_02 .dl dd {
  color: #007CC5;
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .dlList_02 .dl dd {
    font-size: 6.6vw;
  }
}
.dlList_02 .dl dd strong {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .dlList_02 .dl dd strong {
    font-size: 10vw;
    line-height: 1;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	共通スタイル
+++++++++++++++++++++++++++++++++++++++++++ */
main {
  overflow: hidden;
}
article {
  padding: 80px 0;
}
@media screen and (max-width: 750px) {
  article {
    padding: 20px 0;
  }
}
article h2 {
  margin: 0 0 50px;
  font-size: 3.6rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  article h2 {
    margin-bottom: 20px;
    font-size: 6.8vw;
  }
}
section {
  margin: 50px 0;
  padding: 50px;
  background: #FFF;
}
@media screen and (max-width: 1023px) {
  section {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 750px) {
  section {
    margin: 20px 0;
    padding: 20px;
  }
}
section:nth-last-of-type(1) {
  margin-bottom: 0;
}
section h3 {
  margin: 0 0 30px;
  font-size: 2.8rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  section h3 {
    margin-bottom: 15px;
    font-size: 5.6vw;
  }
}
section h4 {
  color: #3D3D3D;
}
section h4::before {
  content: '■';
  color: #007CC5;
}
.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .inner {
    width: auto;
    padding: 0 20px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	mv
+++++++++++++++++++++++++++++++++++++++++++ */
.mv {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: flex-end;
  max-width: 1728px;
  height: 800px;
  padding: 0 168px 0 0;
  background: url(../img/main_visual.webp) no-repeat center calc(50% - 30px);
  position: relative;
}
@media screen and (max-width: 1535px) {
  .mv {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1439px) {
  .mv {
    padding-right: clamp(1px, 7.5%, 125px);
    background-position: calc(50% - 150px) calc(50% - 30px);
  }
}
@media screen and (max-width: 1023px) {
  .mv {
    padding-right: 25px;
    background-position: -520px calc(50% - 30px);
  }
}
@media screen and (max-width: 750px) {
  .mv {
    height: 150vw;
    padding-right: 0;
    flex-direction: column;
    background-size: 220% auto;
    background-position: calc(50% + 50px) -100px;
  }
}
.mv_text {
  color: #FFF;
}
@media screen and (max-width: 750px) {
  .mv_text {
    width: 100%;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.7) 30%, #333333 60%);
  }
}
.mv_text_top {
  margin: 0 0 20px;
  line-height: 2;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}
.mv_text_top strong {
  font-size: 2.4rem;
  border-bottom: #FFF 2px solid;
}
@media screen and (max-width: 750px) {
  .mv_text_top strong {
    font-size: 4.2vw;
  }
}
.mv_text_bottom {
  font-size: 5.6rem;
  font-weight: bold;
  line-height: 1.4;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 750px) {
  .mv_text_bottom {
    font-size: 8.4vw;
  }
}
.mv .scroll {
  position: absolute;
  right: -100px;
  bottom: 40px;
  transform: rotate(90deg);
}
@media screen and (max-width: 1535px) {
  .mv .scroll {
    display: none;
  }
}
.mv .scroll::before,
.mv .scroll::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background: #D9D9D9;
  position: absolute;
  top: 15px;
  left: -120px;
}
.mv .scroll::after {
  width: 0;
  background: #000;
  z-index: 1;
  animation: move 1.5s infinite;
}
.mv_credit {
  font-size: 1rem;
  position: absolute;
  bottom: -16px;
  right: 2px;
}
@keyframes move {
  0% {
    left: -120px;
    width: 0px;
  }
  50% {
    left: -120px;
    width: 100px;
  }
  100% {
    left: -20px;
    width: 0;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	meritArea
+++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 750px) {
  .meritArea {
    padding-top: 35px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	aboutArea
+++++++++++++++++++++++++++++++++++++++++++ */
.aboutArea {
  background: url(../img/background_01.webp) no-repeat center center / cover;
  position: relative;
}
@media screen and (max-width: 750px) {
  .aboutArea .flex {
    gap: 10px;
  }
}
@media screen and (max-width: 750px) {
  .aboutArea .flex .flexImg {
    order: -1;
  }
}
.aboutArea h2 {
  margin: 0 0 20px;
}
.aboutArea h4 {
  margin: 0 0 10px;
  font-weight: 400;
}
.aboutArea h5 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .aboutArea h5 {
    font-size: 3.2vw;
  }
}
.aboutArea h5 strong {
  font-size: 2.4rem;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .aboutArea h5 strong {
    font-size: 5.6vw;
  }
}
.aboutArea section p {
  color: #3D3D3D;
}
.aboutArea_credit {
  font-size: 1rem;
  position: absolute;
  bottom: -16px;
  right: 2px;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	ctaArea
+++++++++++++++++++++++++++++++++++++++++++ */
.ctaArea {
  margin: 50px auto 80px;
}
@media screen and (max-width: 750px) {
  .ctaArea {
    margin: 0 auto;
  }
}
.ctaArea h4 {
  margin: 0 0 80px;
  text-align: center;
  font-size: 2.8rem;
}
@media screen and (max-width: 750px) {
  .ctaArea h4 {
    margin-bottom: 20px;
    font-size: 5.6vw;
  }
}
.ctaArea h5 {
  margin: 0 0 30px;
  text-align: center;
  font-size: 2.8rem;
}
@media screen and (max-width: 750px) {
  .ctaArea h5 {
    margin-bottom: 20px;
    font-size: 5.6vw;
  }
}
@media screen and (max-width: 750px) {
  .ctaArea .btn a {
    padding-left: 10px;
  }
}
.ctaList {
  max-width: 1058px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 750px) {
  .ctaList {
    margin-bottom: 0;
  }
}
.ctaList .dl {
  height: 72px;
  margin: 0 0 20px;
  padding-top: 0;
  padding-right: 10px;
  border-color: #9E9E9E;
  text-align: left;
}
.ctaList .dl:nth-of-type(2) {
  padding-left: 50px;
}
@media screen and (max-width: 1023px) {
  .ctaList .dl:nth-of-type(2) {
    padding-left: 10px;
  }
}
@media screen and (max-width: 750px) {
  .ctaList .dl:nth-of-type(2) {
    padding-left: 10px;
  }
}
@media screen and (max-width: 750px) {
  .ctaList .dl {
    height: auto;
    margin: 0;
    padding: 5px 0;
  }
}
.ctaList .dl dt {
  margin: 0 0 5px;
  text-align: left;
  color: #000;
}
.ctaList .dl dd {
  font-size: 5.2rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .ctaList .dl dd {
    font-size: clamp(1px, 9vw, 4rem);
  }
}
.ctaList .dl dd a {
  text-decoration: none;
}
.ctaList .dl dd a:hover img {
  opacity: 1;
}
.ctaList .dl dd img {
  vertical-align: 0px;
}
@media screen and (max-width: 750px) {
  .ctaList .dl dd img.tel {
    width: 6vw;
  }
}
@media screen and (max-width: 750px) {
  .ctaList .dl dd img.ema {
    width: 75vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	supportArea
+++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 750px) {
  .supportArea {
    padding-top: 35px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	partnerArea
+++++++++++++++++++++++++++++++++++++++++++ */
.partnerArea {
  background: url(../img/background_04.webp) no-repeat center center / cover;
}
.partnerArea h2 {
  margin: 0 0 20px;
}
@media screen and (max-width: 750px) {
  .partnerArea h3 {
    margin-bottom: 0;
  }
}
.partnerArea .dlList .dl dt {
  color: #000;
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  .partnerArea .dlList .dl dt {
    margin: 0 0 5px;
  }
}
@media screen and (max-width: 750px) {
  .partnerArea .dlList .dl dd {
    font-size: 6vw;
    white-space: nowrap;
  }
}
@media screen and (max-width: 750px) {
  .partnerArea .dlList .dl dd strong {
    font-size: 9vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	voiceArea
+++++++++++++++++++++++++++++++++++++++++++ */
.voiceArea {
  padding-bottom: 0;
}
.voiceArea .voiceItem {
  margin: 0 0 50px;
  padding: 50px;
  background: #EFEFEF;
}
@media screen and (max-width: 750px) {
  .voiceArea .voiceItem {
    gap: 0;
    margin-bottom: 20px;
    padding: 20px;
  }
}
.voiceArea .voiceItem:nth-last-of-type(1) {
  margin-bottom: 0;
}
.voiceArea .voiceItem hgroup {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: #000 1px solid;
}
@media screen and (max-width: 750px) {
  .voiceArea .voiceItem hgroup {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.voiceArea .voiceItem hgroup h3 {
  color: #007CC5;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .voiceArea .voiceItem hgroup h3 {
    font-size: 4.2vw;
    text-align: center;
  }
}
.voiceArea .voiceItem hgroup h4 {
  margin-bottom: 5px;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .voiceArea .voiceItem hgroup h4 {
    font-size: 5.6vw;
  }
}
.voiceArea .voiceItem hgroup p {
  color: #3D3D3D;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	wfpArea
+++++++++++++++++++++++++++++++++++++++++++ */
.wfpArea .columnBox h3 {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: #3D3D3D 1px solid;
}
@media screen and (max-width: 750px) {
  .wfpArea .columnBox h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.wfpArea .columnBox h3::after {
  content: none;
}
.wfpArea .columnBox .columnItem {
  padding: 50px 40px;
  border: #3D3D3D 1px solid;
}
@media screen and (max-width: 1023px) {
  .wfpArea .columnBox .columnItem {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 750px) {
  .wfpArea .columnBox .columnItem {
    padding: 20px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	form
+++++++++++++++++++++++++++++++++++++++++++ */
.form {
  background: #007CC5;
  color: #FFF;
}
@media screen and (max-width: 750px) {
  .form {
    padding: 30px 0;
  }
}
.form h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .form h2 {
    margin-bottom: 20px;
    font-size: 5.2vw;
  }
}
.form a {
  color: #FFF;
}
@media screen and (max-width: 750px) {
  .form .ctaList {
    margin-bottom: 10px;
  }
}
.form .ctaList .dl dt {
  color: #FFF;
}
.form .ctaList .dl dd {
  color: #FFF;
}
.form .ctaList .dl dd img {
  filter: brightness(0) invert(100%);
}
.form .inner--width {
  max-width: 824px;
  margin: 0 auto;
  padding: 50px;
  background: #FFF;
}
@media screen and (max-width: 750px) {
  .form .inner--width {
    padding: 20px;
  }
}
.form .inner--width h3 {
  margin: 0 0 30px;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 400;
  color: #000;
}
@media screen and (max-width: 750px) {
  .form .inner--width h3 {
    margin-bottom: 10px;
    font-size: 5.6vw;
  }
}
.form .inner--width a {
  color: #000;
}
.form .form__list {
  color: #000;
}
.form .form__list dl {
  margin: 0 0 15px;
}
.form .form__list dl dt {
  margin: 0 0 5px;
}
.form .form__list dl dt strong {
  color: #F00;
}
.form .agree--check {
  margin: 0 0 30px;
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 750px) {
  .form .agree--check {
    margin-bottom: 10px;
    font-size: 4vw;
  }
}
.form .agree--check input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.form input[type="text"],
.form input[type="email"],
.form select,
.form textarea {
  border: #9E9E9E 1px solid;
  border-radius: 5px;
  background-color: #FFF;
  color: #3D3D3D;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, sans-serif;
  padding: 10px;
  width: 100%;
}
.form textarea {
  min-height: 150px;
}
.form .btn input {
  background: #000;
  max-width: 322px;
  width: 100%;
  min-height: 60px;
  padding: 5px 20px;
  text-align: center;
  color: #FFF;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 750px) {
  .form .btn input {
    font-size: 4.2vw;
  }
}
.form .btn input:hover {
  opacity: 0.7;
}
.confirm .progress-bar,
.thanks .progress-bar {
  margin-bottom: 40px;
  text-align: center;
}
.confirm .form,
.thanks .form {
  margin: 0;
  padding-bottom: 100px;
  background: #EFEFEF;
}
@media screen and (max-width: 750px) {
  .confirm .form,
  .thanks .form {
    padding: 30px 20px 50px;
  }
}
.confirm .form h2,
.thanks .form h2 {
  margin: 0 0 50px;
  font-size: 3.6rem;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 750px) {
  .confirm .form h2,
  .thanks .form h2 {
    margin-bottom: 20px;
    font-size: 7.2vw;
  }
}
.confirm .form .inner--width,
.thanks .form .inner--width {
  max-width: 1000px;
  padding: 0;
  background: none;
}
.confirm .form .form__list dl,
.thanks .form .form__list dl {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: flex-start;
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: #9E9E9E 1px solid;
}
@media screen and (max-width: 750px) {
  .confirm .form .form__list dl,
  .thanks .form .form__list dl {
    flex-direction: column;
  }
}
.confirm .form .form__list dl dt,
.thanks .form .form__list dl dt {
  width: 280px;
}
@media screen and (max-width: 750px) {
  .confirm .form .form__list dl dt,
  .thanks .form .form__list dl dt {
    width: 100%;
    font-weight: bold;
  }
}
.confirm .form .form__list dl dd,
.thanks .form .form__list dl dd {
  width: calc(100% - 280px);
}
@media screen and (max-width: 750px) {
  .confirm .form .form__list dl dd,
  .thanks .form .form__list dl dd {
    width: 100%;
  }
}
.confirm .form .submit__btn,
.thanks .form .submit__btn {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  flex-direction: row-reverse;
  justify-content: center;
  max-width: 430px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .confirm .form .submit__btn,
  .thanks .form .submit__btn {
    flex-direction: column;
    align-items: center;
  }
}
.confirm .form .submit__btn li input,
.thanks .form .submit__btn li input {
  width: 200px;
  height: 50px;
  cursor: pointer;
  transition: 0.2s;
}
.confirm .form .submit__btn li input.submitBtn,
.thanks .form .submit__btn li input.submitBtn {
  background: #000;
  color: #FFF;
}
.confirm .form .submit__btn li input.submitBtn:hover,
.thanks .form .submit__btn li input.submitBtn:hover {
  opacity: 0.7;
}
.confirm .form .submit__btn li input.confirmBtn,
.thanks .form .submit__btn li input.confirmBtn {
  border: #000 1px solid;
  background: #FFF;
  font-weight: bold;
}
.confirm .form .submit__btn li input.confirmBtn:hover,
.thanks .form .submit__btn li input.confirmBtn:hover {
  background: rgba(61, 61, 61, 0.1);
}
.thanks .form {
  min-height: calc(100vh - 90px - 140px);
  padding-bottom: 180px;
  position: relative;
}
.thanks .form .inner--width {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  flex-direction: column;
}
.thanks .form h2 {
  color: #007CC5;
}
.thanks .form p {
  color: #000;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .thanks .form p {
    text-align: left;
  }
}
.thanks .form .btn {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  text-align: center;
}
.thanks .form .btn a {
  width: 200px;
  min-height: 50px;
  border: #000 1px solid;
  background: #FFF;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .thanks .form .btn a {
    max-width: max-content;
    width: auto;
    padding: 10px;
  }
}
.thanks .form .btn a:hover {
  background: rgba(61, 61, 61, 0.1);
}
/*+++++++++++++++++++++++++++++++++++++++++++
	ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  height: 90px;
  padding: 0 10px;
}
@media screen and (max-width: 750px) {
  header .inner {
    height: 70px;
  }
}
header h1 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: center;
  color: #007CC5;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  header h1 {
    width: 100%;
    font-size: clamp(1px, 2.8vw, 1.6rem);
  }
}
@media screen and (max-width: 750px) {
  header h1 img {
    width: 120px;
  }
}
header .tel {
  line-height: 1.2;
  font-size: 1.2rem;
}
@media screen and (max-width: 750px) {
  header .tel {
    display: none;
  }
}
header .tel a {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #007CC5;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	フッター
+++++++++++++++++++++++++++++++++++++++++++ */
footer {
  min-height: 140px;
  padding: 25px;
  background: #3D3D3D;
  text-align: center;
  font-size: 1.2rem;
  color: #FFF;
}
footer a {
  color: #FFF;
}
footer small {
  font-size: 1.2rem;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
  color: #000;
  text-decoration: underline;
  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[href$=".pdf"]::after {
  display: inline-block;
  margin-left: 3px;
  color: #E40000;
  content: '\f1c1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-weight: 400;
}
a[href$=".pdf"]:has(img)::after {
  content: none;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  cursor: text;
  color: inherit;
}
@media screen and (max-width: 750px) {
  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: 750px) {
  .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 !important;
}
.colorBlue {
  color: #007CC5 !important;
}
/*+++++++++++++++++++++++++++++++++++++++++++
    font-size
+++++++++++++++++++++++++++++++++++++++++++*/
/* PC用（rem） */
.fs10 {
  font-size: 1rem !important;
}
.fs12 {
  font-size: 1.2rem !important;
}
.fs14 {
  font-size: 1.4rem !important;
}
.fs16 {
  font-size: 1.6rem !important;
}
.fs18 {
  font-size: 1.8rem !important;
}
.fs20 {
  font-size: 2rem !important;
}
.fs22 {
  font-size: 2.2rem !important;
}
.fs24 {
  font-size: 2.4rem !important;
}
.fs26 {
  font-size: 2.6rem !important;
}
.fs28 {
  font-size: 2.8rem !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;
}
/* SP用（MEDIA内で出力） */
@media screen and (max-width: 750px) {
  .fs10 {
    font-size: 2vw !important;
  }
  .fs12 {
    font-size: 2.4vw !important;
  }
  .fs14 {
    font-size: 2.8vw !important;
  }
  .fs16 {
    font-size: 3.2vw !important;
  }
  .fs18 {
    font-size: 3.6vw !important;
  }
  .fs20 {
    font-size: 4vw !important;
  }
  .fs22 {
    font-size: 4.4vw !important;
  }
  .fs24 {
    font-size: 4.8vw !important;
  }
  .fs26 {
    font-size: 5.2vw !important;
  }
  .fs28 {
    font-size: 5.6vw !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;
  }
  .fs12_sp {
    font-size: 2.4vw !important;
  }
  .fs14_sp {
    font-size: 2.8vw !important;
  }
  .fs16_sp {
    font-size: 3.2vw !important;
  }
  .fs18_sp {
    font-size: 3.6vw !important;
  }
  .fs20_sp {
    font-size: 4vw !important;
  }
  .fs22_sp {
    font-size: 4.4vw !important;
  }
  .fs24_sp {
    font-size: 4.8vw !important;
  }
  .fs26_sp {
    font-size: 5.2vw !important;
  }
  .fs28_sp {
    font-size: 5.6vw !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 0-100px（5px刻み）
+++++++++++++++++++++++++++++++++++++++++++*/
.mt0 {
  margin-top: 0px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mr0 {
  margin-right: 0px !important;
}
.ml0 {
  margin-left: 0px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.ml5 {
  margin-left: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mr35 {
  margin-right: 35px !important;
}
.ml35 {
  margin-left: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mr45 {
  margin-right: 45px !important;
}
.ml45 {
  margin-left: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.mt55 {
  margin-top: 55px !important;
}
.mb55 {
  margin-bottom: 55px !important;
}
.mr55 {
  margin-right: 55px !important;
}
.ml55 {
  margin-left: 55px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mr60 {
  margin-right: 60px !important;
}
.ml60 {
  margin-left: 60px !important;
}
.mt65 {
  margin-top: 65px !important;
}
.mb65 {
  margin-bottom: 65px !important;
}
.mr65 {
  margin-right: 65px !important;
}
.ml65 {
  margin-left: 65px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mr70 {
  margin-right: 70px !important;
}
.ml70 {
  margin-left: 70px !important;
}
.mt75 {
  margin-top: 75px !important;
}
.mb75 {
  margin-bottom: 75px !important;
}
.mr75 {
  margin-right: 75px !important;
}
.ml75 {
  margin-left: 75px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mr80 {
  margin-right: 80px !important;
}
.ml80 {
  margin-left: 80px !important;
}
.mt85 {
  margin-top: 85px !important;
}
.mb85 {
  margin-bottom: 85px !important;
}
.mr85 {
  margin-right: 85px !important;
}
.ml85 {
  margin-left: 85px !important;
}
.mt90 {
  margin-top: 90px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mr90 {
  margin-right: 90px !important;
}
.ml90 {
  margin-left: 90px !important;
}
.mt95 {
  margin-top: 95px !important;
}
.mb95 {
  margin-bottom: 95px !important;
}
.mr95 {
  margin-right: 95px !important;
}
.ml95 {
  margin-left: 95px !important;
}
.mt100 {
  margin-top: 100px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.mr100 {
  margin-right: 100px !important;
}
.ml100 {
  margin-left: 100px !important;
}
@media screen and (max-width: 750px) {
  .mt0_sp {
    margin-top: 0px !important;
  }
  .mb0_sp {
    margin-bottom: 0px !important;
  }
  .mr0_sp {
    margin-right: 0px !important;
  }
  .ml0_sp {
    margin-left: 0px !important;
  }
  .mt5_sp {
    margin-top: 5px !important;
  }
  .mb5_sp {
    margin-bottom: 5px !important;
  }
  .mr5_sp {
    margin-right: 5px !important;
  }
  .ml5_sp {
    margin-left: 5px !important;
  }
  .mt10_sp {
    margin-top: 10px !important;
  }
  .mb10_sp {
    margin-bottom: 10px !important;
  }
  .mr10_sp {
    margin-right: 10px !important;
  }
  .ml10_sp {
    margin-left: 10px !important;
  }
  .mt15_sp {
    margin-top: 15px !important;
  }
  .mb15_sp {
    margin-bottom: 15px !important;
  }
  .mr15_sp {
    margin-right: 15px !important;
  }
  .ml15_sp {
    margin-left: 15px !important;
  }
  .mt20_sp {
    margin-top: 20px !important;
  }
  .mb20_sp {
    margin-bottom: 20px !important;
  }
  .mr20_sp {
    margin-right: 20px !important;
  }
  .ml20_sp {
    margin-left: 20px !important;
  }
  .mt25_sp {
    margin-top: 25px !important;
  }
  .mb25_sp {
    margin-bottom: 25px !important;
  }
  .mr25_sp {
    margin-right: 25px !important;
  }
  .ml25_sp {
    margin-left: 25px !important;
  }
  .mt30_sp {
    margin-top: 30px !important;
  }
  .mb30_sp {
    margin-bottom: 30px !important;
  }
  .mr30_sp {
    margin-right: 30px !important;
  }
  .ml30_sp {
    margin-left: 30px !important;
  }
  .mt35_sp {
    margin-top: 35px !important;
  }
  .mb35_sp {
    margin-bottom: 35px !important;
  }
  .mr35_sp {
    margin-right: 35px !important;
  }
  .ml35_sp {
    margin-left: 35px !important;
  }
  .mt40_sp {
    margin-top: 40px !important;
  }
  .mb40_sp {
    margin-bottom: 40px !important;
  }
  .mr40_sp {
    margin-right: 40px !important;
  }
  .ml40_sp {
    margin-left: 40px !important;
  }
  .mt45_sp {
    margin-top: 45px !important;
  }
  .mb45_sp {
    margin-bottom: 45px !important;
  }
  .mr45_sp {
    margin-right: 45px !important;
  }
  .ml45_sp {
    margin-left: 45px !important;
  }
  .mt50_sp {
    margin-top: 50px !important;
  }
  .mb50_sp {
    margin-bottom: 50px !important;
  }
  .mr50_sp {
    margin-right: 50px !important;
  }
  .ml50_sp {
    margin-left: 50px !important;
  }
  .mt55_sp {
    margin-top: 55px !important;
  }
  .mb55_sp {
    margin-bottom: 55px !important;
  }
  .mr55_sp {
    margin-right: 55px !important;
  }
  .ml55_sp {
    margin-left: 55px !important;
  }
  .mt60_sp {
    margin-top: 60px !important;
  }
  .mb60_sp {
    margin-bottom: 60px !important;
  }
  .mr60_sp {
    margin-right: 60px !important;
  }
  .ml60_sp {
    margin-left: 60px !important;
  }
  .mt65_sp {
    margin-top: 65px !important;
  }
  .mb65_sp {
    margin-bottom: 65px !important;
  }
  .mr65_sp {
    margin-right: 65px !important;
  }
  .ml65_sp {
    margin-left: 65px !important;
  }
  .mt70_sp {
    margin-top: 70px !important;
  }
  .mb70_sp {
    margin-bottom: 70px !important;
  }
  .mr70_sp {
    margin-right: 70px !important;
  }
  .ml70_sp {
    margin-left: 70px !important;
  }
  .mt75_sp {
    margin-top: 75px !important;
  }
  .mb75_sp {
    margin-bottom: 75px !important;
  }
  .mr75_sp {
    margin-right: 75px !important;
  }
  .ml75_sp {
    margin-left: 75px !important;
  }
  .mt80_sp {
    margin-top: 80px !important;
  }
  .mb80_sp {
    margin-bottom: 80px !important;
  }
  .mr80_sp {
    margin-right: 80px !important;
  }
  .ml80_sp {
    margin-left: 80px !important;
  }
  .mt85_sp {
    margin-top: 85px !important;
  }
  .mb85_sp {
    margin-bottom: 85px !important;
  }
  .mr85_sp {
    margin-right: 85px !important;
  }
  .ml85_sp {
    margin-left: 85px !important;
  }
  .mt90_sp {
    margin-top: 90px !important;
  }
  .mb90_sp {
    margin-bottom: 90px !important;
  }
  .mr90_sp {
    margin-right: 90px !important;
  }
  .ml90_sp {
    margin-left: 90px !important;
  }
  .mt95_sp {
    margin-top: 95px !important;
  }
  .mb95_sp {
    margin-bottom: 95px !important;
  }
  .mr95_sp {
    margin-right: 95px !important;
  }
  .ml95_sp {
    margin-left: 95px !important;
  }
  .mt100_sp {
    margin-top: 100px !important;
  }
  .mb100_sp {
    margin-bottom: 100px !important;
  }
  .mr100_sp {
    margin-right: 100px !important;
  }
  .ml100_sp {
    margin-left: 100px !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: 750px) {
  .sp_hide {
    display: none;
  }
  .sp_show {
    display: block;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ clearfix */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	パーツ（色々なページで使うスタイル）
+++++++++++++++++++++++++++++++++++++++++++ */
.box {
  border: #007CC5 3px solid;
  padding: 50px;
}
@media screen and (max-width: 1023px) {
  .box {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 750px) {
  .box {
    padding: 20px;
  }
}
.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 {
  text-align: center;
}
.btn a {
  background: #000;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: max-content;
  text-decoration: none;
  line-height: 1;
  position: relative;
}
.btn a .arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn a:hover {
  opacity: 0.7;
}
.btn a {
  max-width: 322px;
  width: 100%;
  min-height: 60px;
  padding: 5px 20px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .btn a {
    max-width: max-content;
    padding-right: 30px;
  }
}
.btn a[target]::before {
  content: url(../img/BoxArrowUpRight.svg);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .btn a[target]::before {
    right: 5px;
  }
}
.btn.arrow a::before {
  content: '↓';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .btn.arrow a::before {
    right: 5px;
  }
}
.columnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox > * {
  display: block;
  max-width: 575px;
  width: 100%;
}
.columnBox::before,
.columnBox::after {
  content: '';
  order: 1;
  display: block;
  max-width: 575px;
  width: 100%;
}
.columnBox .columnItem {
  width: calc(100% / 2 - 5px);
}
.columnBox.col3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox.col3 > * {
  display: block;
  max-width: 366px;
  width: 100%;
}
.columnBox.col3::before,
.columnBox.col3::after {
  content: '';
  order: 1;
  display: block;
  max-width: 366px;
  width: 100%;
}
.columnBox.col3 .columnItem {
  width: calc(100% / 3 - 10px);
}
.columnBox.col4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox.col4 > * {
  display: block;
  max-width: 24%;
  width: 100%;
}
.columnBox.col4::before,
.columnBox.col4::after {
  content: '';
  order: 1;
  display: block;
  max-width: 24%;
  width: 100%;
}
.columnBox.col4 .columnItem {
  width: calc(100% / 4);
}
@media screen and (max-width: 750px) {
  .columnBox.col1_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col1_sp > * {
    display: block;
    max-width: 100%;
    width: 100%;
  }
  .columnBox.col1_sp::before,
  .columnBox.col1_sp::after {
    content: '';
    order: 1;
    display: block;
    max-width: 100%;
    width: 100%;
  }
  .columnBox.col1_sp .columnItem {
    width: calc(100%);
  }
  .columnBox.col2_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col2_sp > * {
    display: block;
    max-width: 49%;
    width: 100%;
  }
  .columnBox.col2_sp::before,
  .columnBox.col2_sp::after {
    content: '';
    order: 1;
    display: block;
    max-width: 49%;
    width: 100%;
  }
  .columnBox.col2_sp .columnItem {
    width: calc(100% / 2 - 5px);
  }
  .columnBox.col3_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col3_sp > * {
    display: block;
    max-width: 32%;
    width: 100%;
  }
  .columnBox.col3_sp::before,
  .columnBox.col3_sp::after {
    content: '';
    order: 1;
    display: block;
    max-width: 32%;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .columnBox .columnItem {
    margin-bottom: 20px;
  }
}
.columnBox h3 {
  margin: 0 0 15px;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 750px) {
  .columnBox h3 {
    font-size: 5.2vw;
  }
}
.columnBox h3::after {
  content: url(../img/icon_dots.svg);
  display: block;
  text-align: center;
}
.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: 750px) {
  .flex.sp_column {
    flex-direction: column;
  }
  .flex.sp_block {
    display: block;
  }
}
.fadein {
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.fadein.fadeRight {
  transform: translate(100px, 0);
}
.fadein.fadeLeft {
  transform: translate(-100px, 0);
}
.fadein.fadeBottom {
  transform: translate(0, 100px);
}
.fadein.fadeScroll {
  opacity: 1;
  transform: translate(0, 0);
}
