/*
* 基本スタイル
* ┗共通スタイル
* ヘッダー
* ┗グローバルナビゲーション
* フッター
* 汎用
* パーツ
*/
/* LESS Document */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    min-width: 320px;
  }
}
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.8rem;
  font-feature-settings: "pwid";
  color: #2C3134;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.6vw;
  }
}
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;
}
/* -------------------------------- テーブル */
@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: #0180CD;
    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: #0180CD;
  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;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	共通スタイル
+++++++++++++++++++++++++++++++++++++++++++ */
main {
  overflow: hidden;
}
.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 10px;
  }
}
.pageTop {
  position: fixed;
  bottom: 20px;
  right: 0;
}
.pageTop a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 170px;
  padding: 15px 10px 15px 20px;
  margin: 0 0 0 auto;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(to right, #0180CD, #C5E9FF);
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1023px) {
  header {
    position: static;
  }
}
header .siteTitle {
  max-width: 370px;
  width: 30vw;
  padding: 15px 20px;
}
@media screen and (max-width: 1023px) {
  header .siteTitle {
    width: auto;
    padding-right: 80px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	グローバルナビゲーション
+++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (max-width: 1023px) {
  #gNav {
    width: 32rem;
    min-width: 0;
    max-height: none;
    position: fixed;
    left: auto;
    background: #EEE;
  }
}
#gNav .drawer-menu {
  gap: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
#gNav .drawer-menu.ai_fs {
  align-items: flex-start;
}
#gNav .drawer-menu.ai_c {
  align-items: center;
}
#gNav .drawer-menu.ai_fe {
  align-items: flex-end;
}
#gNav .drawer-menu.jc_fs {
  justify-content: flex-start;
}
#gNav .drawer-menu.jc_c {
  justify-content: center;
}
#gNav .drawer-menu .flexText {
  flex: 1;
}
#gNav .drawer-menu .flexImg {
  text-align: center;
}
#gNav .drawer-menu .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  #gNav .drawer-menu.sp_column {
    flex-direction: column;
  }
  #gNav .drawer-menu.sp_column .flexText {
    display: contents;
  }
  #gNav .drawer-menu.sp_block {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  #gNav .drawer-menu {
    transform: none!important;
    transition: none!important;
  }
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu {
    flex-direction: column;
    justify-content: flex-start;
  }
}
#gNav .drawer-menu > ul {
  gap: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
