@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  overflow-x: hidden;
}

.w_base {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}

.w_base02 {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  margin-top: 15px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
}

.hd_logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
.hd_logo a span {
  display: block;
}
.hd_logo a span:first-child {
  font-size: 0.6em;
}
.hd_logo a span:last-child {
  font-size: 0.44em;
}
.hd_logo a img {
  width: 60px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  /* box-shadow: inset 0 0 5px 5px #222; */
  background: linear-gradient(45deg, rgba(31, 84, 146, 0.8), rgba(55, 157, 187, 0.8));
  color: #fff;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  z-index: 100;
  width: 70%;
  overflow-x: none;
  overflow-y: auto;
  top: 0px;
  right: -70%;
  position: fixed;
  transition: All 0.5s ease;
}

.nav_list > li > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  color: #fff;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 600;
  display: block;
  padding: 1em 1.5em;
  text-decoration: none;
  position: relative;
}
.nav_list > li > a:hover {
  color: linear-gradient(45deg, rgba(31, 84, 146, 0.8), rgba(55, 157, 187, 0.8));
}
.nav_list > li > a:after {
  content: attr(data-text);
  display: block;
}
.nav_list > li > a.active {
  color: linear-gradient(45deg, rgba(31, 84, 146, 0.8), rgba(55, 157, 187, 0.8)) !important;
}
.nav_list > li > a.current > a {
  color: #379dbb;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  right: calc(25px + 2.5%);
  width: 46px;
  height: 34px;
  transition: all 0.5s ease;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 10%;
  width: 80%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 5px;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 15px;
  z-index: 1;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 5px;
  z-index: 1;
}
.sp_nav_trigger:after {
  position: absolute;
  left: 0;
  bottom: -15px;
  content: "MENU";
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #000;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s;
}
.sp_nav_trigger.active {
  background: none;
}
.sp_nav_trigger.active:after {
  content: "CLOSE";
  bottom: -25px;
  background: none;
  color: #fff;
}
.sp_nav_trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #fff;
}
.sp_nav_trigger.active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}
.sp_nav_trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** color change
******************************************************************************
----------------------------------------------------------------------------*/
.colorchange.hd_bg .hd {
  width: 100%;
  max-width: 100vw;
  margin-top: 0px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  border-radius: unset;
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a {
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a .hd_item img {
  transition: all 0.5s ease;
}
.colorchange.sp_nav_trigger {
  top: 10px;
  right: 10px;
}
.colorchange.sp_nav_trigger span {
  transition: all 0.5s ease;
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.main {
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  background: #e1eff3;
}
.ft_bg .ft .ft_con {
  padding-block: 50px 60px;
}
.ft_bg .ft .ft_con .ft_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 60px;
  width: 100%;
}
.ft_bg .ft .ft_con .ft_bnr a {
  width: min(360px, 100%);
  border-radius: 100px;
  padding-block: 20px;
  font-size: 20px;
}
.ft_bg .ft .ft_con .ft_bnr .contact::before {
  width: 33px;
  margin-right: 2rem;
}
.ft_bg .ft .ft_con .ft_nav {
  margin: 50px 0;
}
.ft_bg .ft .ft_con .ft_nav .ft_nav_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 15px;
  width: 100%;
}
.ft_bg .ft .ft_con .ft_nav .ft_nav_list > li {
  padding: 0 25px;
  text-align: center;
  border-right: 2px solid #3f3f3f;
}
.ft_bg .ft .ft_con .ft_nav .ft_nav_list > li:last-child {
  border-right: 0;
}
.ft_bg .ft .ft_con .ft_nav .ft_nav_list > li > a {
  display: block;
  color: #3f3f3f;
  font-size: 18px;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}
.ft_bg .ft .ft_con .ft_nav .ft_nav_list > li > a:hover {
  opacity: 0.8;
}
.ft_bg .ft .ft_con .ft_logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ft_bg .ft .ft_con .ft_logo img {
  width: 180px;
  height: auto;
}
.ft_bg .ft .ft_con .ft_logo h1 {
  font-size: 28px;
  font-weight: normal;
}
.ft_bg .ft .ft_con .ft_logo address {
  font-size: 18px;
}
.ft_bg .ft .ft_con .ft_logo a {
  color: #000;
}

.ft_copy {
  background-color: #fff;
  padding: 15px 0;
  color: #000;
  font-size: 13px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 30px;
  height: 70px;
  z-index: 100;
}
.pt .pt_btn {
  border-radius: 50%;
  color: #1f5492;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  height: 100%;
  line-height: 1.3;
  opacity: 0.8;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  width: 100%;
}
.pt .pt_btn:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: url(../images/pt_arrow.png);
}
.pt .pt_btn:hover {
  opacity: 0.6;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** loader
  ******************************************************************************
  ----------------------------------------------------------------------------*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader:before, #loader:after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  background: #fff;
}
#loader:before {
  left: 0;
}
#loader:after {
  right: 0;
}
#loader.loaded {
  opacity: 0;
  visibility: hidden;
}
#loader.loaded:before {
  animation: loadedOpenLeftside 3.5s;
}
#loader.loaded:after {
  animation: loadedOpenRightside 3.5s;
}
@keyframes loadedOpenLeftside {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loadedOpenRightside {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
.loader-inner {
  width: 100%;
  z-index: 2;
}
.loader-inner figure {
  width: -moz-max-content;
  width: max-content;
  margin: auto auto 20px;
}
.loader-inner figure img {
  width: min(100vw, 250px);
  height: auto;
  transition: opacity 0.5s;
}
.loader-inner p {
  text-align: center;
  color: rgb(85, 85, 85);
}

.loader-bar {
  width: 90%;
  height: 5px;
  margin: 10px auto 0;
  background: #ffffff;
  border-radius: 100vh;
  overflow: hidden;
}

.loader-fill {
  width: 0%;
  height: 100%;
  background: #e1eff3;
  transition: width 0.2s ease;
}

/* ローダー全体終わり */
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.eyecatch_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #1f5492;
}
.eyecatch_bg .eyecatch {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: min(46px, 7.5vw);
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 900;
}
.eyecatch_bg .eyecatch span {
  background: linear-gradient(#4ad8ff, #0066a6);
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scroll_down {
  position: absolute;
  bottom: -40px;
  left: 5%;
  height: 295px;
}
.scroll_down a {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  color: #000;
  font-size: 20px;
  line-height: 1.75;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll_down::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -9px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(231, 128, 38, 0.8);
  animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
}
.scroll_down::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 2px;
  height: 214px;
  background: #000;
}
@keyframes circlemove {
  0% {
    bottom: 198px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.index_slider {
  position: relative;
  height: 100vh;
  height: 100dvh;
}
.index_slider video {
  position: relative;
  z-index: -1;
  width: 100% !important;
  height: calc(100vh + 1px);
  height: calc(100dvh + 1px);
  -o-object-fit: cover;
  object-fit: cover;
}
.index_slider .recruit_btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  display: flex;
  justify-content: flex-end;
}
.index_slider .recruit_btn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(435px, 90%);
  height: 140px;
  background: linear-gradient(#1f5492 10px, rgba(255, 255, 255, 0.83) 10px, rgba(255, 255, 255, 0.8) 130px, #1f5492 130px), url("../images/recruit_btn_bg.jpg") center/contain no-repeat;
  color: #1f5492;
  font-size: min(32px, 7.5vw);
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}
.index_slider .recruit_btn a span {
  display: block;
  color: #379dbb;
  font-size: 0.5em;
}
.index_slider .recruit_btn a:hover {
  opacity: 0.8;
}

.index_main h2 {
  margin-bottom: 20px;
  font-size: 32px;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1.4;
}
.index_main h2 span {
  display: block;
  font-size: 0.75em;
}
.index_main h2 span::before {
  display: inline-block;
  content: "●";
  color: #e78026;
  font-size: 28px;
  margin-right: 10px;
  vertical-align: middle;
}
.index_main p {
  font-size: 16px;
  line-height: 1.75;
}
.index_main .more a {
  font-size: 16px;
  color: #1f5492;
  text-decoration: none;
  border-bottom: 1px solid;
}
.index_main .more a::after {
  content: "";
  width: 24px;
  display: inline-block;
  aspect-ratio: 3/1;
  background: url("../images/more_arrow_blue.svg") center/contain no-repeat;
  vertical-align: middle;
  margin-left: 1rem;
  transition: 0.3s all ease;
}
.index_main .more a[target=_blank]::after {
  width: 18px;
  aspect-ratio: 1/1;
  background: url("../images/icon_elink_blue.svg") center/contain no-repeat;
  vertical-align: top;
  margin-left: 0.5rem;
}
.index_main .more a:hover {
  opacity: 0.8;
}
.index_main .more a:hover::after {
  transform: translateX(10px);
}

div[class$=bnr] > a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.3s ease;
}
div[class$=bnr] > a:hover {
  opacity: 0.8;
}
div[class$=bnr] .tel {
  background: #fff;
  color: #000;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: bold;
}
div[class$=bnr] .tel span {
  color: #e78026;
  font-weight: 500;
  padding-right: 8px;
}
div[class$=bnr] .tel p {
  font-size: 3.6vw;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: normal;
}
div[class$=bnr] .contact {
  background: linear-gradient(#1f5492, #379dbb);
  color: #fff;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 900;
}
div[class$=bnr] .contact::before {
  content: "";
  display: inline-block;
  aspect-ratio: 25/18;
  background: url("../images/icon_mail.png") center/contain no-repeat;
}

.index_about {
  background: #e1eff3;
  padding-block: 60px 80px;
}
.index_about figure img {
  -webkit-mask-image: radial-gradient(ellipse, white 0%, transparent 70%);
  mask-image: radial-gradient(ellipse, white 10%, transparent 70%);
}

.index_company {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: calc(100vh - 70px);
  min-height: calc(100dvh - 70px);
  background: rgba(21, 93, 114, 0.76);
  padding-block: 60px 50px;
  overflow: hidden;
  color: #fff;
}
.index_company video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -3;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  -o-object-fit: cover;
  object-fit: cover;
}
.index_company > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
}
.index_company > div p {
  font-weight: 500;
}
.index_company .more a {
  color: #fff;
}
.index_company .more a:after {
  background-image: url(../images/more_arrow.svg);
}

.index_project {
  padding-block: 50px 60px;
}
.index_project p {
  font-weight: 500;
}
.index_project .index_bnr a {
  width: 300px;
  margin: 20px 0 50px;
  padding: 0;
}
.index_project_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.index_project_gallery figure {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
.index_project_gallery figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.66));
  border-radius: 30px;
}
.index_project_gallery figure img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  -o-object-fit: cover;
  object-fit: cover;
}
.index_project_gallery figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  padding: 15px;
  color: #fff;
  font-size: 16px;
}

.index_recruit {
  position: relative;
  margin-block: 50px 65px;
  padding: 50px 20px;
  border-radius: 30px;
  min-height: 80vh;
  min-height: 80dvh;
  background: url("../images/index_recruit_bg.jpg") center center/cover no-repeat;
}
.index_recruit::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
}
.index_recruit > div {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 500px;
  flex-direction: column;
}
.index_recruit > div p {
  font-weight: 500;
}

.index_news_con {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px 0;
}
.index_news_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.index_news_item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}
.index_news_item time {
  color: #379dbb;
  font-size: 16px;
  font-weight: bold;
}
.index_news_item_cont {
  font-size: 16px;
}
.index_news_item_cont a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.index_news_item_cont a:hover {
  opacity: 0.8;
}
.index_news .icon_new {
  display: inline-block;
  color: #1f5492;
  font-size: 1.3em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_news .icon_new:before {
  content: "NEW";
}

.index_contact {
  position: relative;
  margin-top: 60px;
  padding: 20px;
  border-radius: 30px;
  background: url("../images/index_contact_bg.jpg") center center/cover no-repeat;
  color: #fff;
}
.index_contact h2 {
  margin-bottom: 20px !important;
  font-size: 32px !important;
}
.index_contact p {
  margin-bottom: 0 !important;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
.index_contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 70, 93, 0.87);
  border-radius: 30px;
}
.index_contact > div {
  position: relative;
  z-index: 1;
}
.index_contact .index_bnr a {
  aspect-ratio: 74/19;
  max-width: 500px;
}
.index_contact .index_bnr .tel {
  font-size: min(48px, 7vw);
}
.index_contact .index_bnr .tel span {
  font-size: 0.625em;
}
.index_contact .index_bnr .contact {
  font-size: 28px;
}
.index_contact .index_bnr .contact::before {
  width: 38px;
  margin-right: 1rem;
}