#gNav .drawer-menu > ul.ai_fs {
  align-items: flex-start;
}
#gNav .drawer-menu > ul.ai_c {
  align-items: center;
}
#gNav .drawer-menu > ul.ai_fe {
  align-items: flex-end;
}
#gNav .drawer-menu > ul.jc_fs {
  justify-content: flex-start;
}
#gNav .drawer-menu > ul.jc_c {
  justify-content: center;
}
#gNav .drawer-menu > ul .flexText {
  flex: 1;
}
#gNav .drawer-menu > ul .flexImg {
  text-align: center;
}
#gNav .drawer-menu > ul .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  #gNav .drawer-menu > ul.sp_column {
    flex-direction: column;
  }
  #gNav .drawer-menu > ul.sp_column .flexText {
    display: contents;
  }
  #gNav .drawer-menu > ul.sp_block {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
}
#gNav .drawer-menu > ul > li {
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: center;
  height: 68px;
  text-align: center;
  line-height: 1.4;
}
#gNav .drawer-menu > ul > li.ai_fs {
  align-items: flex-start;
}
#gNav .drawer-menu > ul > li.ai_c {
  align-items: center;
}
#gNav .drawer-menu > ul > li.ai_fe {
  align-items: flex-end;
}
#gNav .drawer-menu > ul > li.jc_fs {
  justify-content: flex-start;
}
#gNav .drawer-menu > ul > li.jc_c {
  justify-content: center;
}
#gNav .drawer-menu > ul > li .flexText {
  flex: 1;
}
#gNav .drawer-menu > ul > li .flexImg {
  text-align: center;
}
#gNav .drawer-menu > ul > li .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  #gNav .drawer-menu > ul > li.sp_column {
    flex-direction: column;
  }
  #gNav .drawer-menu > ul > li.sp_column .flexText {
    display: contents;
  }
  #gNav .drawer-menu > ul > li.sp_block {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li {
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
  }
}
#gNav .drawer-menu > ul > li:nth-of-type(2) {
  white-space: nowrap;
}
#gNav .drawer-menu > ul > li.open .child {
  display: block;
}
#gNav .drawer-menu > ul > li.open > a {
  color: #0180CD;
}
#gNav .drawer-menu > ul > li.open > a i {
  transform: rotate(180deg);
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li.open > a i {
    transform: none;
  }
}
#gNav .drawer-menu > ul > li:hover {
  cursor: pointer;
}
#gNav .drawer-menu > ul > li:hover > a {
  color: #0180CD;
}
#gNav .drawer-menu > ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0 5px;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  height: 100%;
  color: #103568;
  font-weight: bold;
  font-size: 1.7rem;
  text-decoration: none;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li > a {
    gap: 0;
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: space-between;
    height: auto;
    padding: 15px 10px;
    border-bottom: #0180CD 1px solid;
  }
  #gNav .drawer-menu > ul > li > a.ai_fs {
    align-items: flex-start;
  }
  #gNav .drawer-menu > ul > li > a.ai_c {
    align-items: center;
  }
  #gNav .drawer-menu > ul > li > a.ai_fe {
    align-items: flex-end;
  }
  #gNav .drawer-menu > ul > li > a.jc_fs {
    justify-content: flex-start;
  }
  #gNav .drawer-menu > ul > li > a.jc_c {
    justify-content: center;
  }
  #gNav .drawer-menu > ul > li > a .flexText {
    flex: 1;
  }
  #gNav .drawer-menu > ul > li > a .flexImg {
    text-align: center;
  }
  #gNav .drawer-menu > ul > li > a .flexRight {
    order: 1;
  }
}
@media screen and (max-width: 1023px) and screen and (max-width: 767px) {
  #gNav .drawer-menu > ul > li > a.sp_column {
    flex-direction: column;
  }
  #gNav .drawer-menu > ul > li > a.sp_column .flexText {
    display: contents;
  }
  #gNav .drawer-menu > ul > li > a.sp_block {
    display: block;
  }
}
#gNav .drawer-menu > ul > li > a i {
  color: #0180CD;
}
#gNav .drawer-menu > ul > li .child {
  display: none;
  width: 100%;
  background-color: #fff;
  padding: 40px 0 20px;
  font-size: 1.4rem;
  box-shadow: 0 4px 4px rgba(136, 136, 136, 0.25);
  position: absolute;
  top: 68px;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li .child {
    display: block;
    width: 100%;
    padding: 10px 10px;
    box-shadow: none;
    position: static;
  }
}
#gNav .drawer-menu > ul > li .childInner {
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
#gNav .drawer-menu > ul > li .childInner.ai_fs {
  align-items: flex-start;
}
#gNav .drawer-menu > ul > li .childInner.ai_c {
  align-items: center;
}
#gNav .drawer-menu > ul > li .childInner.ai_fe {
  align-items: flex-end;
}
#gNav .drawer-menu > ul > li .childInner.jc_fs {
  justify-content: flex-start;
}
#gNav .drawer-menu > ul > li .childInner.jc_c {
  justify-content: center;
}
#gNav .drawer-menu > ul > li .childInner .flexText {
  flex: 1;
}
#gNav .drawer-menu > ul > li .childInner .flexImg {
  text-align: center;
}
#gNav .drawer-menu > ul > li .childInner .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  #gNav .drawer-menu > ul > li .childInner.sp_column {
    flex-direction: column;
  }
  #gNav .drawer-menu > ul > li .childInner.sp_column .flexText {
    display: contents;
  }
  #gNav .drawer-menu > ul > li .childInner.sp_block {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li .childInner {
    flex-direction: column;
  }
}
#gNav .drawer-menu > ul > li .childInner h2 {
  width: 300px;
  flex-shrink: 0;
  font-size: 2.4rem;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li .childInner h2 {
    display: none;
  }
}
#gNav .drawer-menu > ul > li .childInner h2 a {
  text-decoration: none;
  color: #000;
}
#gNav .drawer-menu > ul > li .childInner h2 a:hover {
  color: #0180CD;
}
#gNav .drawer-menu > ul > li .childInner h2 a i {
  margin-left: 15px;
  font-size: 2rem;
  color: #0180CD;
}
#gNav .drawer-menu > ul > li .childInnerNav {
  flex: 1;
  text-align: left;
}
#gNav .drawer-menu > ul > li .childInnerNav dl dt {
  padding: 0 0 8px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0180CD;
  border-bottom: #0180CD 1px solid;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li .childInnerNav dl dt {
    font-size: 1.6rem;
  }
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd {
  margin: 0 0 10px;
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 0;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li .childInnerNav dl dd ul {
    display: block;
  }
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul.productsNav li {
  width: 26%;
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul.productsNav li:nth-of-type(3n + 2) {
  width: 33%;
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul.productsNav li a {
  color: #888;
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul.productsNav li a strong {
  color: #19242A;
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul.productsNav + .productsNav {
  border-top: #DEDEDE 1px solid;
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul.eventNav li {
  width: auto;
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul.companyNav li {
  width: calc(27% - 10px);
  text-align: right;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li .childInnerNav dl dd ul.companyNav li {
    text-align: left;
  }
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul.companyNav li:nth-of-type(4n + 1) {
  width: calc(19% - 10px);
  text-align: left;
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul.languageNav {
  justify-content: flex-start;
  gap: 0 100px;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li .childInnerNav dl dd ul li {
    width: 100%!important;
  }
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul li a {
  display: block;
  padding: 0 20px 0 0;
  color: #293033;
  text-decoration: none;
  font-size: 1.4rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li .childInnerNav dl dd ul li a {
    display: block;
    padding: 5px 0;
  }
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul li a::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #0180CD;
  font-size: 1.8rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul li a:hover {
  color: #0180CD;
}
#gNav .drawer-menu > ul > li .childInnerNav dl dd ul li a:hover strong {
  color: #0180CD;
}
#gNav .drawer-menu > ul > li .childInnerNav form {
  margin-top: 0;
}
#gNav .headerContact a {
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  width: 15vw;
  height: 68px;
  background: #0180CD;
  border-radius: 0 0 0 30px;
  color: #FFF;
  font-size: 1.7rem;
  font-weight: bold;
  text-decoration: none;
}
#gNav .headerContact a.ai_fs {
  align-items: flex-start;
}
#gNav .headerContact a.ai_c {
  align-items: center;
}
#gNav .headerContact a.ai_fe {
  align-items: flex-end;
}
#gNav .headerContact a.jc_fs {
  justify-content: flex-start;
}
#gNav .headerContact a.jc_c {
  justify-content: center;
}
#gNav .headerContact a .flexText {
  flex: 1;
}
#gNav .headerContact a .flexImg {
  text-align: center;
}
#gNav .headerContact a .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  #gNav .headerContact a.sp_column {
    flex-direction: column;
  }
  #gNav .headerContact a.sp_column .flexText {
    display: contents;
  }
  #gNav .headerContact a.sp_block {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  #gNav .headerContact a {
    max-width: none;
    width: 240px;
    border-radius: 15px;
  }
}
.search {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
}
.search input {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  flex: 1;
  width: 100%;
  height: 40px;
  padding: 5px 15px;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif;
  border: #0180CD 1px solid;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 1023px) {
  .search input {
    font-size: 1.6rem;
  }
}
.search button {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 40px;
  border: none;
  border-radius: 0 20px 20px 0;
  font-size: 1.8rem;
  background: #0180CD;
  color: #FFF;
}
@media screen and (max-width: 1023px) {
  .search button {
    width: 80px;
    font-size: 1.6rem;
  }
}
::-webkit-input-placeholder {
  color: #CFCFCF;
  font-weight: bold;
}
::-moz-placeholder {
  color: #CFCFCF;
  font-weight: bold;
}
::placeholder {
  color: #CFCFCF;
  font-weight: bold;
}
/* +++++++++++++++++++++++++++++++++++++++++++ drawer */
@media screen and (max-width: 1023px) {
  .drawer--right .drawer-nav {
    right: -32rem !important;
  }
  .drawer--right.drawer-open .drawer-hamburger {
    right: 32rem !important;
  }
  .drawer--right.drawer-open .drawer-nav {
    right: 0 !important;
  }
}
header .drawer-toggle {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .drawer-toggle {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  header .drawer-nav {
    z-index: 100;
    position: fixed;
    width: 32rem;
  }
  header .drawer-nav .drawer-menu {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  header .drawer-hamburger {
    background: #0180CD;
    z-index: 10000;
    width: 3rem;
    padding: 18px 15px 40px;
  }
  header .drawer-hamburger .drawer-text {
    white-space: nowrap;
    color: #FFF;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.2rem;
  }
  header .drawer-hamburger:hover {
    background: #0180CD;
  }
  header .drawer-hamburger-icon {
    margin: 0;
    position: relative;
    top: 6px;
    background: #FFF;
    height: 4px;
  }
  header .drawer-hamburger-icon::before,
  header .drawer-hamburger-icon::after {
    background: #FFF;
    height: 4px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	フッター
+++++++++++++++++++++++++++++++++++++++++++ */
.footerContact {
  background: linear-gradient(145deg, #0AA2FE, #7AE4FF);
  overflow: hidden;
}
.footerContact .inner {
  min-height: 289px;
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footerContact .inner {
    min-height: 0;
    padding: 40px 10px;
  }
}
.footerContact .inner::before,
.footerContact .inner::after {
  display: block;
  content: '';
  position: absolute;
}
.footerContact .inner::before {
  width: 254px;
  height: 235px;
  background: url(/wp/wp-content/themes/pp-solutions/common/img/bg_contact_logo.webp) no-repeat center center / cover;
  top: 20px;
  left: -80px;
}
.footerContact .inner::after {
  width: 680px;
  height: 251px;
  background: url(/wp/wp-content/themes/pp-solutions/common/img/bg_contact_img.webp) no-repeat center center / cover;
  bottom: 0;
  right: -128px;
}
.footerContact .inner h2 {
  margin: 0 0 25px;
  font-size: 3.2rem;
  color: #FFF;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footerContact .inner h2 {
    font-size: 6.4vw;
  }
}
.footerContact .inner p {
  max-width: 678px;
  color: #FFF;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footerContact .inner p {
    font-size: 3.2vw;
  }
}
.footerContact .inner .btn {
  margin: 34px 0 0;
}
@media screen and (max-width: 767px) {
  .footerContact .inner .btn {
    margin-top: 20px;
  }
}
.footerContact .inner .btn a {
  background: none;
  justify-content: space-between;
  padding-left: 30px;
}
.footerContact .inner .btn a:hover {
  border-color: #FFF;
  background: #FFF;
}
footer {
  background: #FFF;
  padding: 38px 0 0;
}
footer .footerSitemap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 48px;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .footerSitemap {
    flex-direction: column;
    gap: 20px;
  }
}
footer .footerSitemap .footerAddress {
  width: 350px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  footer .footerSitemap .footerAddress {
    order: 1;
    margin: 0 auto;
  }
}
footer .footerSitemap .footerAddress address {
  margin: 0 0 25px;
  font-size: 1.4rem;
}
footer .footerSitemap .footerAddress address figure {
  margin: 0 0 20px;
}
footer .footerSitemap .footerAddress address figure figcaption {
  text-align: right;
  font-weight: bold;
  font-size: 1.6rem;
}
footer .footerSitemap .footerBtn {
  margin: 10px 0;
}
footer .footerSitemap .footerBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 294px;
  min-height: 47px;
  text-decoration: none;
  border: #0180CD 1px solid;
}
@media screen and (max-width: 767px) {
  footer .footerSitemap .footerBtn a {
    margin: 0 auto;
  }
}
footer .footerSitemap .footerBtn a:hover {
  background: #0180CD;
  color: #FFF;
}
footer nav {
  width: 100%;
}
footer nav dl dt {
  margin: 0 0 12px;
  padding: 0 0 8px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0180CD;
  border-bottom: #E6E6E6 1px solid;
}
@media screen and (max-width: 767px) {
  footer nav dl dt {
    font-size: 3.6vw;
  }
}
footer nav dl dd {
  margin: 0 0 40px;
}
footer nav dl dd ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
footer nav dl dd ul li {
  width: 220px;
}
@media screen and (max-width: 767px) {
  footer nav dl dd ul li {
    width: 100%;
  }
}
footer nav dl dd ul li a {
  color: #293033;
  text-decoration: none;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  footer nav dl dd ul li a {
    display: block;
    padding: 5px 0;
    font-size: 2.8vw;
  }
}
footer nav dl dd ul li a:hover {
  color: #0180CD;
}
footer nav .bottomNav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  footer nav .bottomNav {
    flex-direction: column;
    gap: 0;
  }
}
footer nav .bottomNav dl {
  width: 100%;
}
footer nav .bottomNav dl dd ul {
  display: block;
}
footer nav .bottomNav dl dd ul li {
  width: 100%;
}
footer .footerLink {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 66px;
  justify-content: center;
  padding: 20px 0 30px;
  border-top: #E6E6E6 1px solid;
}
@media screen and (max-width: 767px) {
  footer .footerLink {
    padding: 20px 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  footer .footerLink li {
    width: 49%;
    text-align: center;
  }
}
footer .footerLink li a {
  text-decoration: none;
  font-size: 1.4rem;
  color: #293033;
}
@media screen and (max-width: 767px) {
  footer .footerLink li a {
    font-size: 2.8vw;
  }
}
footer .footerLink li a:hover {
  color: #0180CD;
}
footer .copyright {
  padding: 0 0 20px;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    padding: 20px 10px 30px;
    font-size: 2.4vw;
    text-align: left;
  }
}
footer .copyright small {
  display: block;
  margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
  footer .copyright small {
    text-align: center;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
  color: #0180CD;
  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.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 {
  padding: 25px;
  border: 5px solid;
  border-image: linear-gradient(to right, #0180CD, #D0E7F2);
  border-image-slice: 1;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .box {
    padding: 15px;
    border-width: 3px;
  }
}
.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 a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 268px;
  min-height: 46px;
  padding: 5px 70px 5px 35px;
  border-radius: 24px;
  border: #FFF 1px solid;
  color: #FFF;
  font-weight: 500;
  background: #0180CD;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn a {
    min-width: 0;
    min-height: 0;
  }
}
.btn a:hover {
  background: #FFF;
  color: #0180CD;
  border-color: #0180CD;
}
.btn a:hover::before {
  right: 55px;
  background: #0180CD;
}
.btn a:hover::after {
  background: #0180CD;
}
.btn a::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #FFF;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  transition: 0.2s;
}
.btn a::after {
  content: '';
  display: block;
  width: 35px;
  height: 1px;
  background: #FFF;
  position: absolute;
  top: calc(50% - 1px);
  right: 25px;
}
.btn2 {
  text-align: center;
}
.btn2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 35px;
  border-radius: 18px;
  font-size: 2.2rem;
  font-weight: 400;
  background: #0180CD;
  color: #FFF;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .btn2 a {
    font-size: 4.4vw;
  }
}
.btn2 a:hover {
  opacity: 0.7;
}
.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;
  }
}
.formArea {
  max-width: 1080px;
  margin: 0 auto;
}
.formArea .wpcf7-list-item {
  display: block;
}
.formArea .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(0, -50%);
  pointer-events: none;
}
form {
  margin-top: 70px;
}
form em {
  display: inline-block;
  width: 70px;
  padding: 4px 0;
  line-height: 1;
  background: #FF5335;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 1023px) {
  form em {
    order: -1;
  }
}
@media screen and (max-width: 767px) {
  form em {
    font-size: 2.4vw;
    margin: 0;
  }
}
form em.notReq {
  background: #35A4FF;
}
form dl {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin: 0 0 60px;
}
@media screen and (max-width: 1023px) {
  form dl {
    flex-direction: column;
    gap: 0px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
  }
}
form dl dt {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
  width: 400px;
  text-align: right;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  form dl dt {
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
    padding: 20px 0 2px;
    width: 100%;
  }
}
form dl dd {
  width: calc(100% - 400px - 48px);
}
@media screen and (max-width: 1023px) {
  form dl dd {
    width: 100%;
  }
}
form dl dd input {
  margin-top: -14px;
}
@media screen and (max-width: 1023px) {
  form dl dd input {
    margin-top: 0;
  }
}
input {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"] {
  width: 100%;
  padding: 10px 18px;
  border: #0180CD 2px solid;
  border-radius: 8px;
  font-weight: 400;
}
input[type="number"] {
  width: 100%;
  padding: 10px 18px;
  border: #0180CD 2px solid;
  border-radius: 8px;
  font-weight: 400;
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="checkbox"] {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  input[type="checkbox"] {
    margin-right: 5px;
  }
}
input[type="submit"] {
  -webkit-appearance: none;
  cursor: pointer;
}
input[type="button"] {
  -webkit-appearance: none;
  cursor: pointer;
}
[class*="contact-form-7"] textarea {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  width: 100%;
  min-height: 270px;
  padding: 10px 18px;
  border: #0180CD 2px solid;
  border-radius: 8px;
  font-weight: 400;
}
[class*="contact-form-7"] select {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  width: 100%;
  padding: 10px 18px;
  border: #0180CD 2px solid;
  border-radius: 8px;
  font-weight: 400;
}
label {
  display: block;
  cursor: pointer;
  font-size: 1.7rem;
}
@media screen and (max-width: 1023px) {
  label {
    border-radius: 10px;
    padding: 5px 10px;
    margin: 5px 0;
    font-size: 3.4vw;
  }
}
@media screen and (max-width: 1023px) {
  label:has(input:checked) {
    background: rgba(1, 128, 205, 0.15);
  }
}
button {
  -webkit-appearance: none;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
::-webkit-input-placeholder {
  color: #A4CDE5;
  font-weight: 400;
}
::-moz-placeholder {
  color: #A4CDE5;
  font-weight: 400;
}
::placeholder {
  color: #A4CDE5;
  font-weight: 400;
}
.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 {
  max-width: 314px;
  margin: 0 auto;
  position: relative;
}
.submit::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #FFF;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  transition: 0.2s;
}
.submit::after {
  content: '';
  display: block;
  width: 35px;
  height: 1px;
  background: #FFF;
  position: absolute;
  top: calc(50% - 1px);
  right: 25px;
}
.submit:hover input {
  background: #FFF;
  color: #0180CD;
  border-color: #0180CD;
}
.submit:hover::before {
  right: 55px;
  background: #0180CD;
}
.submit:hover::after {
  background: #0180CD;
}
.submit input {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 268px;
  width: 100%;
  min-height: 62px;
  padding: 5px 35px 5px 35px;
  border-radius: 51px;
  border: #FFF 1px solid;
  color: #FFF;
  font-weight: 500;
  background: #0180CD;
  text-decoration: none;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .submit input {
    min-width: 0;
    min-height: 0;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 30px 0;
  background: #FFf;
  border-top: #0180CD 1px solid;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .cookie-banner {
    padding: 20px 0;
  }
}
.cookie-banner .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 12px 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .cookie-banner .inner {
    flex-direction: column;
  }
}
.cookie-banner p {
  margin: 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .cookie-banner p {
    font-size: 1.4rem;
  }
}
.cookie-banner_btn {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .cookie-banner_btn {
    width: 100%;
    gap: 10px;
  }
}
.cookie-banner_btn button {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
  align-items: center;
  width: 214px;
  height: 48px;
  border: #0180CD 2px solid;
  background: #0180CD;
  color: #FFF;
  cursor: pointer;
  font-size: 1.6rem;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .cookie-banner_btn button {
    max-width: 214px;
    width: 100%;
    height: 42px;
    font-size: 1.4rem;
  }
}
.cookie-banner_btn button#reject-cookies {
  background: #FFF;
  color: #5E5E5E;
}
.cmplz-link.privacy-statement {
  display: none;
}
.cmplz-view-preferences {
  display: none;
}
.cmplz-link.cookie-statement {
  display: none;
}
#cmplz-manage-consent {
  display: none !important;
}
.cmplz-title {
  font-size: 18px !important;
}