.index_bnr > a {
  border-radius: 30px;
  padding: 30px;
}

.index_con {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background: url("../images/index_con_bg.svg") center/contain no-repeat, linear-gradient(#e1eff3 50%, transparent 50%), #fff;
  padding-bottom: 100px;
}

.fadein {
  opacity: 0;
}
.fadein .index_project_gallery figure {
  opacity: 0;
  transform: translateY(60px);
}
.fadein .index_news_item, .fadein.index_news .more {
  opacity: 0;
  transform: translateY(60px);
}

/*----------------------------------------------------------------------------
******************************************************************************
** archive
******************************************************************************
----------------------------------------------------------------------------*/
.news_con {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0;
}
.news_con_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news_con_item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}
.news_con_item time {
  color: #379dbb;
  font-size: 16px;
  font-weight: bold;
}
.news_con_item_cont {
  font-size: 16px;
}
.news_con_item_cont a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.news_con_item_cont a:hover {
  opacity: 0.8;
}
.news_con .icon_new {
  display: inline-block;
  color: #1f5492;
  font-size: 1.3em;
  font-weight: bold;
  margin-left: 0.3em;
}
.news_con .icon_new:before {
  content: "NEW";
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .page_slider {
  padding-top: 90px;
  background-image: var(--hd-bg);
  background-color: rgba(255, 255, 255, 0.5);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}
.con_bg .page_slider h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  padding: 55px 0;
}
.con_bg .page_slider h1 span {
  display: inline-block;
  margin: 0 0 0 15px;
  font-size: 22px;
  font-weight: normal;
}

.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h2 {
  position: relative;
  margin-bottom: 10px;
  margin-top: 40px;
  font-size: 26px;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  line-height: 1.4;
}
.mcon h2 span {
  display: block;
  font-size: 0.75em;
}
.mcon h2 span::before {
  display: inline-block;
  content: "●";
  color: #e78026;
  font-size: 28px;
  margin-right: 10px;
  vertical-align: middle;
}
.mcon h2:first-child {
  margin-top: 0;
}
.mcon h3 {
  margin-block: 8px;
  color: #333;
  font-size: 22px;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.mcon h4 {
  font-size: 1.6em;
  margin-bottom: 5px;
  margin-top: 5px;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.mcon h5,
.mcon h6 {
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol,
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li,
.mcon ul li {
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 1em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
}
.mcon p {
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 1.75;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** form(SP)
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.form table tr {
  border-top: 1px solid #1f5492;
  border-bottom: 1px solid #1f5492;
}
.form table tr:first-of-type {
  border-top: none;
}
.form table th,
.form table td {
  display: block;
  width: 100% !important;
  font-size: 20px;
}
.form table th {
  font-weight: 500;
  vertical-align: middle;
  width: 10em;
  padding: 1em;
  padding-bottom: 5px;
}
.form table th span {
  padding-left: 0.5em;
}
.form table th span.required {
  font-size: 0.8em;
  color: #ff0000;
}
.form table td {
  padding: 5px;
  padding-bottom: 1em;
  font-size: 16px;
}
.form input[type=text], .form input[type=email], .form input[type=tel] {
  width: 100%;
  border: 1px solid #000;
  padding: 10px;
  background: #fff;
}
.form input[type=text]:focus, .form input[type=email]:focus, .form input[type=tel]:focus {
  background-color: #e1eff3;
}
.form textarea {
  width: 100%;
  border: 1px solid #000;
  padding: 5px;
  background: #fff;
}
.form textarea:focus {
  background-color: #e1eff3;
}
.form .confirm .confirm_content {
  white-space: pre-wrap;
}

.form_btn {
  max-width: 400px;
  margin: 0 auto;
}
.form_btn button,
.form_btn input {
  width: min(360px, 100%);
  border-radius: 100px;
  padding-block: 20px;
  font-size: 20px;
  border: none;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  transition: 0.3s;
}
.form_btn button:hover,
.form_btn input:hover {
  opacity: 0.8;
}
.form_btn .next {
  background: linear-gradient(#1f5492, #379dbb);
  color: #fff;
  font-weight: 900;
}
.form_btn .next::before {
  width: 33px;
  margin-right: 2rem;
}
.form_btn .back {
  background: #e1eff3;
  color: #000;
  font-weight: bold;
}

/* 画像ブロック（角丸スタイル）の角丸の数値を変更 */
.wp-block-image.is-style-rounded img {
  border-radius: 15px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** tab
******************************************************************************
----------------------------------------------------------------------------*/
@media screen and (min-width: 601px), print {
  .form table td {
    font-size: 20px;
  }
}/*# sourceMappingURL=sp.css.map */