@charset "utf-8";
/* CSS Document */


/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/

* {
    /* すべてのデフォルトのマージンを削除 */
    margin: 0;
    /* すべてのデフォルトのパディングを削除 */
    padding: 0;
    /* line-heightをemベースでcalc()で計算。font-sizeを小さくするとline-heightは大きくなり、font-sizeを大きくするとline-heightは小さくなります。参考: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
    line-height: calc(0.35rem + 1em + 0.35rem);
  }
  
  /* より直感的なボックスサイズのモデルを使用 */
  *,
  ::before,
  ::after {
    box-sizing: border-box;
    /* 要素のはみ出しを確認 */
    /*outline: 2px red solid;*/
  }
  
  /* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
  *:where(:not(fieldset, progress, meter)) {
    border-width: 0;
    border-style: solid;
    background-origin: border-box;
    background-repeat: no-repeat;
  }
  
  html {
    /* アプリケーションでパーセントによる高さを許可する  */
    block-size: 100%;
    /* テキストのサイズはfont-sizeのみで制御されるようにする */
    -webkit-text-size-adjust: none;
    
  }
  
  /* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
  @media (prefers-reduced-motion: no-preference) {
    html:focus-within {
      scroll-behavior: smooth;
    }
  }
  
  body {
    /* テキストのレンダリングを改善 */
    -webkit-font-smoothing: antialiased;
    /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
    text-rendering: optimizeSpeed;
    /* アプリケーションでパーセントによる高さを許可する */
    min-block-size: 100%;
    /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
    /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
    color: #000;
    text-align: justify;
  }
  
@supports (-webkit-touch-callout: none) {
  body {
    /* The hack for Safari */
    height: -webkit-fill-available;
  }
}
  /* 各メディア要素のデフォルトを改善 */
  :where(img, svg, video, canvas, audio, iframe, embed, object) {
    display: block;
  }
  :where(img, svg, video) {
    block-size: auto;
    max-inline-size: 100%;
  }
  
  /* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
  :where(svg) {
    stroke: none;
    fill: currentColor;
  }
  
  /* fill属性のないSVG */
  :where(svg):where(:not([fill])) {
    /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
    stroke: currentColor;
    fill: none;
    /* 丸みを帯びたストローク */
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  /* width属性のないSVGのサイズを設定 */
  :where(svg):where(:not([width])) {
    inline-size: 5rem;
  }
  
  /* フォーム内のタイポグラフィのスタイルを削除 */
  :where(input, button, textarea, select),
  :where(input[type="file"])::-webkit-file-upload-button {
    color: inherit;
    font: inherit;
    font-size: inherit;
    letter-spacing: inherit;
  }
  
  /* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
  :where(textarea) {
    resize: vertical;
  }
  @supports (resize: block) {
    :where(textarea) {
      resize: block;
    }
  }
  
  /* テキストのオーバーフローを回避 */
  :where(p, h1, h2, h3, h4, h5, h6) {
    overflow-wrap: break-word;
  }
  
  /* article、aside、nav、section内のh1フォントサイズを修正 */
  h1 {
    font-size: 2em;
  }
  
  /* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
  :where(ul, ol)[role="list"] {
    list-style: none;
  }
  
  /* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
  a:not([class]) {
    text-decoration-skip-ink: auto;
  }
  
  /* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
  :where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
    cursor: pointer;
    touch-action: manipulation;
  }
  :where(input[type="file"]) {
    cursor: auto;
  }
  :where(input[type="file"])::-webkit-file-upload-button,
  :where(input[type="file"])::file-selector-button {
    cursor: pointer;
  }
  
  /* フォーカスのアウトラインをアニメーション化 */
  @media (prefers-reduced-motion: no-preference) {
    :focus-visible {
      transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    }
    :where(:not(:active)):focus-visible {
      transition-duration: 0.25s;
    }
  }
  :where(:not(:active)):focus-visible {
    outline-offset: 5px;
  }
  
  /* ユーザーがボタンのテキストを選択できないようにする */
  :where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"]),
  :where(input[type="file"])::-webkit-file-upload-button,
  :where(input[type="file"])::file-selector-button {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    text-align: center;
  }
  
  /* 無効化されたボタンには無効化されたカーソルを表示 */
  :where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"])[disabled] {
    cursor: not-allowed;
  }







/*===================================================================
//  共通設定
//=================================================================*/
.txt {
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal;
  /*transform: rotate(0.05deg);*/
}
.note {
  display: block;
  font-size: 12px;
  color: #555;
  font-weight: normal;
  line-height: 1.5;
}
a {text-decoration: none; color: #000;}
a:hover,
a:hover img,
button:hover {opacity:0.7 !important; transition:all .3s; cursor: pointer;}

.left  {float:left;}
.right {float:right;}

.alignc {text-align:center;}
.alignl {text-align:left;}
.alignr {text-align:right;}

.none         {display:none;}
.block        {display:block;}
.inline-block {display:inline-block;}
.inline       {display:inline;}
.flex         {display:flex; width: 100%;}

.hidden  {overflow:hidden;}
.visible {overflow:visible;}

.vertical-t {vertical-align:top;}
.vertical-m {vertical-align:middle;}
.vertical-b {vertical-align:bottom;}

.font-bold     {font-weight:bold;}
.font-normal   {font-weight:normal;}
.gothic        {font-family: source-han-sans-japanese, sans-serif,"游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic","Hiragino Kaku Gothic Pro",Osaka,sans-seri; font-weight: 700;}
.mincho        {font-family: 'Shippori Mincho', serif, "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;}
.mincho2       {font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;}
.alpha         {font-family: "sofia-pro", sans-serif; letter-spacing: .02em; font-weight: 700; font-style: normal;}
.alpha_cond    {font-family: "sofia-pro-condensed", sans-serif; letter-spacing: .02em; font-weight: 400; font-style: normal;}

.radius-5 {border-radius:5px;}

.box {box-sizing:border-box;}
.relative {position:relative;}

.anime {transition:all .3s;}
a:hover img.alpha {opacity:0.7;}
.wide             {width:100%; height:auto;}

.no-margin-t  {margin-top:0!important;}
.no-margin-b  {margin-bottom:0!important;}
.no-margin-l  {margin-left:0!important;}
.no-margin-r  {margin-right:0!important;}
.no-padding-t {padding-top:0!important;}
.no-padding-b {padding-bottom:0!important;}
.no-padding-l {padding-left:0!important;}
.no-padding-r {padding-right:0!important;}

.space-top          {padding-top: 2.5em;}
.space-btm          {padding-bottom: 2em;}
.contents-space-top {padding-top: 5em;}
.contents-space-btm {padding-bottom: 4.5em;}
.contents-most-top  {padding-top: 10em;}
.contents-most-btm  {padding-bottom: 10em;}

.after-arrow:after                     {content:" ≫";}
.after-endmark:not(:last-child):after  {content: " / ";}
.ellipsis                              {width:100%; text-overflow:ellipsis; overflow:hidden; white-space:nowrap; display:block;}

.noscroll {position: fixed; overflow-y: scroll;}
.bg-c     {background-position: center top; background-repeat: no-repeat;}

ul,ol {
  list-style: none;
}
.appear-contents,
.appear-delay > li {position: relative; opacity: 0; top: 20px; -webkit-transform: translate3d(0,0,0);}

table.base-table     {width: 100%; border-collapse: collapse;}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}



/* -- sp_menu_simple
-------------------------------------------------------------------------------- */
@charset "utf-8";

body.is-scrollLock {
    overflow: hidden;
}
:root {
    --txt-color: #222;
    --assort-color: #36B3F3;
    --accent-color: #FE8929;
    --second-accent-color: #FFC960;
    --third-accent-color: #FF7D62;
    --sub-color: #98D4F2;
    --light-color: #D9EEF9;
    --border-color: #AADCF6;
    --bg-color: #F5F7FA;
}
/* -- ul#menu -------------------------------------------------------------------------------- */

#g-nav {
	list-style-type: none;
	width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
	z-index: 101;
    opacity: 0;
    display: none;
}

#g-nav li {
	text-align: center;
}

#g-nav li a {
    font-size: max(2vw,26px);
	text-decoration: none;
	display: block;
    color: var(--txt-color);
    position: relative; 
    padding: 2vh 2.5% 2vh 4.5%;
    box-sizing: border-box;
    font-weight: 800;
}




/* -- div#sp-icon -------------------------------------------------------------------------------- */

div.sp-icon {
    width: 60px;
    height: 60px;
    max-width: 85px;
	position: absolute;
	right: 20px;
	top: 15px;
	z-index: 1000;
}
div.sp-icon.sp-open {
    position: fixed;
}

div.sp-icon:hover {
	cursor: pointer;
	opacity: 1;
}

div.sp-icon span.menubar,
div.sp-icon span.menubar:before,
div.sp-icon span.menubar:after {
	display: inline-block;
	width: 28px;
	height: 3px;
	background: var(--assort-color);
	position: absolute;
	transition-property: transform;
	transition-duration: 0.3s;
    border-radius: 3px;
}

div.sp-icon span.menubar {
	left: 50%;
	top: 50%;
	transform: translate( -50%, -50% );
}

div.sp-icon span.menubar:before {
	content: "";
	transform: translateY( -10px ) rotate( 0deg );
}

div.sp-icon span.menubar:after {
	content: "";
	transform: translateY( 10px ) rotate( 0deg );
}


div.sp-open span.menubar {
	background: transparent !important;
}

div.sp-open span.menubar:before {
    background: #fff;
	transform: rotate( 45deg ) !important;
}

div.sp-open span.menubar:after {
    background: #fff;
	transform: rotate( -45deg ) !important;
}



div.sp-icon span.text {
    position: absolute;
    bottom: 7px;
    right: 18px;
    font-size: 10px;
    display: none;
}

div.sp-open span.text {
    color: #fff;
}



#g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:relative;
    z-index: 999;
	top: 0;
	width:100%;
    display: block;
    animation-name:gnaviAnime;
    animation-duration:1s;
    animation-delay:.2s;/*0.2 秒遅らせて出現*/
    animation-fill-mode:forwards;
    overflow-y: scroll;
}

/*丸の拡大*/
.circle-bg {
    position: fixed;
	z-index:3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #98D4F2;
	transform: scale(0);
	right:-50px;
    top:-50px;
    transition: all .6s;
}

.circle-bg.circleactive {
	transform: scale(50);
}

@keyframes gnaviAnime {
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
}



@charset "UTF-8";
/* CSS Document */
/*===================================================================
//  基本設定
//=================================================================*/
html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
}

#pagetop,
#pagebottom {
  word-break: break-all; /*min-width: 1080px;*/
  position: relative;
}

.tb {
  display: none !important;
}

.sp {
  display: none !important;
}

a:focus {
  outline: none;
}

.contents-wrapper {
  width: 100%;
  max-width: 1400px;
  padding-left: 32px;
  padding-right: 32px;
  margin: 0 auto;
}

.margin-b {
  margin-bottom: 2em;
}

.red {
  color: #FE8929;
}

.accent_color {
  color: #FE8929;
}

.link_color {
  color: #acceeb;
  text-decoration: underline !important;
}

.bg_grad {
  background: rgb(229, 246, 255);
  background: linear-gradient(225deg, rgba(229, 246, 255, 0.2049194678) 0%, rgba(255, 223, 196, 0.2021183473) 100%);
}

.holizontal {
  writing-mode: vertical-rl;
}
.holizontal .text-combine {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}

.grid_layout {
  padding: 0 20px;
  display: grid;
  grid-gap: 0 32px;
  gap: 0 32px;
  grid-auto-flow: row;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.btn_wrap {
  margin: 0.5rem 1% 0;
}
.btn_wrap .btn {
  display: inline-block;
  width: 250px;
  border-radius: 5px;
  padding: 0.3rem 0.2rem 0.3rem;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
.btn_wrap .btn:hover {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 1 !important;
}
.btn_wrap .btn:hover img {
  opacity: 1 !important;
}
.btn_wrap .btn.tel_btn {
  max-width: 320px;
  padding: 1rem 0.2rem 1rem;
  /*color: (darken($assort-color, 10%));
  display: flex;
  .small {
      width: 125px;
      letter-spacing: -0.05em;
  }
  .num {
      .rubi {
          font-size: 10px;
          display: block;
          line-height: 1;
      }
      .alpha {
          font-size: 40px;
          font-weight: 900;
      }
  }*/
}
.btn_wrap .btn.tel_btn:hover {
  box-shadow: none;
}
.btn_wrap .btn.contact_btn {
  color: #fff;
  background-color: #FE8929;
  border: 2px solid #FE8929;
  width: 180px;
}
.btn_wrap .btn.contact_btn .small {
  display: block;
}
.btn_wrap .btn.contact_btn .txt {
  display: block;
  font-size: 25px;
}
.btn_wrap .btn.paphret_btn {
  color: #36B3F3;
  background-color: #fff;
  border: 2px solid #36B3F3;
  width: 100px;
}
.btn_wrap .btn.paphret_btn .icon {
  display: block;
  margin: 0 auto;
  font-size: 34px;
  font-weight: 300;
}
.btn_wrap .btn.paphret_btn .txt {
  font-size: 14px;
  letter-spacing: -0.05em;
  font-weight: 500;
}

table.base-table tbody {
  display: block;
}
table.base-table tr {
  display: table;
  width: 100%;
}
table.base-table th {
  width: 200px;
  position: relative;
  display: table-cell;
  vertical-align: top;
  padding: 1.2rem 0.5rem 1.3rem 1rem;
  text-align: left;
  font-size: 15px;
  color: #222;
  font-weight: 600;
  border-top: 3px solid #bce3f7;
}
table.base-table td {
  display: table-cell;
  vertical-align: middle;
  padding: 1.2rem 1rem 1.3rem;
  border-top: 3px solid #F1F4F6;
}
table.base-table td ul.list,
table.base-table td ol.list {
  margin-left: 1.8em;
}
table.base-table td p {
  padding-bottom: 0.5em;
}

dl.base-dl:after {
  content: "";
  display: block;
  clear: both;
}
dl.base-dl dl {
  display: table;
  width: 100%;
  border-top: 1px solid #AADCF6;
}
dl.base-dl dl:last-child {
  border-bottom: 1px solid #AADCF6;
}
dl.base-dl dt {
  display: block;
  float: left;
  padding: 0.5rem 0.5rem;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  width: 30px;
}
dl.base-dl dt i {
  display: inline-block;
  vertical-align: middle;
}
dl.base-dl dd {
  display: block;
  padding: 0.5rem 0.5rem;
  margin-left: 30px;
}
dl.base-dl dd ul.list,
dl.base-dl dd ol.list {
  margin-left: 1.8em;
}
dl.base-dl dd p {
  padding-bottom: 0.5em;
}

.section_txt {
  display: inline-block;
  font-size: 4rem;
  color: #1d1d1d;
  font-weight: bold;
  position: relative;
  padding: 1.5rem;
  text-align: center;
}

.section_ttl.gothic {
  font-size: 24px;
}

.section_ttl .small {
  display: block;
  font-size: 13px;
}

.desc_text {
  font-size: 14px;
  max-width: 750px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  padding-bottom: 3em;
  font-weight: bold;
}

.small {
  font-size: 12px;
}

.marker {
  background: linear-gradient(transparent 55%, #ffeb5d 55%);
  font-weight: bold;
  display: inline;
  padding: 0 0.15em;
}

i {
  display: inline-block;
  vertical-align: middle;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
}

/*.icon::after {
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    width: 17px;
    height: 17px;
}*/
.txt {
  display: inline-block;
  vertical-align: middle;
}

a.link {
  text-decoration: underline;
  color: #36B3F3;
  font-weight: 600;
}
a.link .txt {
  text-decoration: underline;
}

#container {
  position: relative;
  z-index: 1;
  background: #222;
  padding: 600px 0;
  text-align: center;
}

.section_txt_big {
  font-size: 50px;
  display: block;
  color: #F39800;
}

.section_txt_sub {
  font-size: 18px;
  color: #562E00;
  padding: 0.5rem 0;
  font-weight: normal;
}

/* slick 初期化 */
/* ---------------------------- */
.slick-initialized .slick-slide {
  margin: 0;
}

.slick-dots li.slick-active button:before {
  color: #98D4F2;
}

/* ローディングアニメーション */
/* ---------------------------- */
@keyframes slideOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* アニメーションスタイル */
/* ---------------------------- */
/* アニメーション前 */
.u-fade-type-up {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* トリガー発火でis-activeを付与 */
.is-active .u-fade-type-up {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
.is-active .u-fade-type-up:nth-child(2) {
  transition-delay: 0.4s;
}
.is-active .u-fade-type-up:nth-child(3) {
  transition-delay: 0.8s;
}
.is-active .u-fade-type-up:nth-child(4) {
  transition-delay: 1.2s;
}
.is-active .u-fade-type-up:nth-child(5) {
  transition-delay: 1.6s;
}
.is-active .u-fade-type-up:nth-child(6) {
  transition-delay: 2s;
}

/*===================================================================
//  ヘッダー
//=================================================================*/
#menu_user_information_box {
  display: none;
}

#header {
  position: sticky;
  position: -webkit-sticky;
  z-index: 999;
  top: 0;
  transition: 0.3s;
}
#header .outer {
  position: relative;
  z-index: 100;
  max-width: 100%;
  width: 100%;
  border-bottom: 1px solid #AADCF6;
}
#header .outer .contents {
  width: 100%;
  position: relative;
  background: #fff;
  /*.h1_txt {
      display: table-cell;
      vertical-align: middle;
      h1 {
          font-size: 13px;
          color: lighten($txt-color, 25%);
          padding: 0 1.5rem;
          font-weight: normal;
      }
  }
  .btn_wrap {
      display: inline-block;
      vertical-align: middle;
      max-width: 400px;
      width: 20%;
      .btn {
          padding: 0.5rem 2.5% 0.6rem;
          width: 100%;
          margin: 0.4rem 1%;
          &.demo_btn {
          }
          &.contact_btn {
          }
          &.paphret_btn {
              .icon {
                  display: block;
                  margin: 0 auto;
                  font-size: 34px;
                  font-weight: 300;
              }
              .txt {
                  font-size: 14px;
                  letter-spacing: -0.05em;
                  font-weight: 500;
              }
          }
      }
  }*/
}
#header .outer .contents h1 {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: -0.03em;
  line-height: 1;
  padding: 0.2rem 0 0;
}
#header .outer .contents h1 span {
  line-height: 1.2;
}
#header .outer .contents .upper_contents {
  display: flex;
  padding: 0 20px;
  gap: 3%;
}
#header .outer .contents .upper_contents .logo {
  flex-basis: 40%;
  padding: 0em 0.2em 0em 0;
  box-sizing: border-box;
  font-size: 2em;
  font-weight: bold;
  color: #000;
  letter-spacing: 0.02em;
}
#header .outer .contents .upper_contents .logo a {
  display: block;
}
#header .outer .contents .upper_contents .logo a .logo_img {
  width: 100%;
  max-width: 286px;
  display: inline-block;
  vertical-align: middle;
  padding: 10px 0;
}
#header .outer .contents .upper_contents .logo a .logo_alpha {
  font-size: 20px;
  color: #FFC960;
  display: inline-block;
  vertical-align: bottom;
  padding: 0 0 0.2rem;
  font-weight: 900;
}
#header .outer .contents .upper_contents .contents_menu_top {
  display: flex;
  flex-basis: 60%;
  width: 100%;
  justify-content: right;
  align-items: center;
}
#header .outer .contents .contents_menu {
  width: 100%;
  background-color: #fff;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  align-items: center;
  gap: 1%;
}
#header .outer .contents .contents_menu .link {
  text-align: center;
}
#header .outer .contents .contents_menu .link a {
  width: 100%;
  height: 100%;
}
#header .outer .contents .contents_menu .link .txt {
  font-size: 16px;
  font-weight: 600;
}
#header .outer .contents .contents_menu .link .icon {
  margin: 0rem auto 0rem;
  display: block;
  width: 38px;
}
#header .outer .contents .contents_menu .link:hover {
  opacity: 1 !important;
}
#header .outer .contents .contents_menu .link:hover img {
  opacity: 1 !important;
  scale: 1.2;
}
#header .outer .contents .contents_menu .link.link_of {
  min-width: 91px;
  display: inline-block;
  padding: 0 0.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.5rem 0%;
  display: inline-block;
  flex-basis: 13.3%;
}
#header .outer .contents .contents_menu .link.link_of.fixed {
  font-size: 14px;
  padding: 0rem 0 0.3rem 0;
}
#header .outer .contents .contents_menu .link.link_of.fixed a {
  color: #666;
}
#header .outer .contents .contents_menu .link.link_of a {
  color: #222;
  text-decoration: none;
}
#header .outer .contents .contents_menu .link.link_of a.noitem:hover ~ .child_menu {
  display: none;
}
#header .outer .contents .contents_menu .link.link_of a:hover .alpha {
  color: #FE8929;
}
#header .outer .contents .contents_menu .link.link_of a:hover ~ .child_menu {
  width: 100%;
  z-index: -999;
  transform: translateY(1055px);
  opacity: 1;
  transform: translateY(0px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s linear;
}
#header .outer .contents .contents_menu .link.link_of .child_menu {
  display: flex;
  flex-wrap: wrap;
  z-index: -999;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  padding: 1rem 10%;
  background-color: #98D4F2;
  opacity: 0;
  transform: translateY(-121%);
  transition: transform 0.4s ease-in, opacity 0.2s linear 0.2s;
  overflow: hidden;
}
#header .outer .contents .contents_menu .link.link_of .child_menu:hover {
  width: 100%;
  z-index: -999;
  transform: translateY(1055px);
  opacity: 1;
  transform: translateY(0px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s linear;
}
#header .outer .contents .contents_menu .link.link_of .child_menu .item {
  width: 20%;
  padding: 0.8rem 0.5rem;
  display: block;
  text-align: left;
  position: relative;
  border-radius: 5px;
  text-decoration: none;
}
#header .outer .contents .contents_menu .link.link_of .child_menu .item:hover {
  background-color: #81cbef;
}
#header .outer .contents .contents_menu .link.link_of .child_menu .item a:empty {
  display: none;
}
#header .outer .contents .contents_menu .link.link_of .child_menu .item a:after {
  font-family: "Material Symbols Rounded";
  content: "\e5cc";
  margin: auto;
  position: absolute;
  top: calc(50% - 15px);
  bottom: auto;
  right: 5px;
  font-size: 22px;
  font-weight: 300;
}
#header .outer .contents .contents_menu .link.link_of .child_menu .item a .icon {
  color: #222;
  font-size: 14px;
  vertical-align: top;
  margin-left: 0.2rem;
  display: inline;
}
#header .outer .contents .contents_menu .link.link_ec {
  width: 100px;
  max-width: 85px;
  background-color: #FFC960;
}
#header .outer .contents .contents_menu .link.link_ec a,
#header .outer .contents .contents_menu .link.link_ec a .icon::after {
  color: #fff !important;
  line-height: 1;
}
#header .outer .nav_wrap {
  position: relative;
  top: -124px;
  display: none;
}
#header .outer .circle-bg {
  display: none;
}

.sp-icon {
  display: none;
  /*display: table-cell;
  vertical-align: middle;
  position: absolute;
  right: 30px;*/
}

#g-nav {
  padding: 6vh 5% 6em;
}
#g-nav .nav_caption {
  font-size: 14px;
  display: block;
  margin: 0 2% 1rem;
  color: #fff;
}
#g-nav .nav_sns {
  width: 96%;
  text-align: left;
  margin: 0 2% 3rem;
  border-bottom: 1px solid;
}
#g-nav .nav_sns .nav_caption {
  font-size: 14px;
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
#g-nav .nav_sns a {
  display: inline-block;
  padding: 0.5rem 0.5rem;
  font-size: min(7vw, 24px);
}
#g-nav .nav_list .header_logo {
  background: transparent;
  float: none;
  width: 200px;
  padding-bottom: 0;
}
#g-nav .nav_list .nav_item {
  text-align: left;
}
#g-nav .nav_list .nav_item .nav_item_inner:hover {
  opacity: 1 !important;
}
#g-nav .nav_list .nav_item .nav_item_inner .nav_item_inner_box {
  position: relative;
}
#g-nav .nav_list .nav_item .nav_item_inner .nav_item_inner_box:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FE8929;
  position: absolute;
  bottom: 10px;
  left: -2rem;
  top: calc(50% - 5px);
  margin: auto;
}
#g-nav .nav_list .nav_item .nav_item_inner .alpha {
  font-size: min(3vw, 30px);
}
#g-nav .nav_list .nav_item .nav_item_inner .icon {
  position: absolute;
  left: 3%;
  top: calc(50% - 25px);
  margin-right: 0.6rem;
}
#g-nav .nav_list .nav_item.ec .nav_item_inner {
  color: #FFC960;
}
#g-nav .nav_list .nav_item .nav_list_child .nav_item_child .nav_item_child_inner {
  padding: 0.2rem 0.5rem 0.3rem 2.5rem;
  display: block;
  text-align: left;
  position: relative;
  border-radius: 5px;
  text-decoration: none;
  font-size: max(2vw, 18px);
  font-weight: 600;
}
#g-nav .nav_list .nav_item .nav_list_child .nav_item_child .nav_item_child_inner .icon {
  color: #222;
  font-size: 14px;
  vertical-align: top;
  margin-left: 0.2rem;
  display: inline;
}
#g-nav .nav_list .nav_item .nav_list_child .nav_item_child .nav_item_child_inner:after {
  font-family: "Material Symbols Rounded";
  content: "\e5cc";
  margin: auto;
  position: absolute;
  top: calc(50% - 16px);
  bottom: auto;
  right: 5px;
  font-size: 22px;
  font-weight: 300;
}
#g-nav .nav_btm {
  text-align: right;
  position: absolute;
  bottom: 6rem;
  right: 5%;
  font-weight: 300;
}
#g-nav .nav_btm .mv_copy {
  font-size: 14px;
}
#g-nav .nav_btm .nav_link {
  padding-left: 1rem;
  font-size: 14px;
}

/*===================================================================
//  ページ - 共通
//=================================================================*/
/** 共通 **/
.fv {
  z-index: 1;
}

.cta_wrap {
  padding-bottom: 7rem;
}
.cta_wrap .cta_ttl {
  text-align: center;
  padding-bottom: 1.5rem;
}
.cta_wrap .cta_btn_outer {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 3%;
  align-items: center;
}
.cta_wrap .cta_btn_outer .btn_wrap {
  flex-grow: 1;
  flex-basis: 35%;
  margin: 0rem 1% 0;
}
.cta_wrap .cta_btn_outer .btn_wrap .paphret_btn {
  color: #36B3F3;
  background-color: #fff;
  border: 2px solid #36B3F3;
  width: 100%;
  height: 200px;
  display: block;
  padding: 2.5rem 1rem;
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.1);
}
.cta_wrap .cta_btn_outer .btn_wrap .paphret_btn .icon {
  display: block;
  margin: 0 auto;
  font-size: 50px;
  font-weight: 300;
}
.cta_wrap .cta_btn_outer .btn_wrap .paphret_btn .txt {
  font-size: 14px;
  letter-spacing: -0.05em;
  font-weight: 700;
  font-size: 18px;
}
.cta_wrap .cta_btn_outer .btn_wrap .paphret_btn:hover {
  opacity: 1 !important;
  box-shadow: none;
}
.cta_wrap .cta_btn_outer .cta_btn {
  flex-grow: 1;
  flex-basis: 65%;
}
.cta_wrap .cta_btn_outer .cta_btn .tel_btn {
  background-color: #36B3F3;
  border-radius: 5px;
  padding: 1rem 0.2rem;
  display: block;
  margin: 0 0 1rem;
  box-shadow: 10px 10px 35px rgba(0, 143, 217, 0.4);
}
.cta_wrap .cta_btn_outer .cta_btn .tel_btn img {
  margin: 0 auto;
}
.cta_wrap .cta_btn_outer .cta_btn .tel_btn:hover {
  opacity: 1 !important;
  box-shadow: none;
}
.cta_wrap .cta_btn_outer .cta_btn .tel_btn:hover img {
  opacity: 1 !important;
}
.cta_wrap .cta_btn_outer .cta_btn .contact_btn {
  text-align: center;
  background-color: #FE8929;
  color: #fff;
  border-radius: 5px;
  padding: 1rem 1rem;
  display: block;
  box-shadow: 10px 10px 35px rgba(217, 98, 0, 0.4);
  line-height: 1;
}
.cta_wrap .cta_btn_outer .cta_btn .contact_btn .txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.cta_wrap .cta_btn_outer .cta_btn .contact_btn h4 {
  font-size: 28px;
  font-weight: 800;
}
.cta_wrap .cta_btn_outer .cta_btn .contact_btn:hover {
  opacity: 1 !important;
  box-shadow: none;
}

.base_detail {
  flex-wrap: wrap;
  gap: 2%;
}
.base_detail .item {
  flex-basis: 49%;
}
.base_detail .item details {
  background-color: #fff;
  max-width: 100%;
  margin: 0 auto 0.5rem;
  border-radius: 5px;
  padding: 1rem 2rem 1rem 1rem;
  transition: all 0.3s;
}
.base_detail .item details summary {
  display: block;
  position: relative;
  font-weight: 600;
}
.base_detail .item details summary:-webkit-details-marker {
  display: none;
}
.base_detail .item details summary:after {
  font-family: "Material Symbols Rounded";
  content: "\e145";
  margin: auto;
  position: absolute;
  top: 2px;
  bottom: auto;
  right: -24px;
  font-size: 22px;
  font-weight: 300;
}
.base_detail .item details summary .alpha {
  font-size: 26px;
  color: #36B3F3;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  margin-right: 0.2rem;
}
.base_detail .item details summary .txt {
  display: inline;
}
.base_detail .item details .details_cont {
  padding: 0.5rem 1.5rem 0 2.3rem;
  animation: fadeIn 0.5s ease;
}
.base_detail .item details:hover {
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.1);
}
.base_detail .item details[open] summary:after {
  content: "\e15b";
}
.base_detail .item details[open] .details_cont {
  animation: fadeIn 0.5s ease;
}
.base_detail .item details[open] .details_cont .alpha {
  font-size: 21px;
  color: #fe8929;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  margin-right: 0.2rem;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*===================================================================
//  TOP - メイン
//=================================================================*/
.scrolldown2 {
  position: absolute;
  bottom: 0vh;
  right: 0;
  width: 130px;
  height: 100px;
  z-index: 99;
}
.scrolldown2 span {
  position: absolute;
  left: 5px;
  top: calc(50% - 11px);
  color: #222;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.scrolldown2:before {
  content: "";
  position: absolute;
  bottom: 38px;
  right: 38px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FE8929;
  z-index: 1;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.scrolldown2:after {
  content: "";
  position: absolute;
  bottom: 38px;
  right: 41px;
  width: 1px;
  height: 20px;
  background: #B7CDEA;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 55px;
  }
  100% {
    bottom: 37px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/*===================================================================
//  TOP - セクション
//=================================================================*/
main {
  width: 100%;
  margin: 0 auto 0;
}
main.txt {
  display: block;
}
main .home_fv {
  position: relative;
  height: calc(100vh - 136px);
  min-height: 600px;
  background-color: transparent;
  position: relative;
  padding-bottom: 0vh;
  margin-bottom: 11rem;
}
main .main_wrap {
  width: 100%;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto 0;
  padding: 0 0 0;
  min-height: 600px;
  z-index: 0;
  background-image: url(http://www.apex-sangyo.jp/image/free/top_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
main .main_wrap .main_img .main_catch {
  position: absolute;
  top: 0.5rem;
  right: 0;
  font-size: min(7.5vw, 110px);
  display: block;
  color: transparent;
  opacity: 20%;
  -webkit-text-stroke: 1px #36B3F3;
  z-index: 0;
}
main .main_wrap .main_img .main_img_01 {
  position: absolute;
  top: 7rem;
  right: 2%;
  width: 52%;
  height: 60vh;
  max-width: 100%;
  min-height: 420px;
  background-image: url(http://www.apex-sangyo.jp/image/free/fv_img_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
}
main .main_wrap .main_img .main_img_02 {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 23%;
  height: calc(60vh - 50px);
  max-width: 100%;
  min-height: 380px;
  background-image: url(http://www.apex-sangyo.jp/image/free/fv_img_02.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0 0 5px 0;
}
main .main_wrap .main_img .main_img_03 {
  position: absolute;
  bottom: -11rem;
  right: 0;
  width: 27%;
  height: 29vh;
  max-width: 100%;
  min-height: 200px;
  background-image: url(http://www.apex-sangyo.jp/image/free/fv_img_03.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px 0 0 5px;
}
main .main_wrap .since {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  font-size: 41px;
  text-align: center;
  color: #36B3F3;
}
main .main_wrap .since .big {
  font-size: 64px;
}
main .main_wrap .contents {
  margin: 0 0 0 auto;
  padding: 15vh 5% 0 43vw;
  z-index: 1;
  position: relative;
  height: 100%;
  /*.mv_btn {
      margin-bottom: 1rem;
      .btn {
          width: 300px;
          padding: 1.3rem;
          .txt {
              font-size: min(2.5vw, 19px);
              font-weight: 700;
          }
      }
  }
  .mv_companyname {
      display: block;
      color: #888;
      font-size: 13px;
  }*/
}
main .main_wrap .contents .catch_copy {
  font-size: min(2vw, 32px);
  padding-bottom: 1.5rem;
  max-height: 800px;
  line-height: 2.3;
  /*filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.1));*/
  color: #222;
  position: absolute;
  top: 0;
  left: 27vw;
  height: calc(100vh - 146px);
  padding: 13vh 0 0;
}
main .main_wrap .contents .catch_copy .dot {
  position: relative;
}
main .main_wrap .contents .catch_copy .dot:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #36B3F3;
  position: absolute;
  right: -12px;
  top: calc(50% - 2px);
}
main .main_wrap .mv_bnr {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  width: 242px;
  height: 182px;
  border-radius: 0 5px 5px 0;
  overflow: hidden;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  z-index: 1;
  background-color: #fff;
}
main .main_wrap .mv_bnr .bnr_item {
  width: 100% !important;
}
main .main_wrap .mv_bnr .bnr_item .bnr {
  display: block;
}
main .fv_btm {
  position: relative;
  z-index: 0;
  margin-bottom: 5rem;
  height: auto;
  top: auto;
  z-index: -1;
  padding: -20vh 0 0;
  position: absolute;
  bottom: -8rem;
  left: 0;
  right: 0;
  margin: auto;
  /*.main_img {
      .main_img_03 {
          position: absolute;
          bottom: -2rem;
          right: 0;
          width: 27%;
          height: 29vh;
          max-width: 100%;
          background-image: url(http://www.apex-sangyo.jp/image/free/fv_img_03.jpg);
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
          border-radius: 5px 0 0 5px;
      }
  }*/
}
main .fv_btm:before {
  content: "";
  width: 1px;
  height: 8rem;
  background-color: #AADCF6;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
main .fv_btm:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #AADCF6;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
main .fv_btm figure {
  width: 300px;
  padding: 4rem 0 0 20px;
}

@keyframes fluidrotate {
  0%, 100% {
    border-radius: 65% 35% 47% 53%/44% 57% 43% 56%;
  }
  33% {
    border-radius: 35% 65% 32% 68%/50% 47% 53% 50%;
  }
  66% {
    border-radius: 51% 49% 60% 40%/56% 56% 44% 44%;
  }
}
.section_ttl_wrap {
  padding-top: 8rem;
  padding-bottom: 5rem;
  text-align: center;
}

.section_ttl {
  font-size: 40px;
  font-weight: 700;
  display: block;
  color: #222;
  padding-bottom: 3rem;
}

.section_ttl_alpha {
  position: absolute;
  top: 0;
  right: 32px;
  /*top: 115px;
  right: -155px;
  transform: rotate(90deg);*/
  font-size: min(9vw, 120px);
  display: block;
  color: transparent;
  opacity: 70%;
  -webkit-text-stroke: 1px #36B3F3;
}

.section_ttl_alpha_left {
  position: absolute;
  top: 0;
  left: 32px;
  /*transform: rotate(90deg);*/
  font-size: 120px;
  display: block;
  color: transparent;
  opacity: 70%;
  -webkit-text-stroke: 1px #36B3F3;
}

.sub_ttl {
  font-size: 26px;
  font-weight: 700;
  display: block;
  color: #222;
  padding-bottom: 2rem;
}

.child_ttl {
  position: relative;
  padding-left: 34px;
  font-size: 24px;
  margin-bottom: 0.5rem;
}
.child_ttl:before {
  content: "";
  width: 23px;
  height: 6px;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  background: #AADCF6;
}

.reverse {
  flex-direction: row-reverse;
}

.more_btn {
  display: block;
  max-width: 200px;
  margin: 0 0 0 auto;
  padding: 0.5rem 3.5rem 0.5rem 0;
  text-align: right;
  font-size: 16px;
  color: #999999;
  text-decoration: underline;
  position: relative;
  /* &.more_btn_w {
       background-color: var(--accent-color);
       color: var(--accent-color);
       &:before {
           background-color: #fff;
       }
       &:hover {
           color: #fff;
           i {
               color: var(--accent-color);
           }
       }
   }
   &.more_btn_r {
       background-color: #fff;
       color: #fff;
       &:before {
           background-color: var(--accent-color);
       }
       &:hover {
           color: var(--accent-color);
           i {
               color: #fff;
           }
       }
   }*/
}
.more_btn:before {
  content: "";
  width: 30px;
  height: 30px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  right: 1rem;
  top: calc(50% - 15px);
  transition: all 0.3s;
  background-color: #fff;
}
.more_btn:after {
  font-family: "Material Symbols Rounded";
  content: "\e5cc";
  font-size: 21px;
  color: #999999;
  position: absolute;
  right: 1.2rem;
  top: calc(50% - 13px);
  transition: all 0.3s;
}
.more_btn:hover {
  opacity: 1 !important;
  color: #FE8929;
}
.more_btn:hover:before {
  scale: 130%;
}
.more_btn:hover:after {
  color: #FE8929;
}

.breadcrumb {
  padding: 0.5rem 5% !important;
  font-size: 13px;
  color: #999;
}



/** 認証・SDGS **/



.award {
  padding-top: 5rem;
  margin-bottom: 2rem;
  margin-top: -3rem;
}
.award .award_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 2.5rem;
}
.award .award_wrap .text_box.certification {
  flex-basis: 33%;
}
.award .award_wrap .text_box.certification figure {
  margin: 0 auto 1rem;
  padding: 0 2rem;
}
.award .award_wrap .text_box.certification figure img {
  max-width: 280px;
  margin: auto;
  width: 100%;
}
.award .award_wrap .text_box.sdgs {
  flex-basis: 65%;
}
.award .award_wrap .text_box.sdgs figure {
  max-width: 577px;
  margin: 0 auto 1rem;
}


#hachi .mv_bnr {
  padding: 0 0 2rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
#hachi .mv_bnr .bnr {
  overflow: hidden;
  display: block;
  max-width: 280px;
  border-radius: 5px;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
}
#hachi .mv_bnr .recruit_bnr {
    max-width: 580px;
    overflow: hidden;
    display: block;
    border-radius: 5px;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
}
#hachi .mv_bnr .bnr img,
#hachi .mv_bnr .recruit_bnr img {
    object-fit: cover;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block; 
  }















/** SERVICE **/
.service {
  z-index: 1;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  padding-top: 5rem;
  z-index: -2;
  border-top: 1px solid #AADCF6;
}
.service .section_ttl_alpha {
  position: inherit;
}
.service .section_ttl {
  padding-top: 1rem;
}
.service .service_wrap .section_ttl_wrap {
  padding-top: 0;
  grid-column: 8/12;
  grid-row: 1/3;
}
.service .service_wrap .section_ttl_wrap .txt {
  text-align: left;
  vertical-align: middle;
  display: table-cell;
}
.service .service_wrap .inner {
  grid-column: 1/8;
  grid-row: 1/4;
}
.service .service_wrap .inner .service_item {
  margin-bottom: 2rem;
  display: block;
}
.service .service_wrap .inner .service_item .figure {
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  margin: 0 auto 0.5rem;
  border-radius: 5px;
}
.service .service_wrap .inner .service_item .figure img {
  max-width: 100%;
  padding: 1rem;
  margin: 0 auto;
}
.service .service_wrap .inner .service_item .catname {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.service .service_wrap .inner .service_item .catname .alpha_cond {
  color: #36B3F3;
  display: block;
  font-size: 15px;
}
.service .service_wrap .inner .area1 {
  grid-column: 1/5;
  grid-row: 1/2;
  padding-bottom: 0;
}
.service .service_wrap .inner .area2 {
  grid-column: 5/9;
  grid-row: 1/2;
}
.service .service_wrap .inner .area3 {
  grid-column: 9/13;
  grid-row: 1/2;
}
.service .service_wrap .inner .area4 {
  grid-column: 1/5;
  grid-row: 2/3;
}
.service .service_wrap .inner .area5 {
  grid-column: 5/9;
  grid-row: 2/3;
}
.service .service_wrap .inner .area6 {
  grid-column: 9/13;
  grid-row: 2/3;
}
.service .service_wrap .inner .area7 {
  grid-column: 1/5;
  grid-row: 3/4;
}
.service .service_wrap .inner .area8 {
  grid-column: 5/9;
  grid-row: 3/4;
}
.service .service_wrap .inner .area9 {
  grid-column: 9/13;
  grid-row: 3/4;
}

/** STRENGTH **/
.strength {
  z-index: 1;
  position: relative;
  background-color: #fff;
  border-top: 1px solid #AADCF6;
  overflow: hidden;
  background-image: url(http://www.apex-sangyo.jp/image/free/strength_bg.png);
  background-repeat: no-repeat;
  background-position: left top;
}
.strength .content_inner {
  position: relative;
  margin-top: -5rem;
  padding-top: 10rem;
}
.strength .content_inner:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #AADCF6;
  position: absolute;
  left: 57.8%;
  top: 0;
  z-index: -1;
}
.strength .section_ttl_alpha_left {
  /*top: 227px;
  left: -182px;*/
  top: 3rem;
}
.strength .section_ttl_wrap {
  text-align: left;
}
.strength .strength_wrap .list .area1 {
  grid-column: 3/8;
  /*grid-row: 8/13;*/
}
.strength .strength_wrap .list .area2 {
  grid-column: 8/13;
  margin-top: 6rem;
}
.strength .strength_wrap .list .area3 {
  grid-column: 3/8;
  margin-top: -3rem;
}
.strength .strength_wrap .list .area4 {
  grid-column: 8/13;
  margin-top: 3rem;
}
.strength .strength_wrap .list .area5 {
  grid-column: 3/8;
  margin-top: -6rem;
}
.strength .strength_wrap .list .area6 {
  grid-column: 8/13;
  margin-top: 0rem;
}
.strength .strength_wrap .list .item:nth-child(1) .inner {
  background-image: url(http://www.apex-sangyo.jp/image/free/strength_img_01.jpg);
}
.strength .strength_wrap .list .item:nth-child(1) .inner:before {
  background: rgb(0, 143, 217);
  background: linear-gradient(180deg, rgba(0, 143, 217, 0) 0%, rgba(0, 143, 217, 0.2) 70%, rgb(0, 143, 217) 100%);
}
.strength .strength_wrap .list .item:nth-child(1) .inner:hover:before {
  background-color: rgba(0, 143, 217, 0.3);
}
.strength .strength_wrap .list .item:nth-child(2) .inner {
  background-image: url(http://www.apex-sangyo.jp/image/free/strength_img_02.jpg);
}
.strength .strength_wrap .list .item:nth-child(2) .inner:before {
  background: rgb(0, 143, 217);
  background: linear-gradient(180deg, rgba(0, 143, 217, 0) 0%, rgba(0, 143, 217, 0.2) 70%, rgb(0, 143, 217) 100%);
}
.strength .strength_wrap .list .item:nth-child(2) .inner:hover:before {
  background-color: rgba(0, 143, 217, 0.3);
}
.strength .strength_wrap .list .item:nth-child(3) .inner {
  background-image: url(http://www.apex-sangyo.jp/image/free/strength_img_03.jpg);
}
.strength .strength_wrap .list .item:nth-child(3) .inner:before {
  background: rgb(13, 192, 205);
  background: linear-gradient(180deg, rgba(13, 192, 205, 0) 0%, rgba(13, 192, 205, 0.2) 70%, rgb(13, 192, 205) 100%);
}
.strength .strength_wrap .list .item:nth-child(3) .inner:hover:before {
  background-color: rgba(13, 192, 205, 0.3);
}
.strength .strength_wrap .list .item:nth-child(4) .inner {
  background-image: url(http://www.apex-sangyo.jp/image/free/strength_img_04.jpg);
}
.strength .strength_wrap .list .item:nth-child(4) .inner:before {
  background: rgb(101, 201, 253);
  background: linear-gradient(180deg, rgba(101, 201, 253, 0) 0%, rgba(101, 201, 253, 0.2) 70%, rgb(101, 201, 253) 100%);
}
.strength .strength_wrap .list .item:nth-child(4) .inner:hover:before {
  background-color: rgba(101, 201, 253, 0.3);
}
.strength .strength_wrap .list .item:nth-child(5) .inner {
  background-image: url(http://www.apex-sangyo.jp/image/free/strength_img_05.jpg);
}
.strength .strength_wrap .list .item:nth-child(5) .inner:before {
  background: rgb(176, 199, 66);
  background: linear-gradient(180deg, rgba(176, 199, 66, 0) 0%, rgba(176, 199, 66, 0.2) 70%, rgb(180, 185, 45) 100%);
}
.strength .strength_wrap .list .item:nth-child(5) .inner:hover:before {
  background-color: rgba(176, 199, 66, 0.3);
}
.strength .strength_wrap .list .item:nth-child(6) .inner {
  background-image: url(http://www.apex-sangyo.jp/image/free/strength_img_06.jpg);
}
.strength .strength_wrap .list .item:nth-child(6) .inner:before {
  background: rgb(217, 98, 0);
  background: linear-gradient(180deg, rgba(217, 98, 0, 0) 0%, rgba(217, 98, 0, 0.2) 70%, rgb(217, 98, 0) 100%);
}
.strength .strength_wrap .list .item:nth-child(6) .inner:hover:before {
  background-color: rgba(217, 98, 0, 0.3);
}
.strength .strength_wrap .list .item .inner {
  position: relative;
  display: block;
  min-height: 65vh;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s;
  border-radius: 5px;
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.1);
}
.strength .strength_wrap .list .item .inner:before {
  content: "";
  display: block;
  padding: 10rem 1rem 1rem;
  border-radius: 5px;
  margin-bottom: 3rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  transition: all 0.3s;
}
.strength .strength_wrap .list .item .inner:hover {
  opacity: 1 !important;
}
.strength .strength_wrap .list .item .inner:hover .sub_ttl:after {
  right: -0.2rem;
}
.strength .strength_wrap .list .item .inner:hover .sub_ttl:before {
  right: 4px;
}
.strength .strength_wrap .list .item .inner .txt_box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  width: 94%;
  margin: auto;
}
.strength .strength_wrap .list .item .inner .txt_box .num {
  font-size: min(2vw, 30px);
  color: #fff;
  display: block;
}
.strength .strength_wrap .list .item .inner .txt_box .sub_ttl {
  font-size: min(2vw, 26px);
  position: relative;
  color: #fff;
  padding-bottom: 1.3rem;
}
.strength .strength_wrap .list .item .inner .txt_box .sub_ttl:before {
  content: "";
  position: absolute;
  top: -4px;
  right: 0rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.strength .strength_wrap .list .item .inner .txt_box .sub_ttl:after {
  font-family: "Material Symbols Rounded";
  content: "\e5cc";
  position: absolute;
  top: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-size: 20px;
  right: 7px;
  margin: auto;
  color: #fff;
  font-size: 30px;
  font-weight: 300;
}
.strength .strength_wrap .list .item .inner .txt_box .txt {
  font-size: 16px;
  padding: 0 0rem 0rem 0rem;
}

#cta_mid {
  padding-top: 7rem;
  border-top: 1px solid #AADCF6;
  border-bottom: 1px solid #AADCF6;
}

/** VOICE **/
.voice {
  position: relative;
  /*padding-top: 10rem;
  margin-top: -5rem;*/
}
.voice:after {
  content: "";
  display: block;
  width: 50%;
  height: 32vh;
  position: absolute;
  top: 5rem;
  right: 0;
  background-image: url(http://www.apex-sangyo.jp/image/free/voice_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: -1;
}
.voice .section_ttl_alpha_left {
  /*top: 13rem;
  left: -85px;*/
}
.voice .section_ttl_wrap {
  text-align: left;
  padding-bottom: 1rem;
}
.voice .voice_wrap .list {
  gap: 16px 32px;
  grid-template-rows: repeat(2, 1fr);
}
.voice .voice_wrap .list .item {
  flex-grow: 1;
  flex-basis: 33%;
  padding: 4rem 5%;
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin: 0 1%;
  background-color: rgba(255, 255, 255, 0.8);
}
.voice .voice_wrap .list .item.area1 {
  grid-column: 3/8;
  grid-row: 1/2;
}
.voice .voice_wrap .list .item.area2 {
  grid-column: 8/13;
  grid-row: 1/3;
}
.voice .voice_wrap .list .item.area3 {
  grid-column: 3/8;
  grid-row: 2/3;
}
.voice .voice_wrap .list .item .ttl {
  font-size: min(2vw, 26px);
  margin-bottom: 3rem;
}
.voice .voice_wrap .list .item .txt {
  display: block;
  border-bottom: 1px solid #AADCF6;
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
}

/** FLOW **/
.flow {
  z-index: 1;
  position: relative;
  padding-top: 10em;
  background-color: #f8fafc;
}
.flow .flow_img {
  grid-column: 1/5;
  grid-row: 1/4;
  background: url(http://www.apex-sangyo.jp/image/free/flow_img.jpg) no-repeat center right;
  border-radius: 5px;
  background-size: cover;
}
.flow .flow_wrap {
  /*display: grid;
  grid-template-columns: subgrid;*/
  max-width: 1280px;
  margin: 0 auto;
  grid-column: 1/13;
  grid-row: 1/4;
}
.flow .flow_wrap .section_ttl_wrap {
  padding: 5rem 0 2rem;
  width: 100%;
  position: relative;
}
.flow .flow_wrap .section_ttl_wrap .section_ttl_alpha_left {
  transform: rotate(0deg);
  left: 0;
  right: 0;
  margin: auto;
  top: -3rem;
}
.flow .flow_wrap .section_ttl_wrap .section_ttl {
  padding: 0;
}
.flow .flow_wrap .inner {
  flex-wrap: wrap;
  gap: 1.5rem 4%;
}
.flow .flow_wrap .inner .item {
  flex-basis: 48%;
  position: relative;
}
.flow .flow_wrap .inner .item:nth-child(odd):after {
  font-family: "Material Symbols Rounded";
  content: "\e941";
  font-size: 28px;
  color: #36B3F3;
  position: absolute;
  right: -7%;
  top: calc(50% - 13px);
  transition: all 0.3s;
  font-weight: 300;
}
.flow .flow_wrap .inner .item:not(:last-child):nth-child(even):after {
  font-family: "Material Symbols Rounded";
  content: "\e941";
  font-size: 28px;
  color: #36B3F3;
  position: absolute;
  left: -7%;
  bottom: -26px;
  transition: all 0.3s;
  font-weight: 300;
  transform: rotate(140deg);
}
.flow .flow_wrap .inner .item .cont_box {
  padding: 1.2rem 5%;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #AADCF6;
  /*&.item1 {
      grid-column: 5/9;
      grid-row: 1/2;
  }
  &.item2 {
      grid-column: 9/13;
      grid-row: 1/2;
  }
  &.item3 {
      grid-column: 5/9;
      grid-row: 2/3;
  }
  &.item4 {
      grid-column: 9/13;
      grid-row: 2/3;
  }
  &.item5 {
      grid-column: 5/9;
      grid-row: 3/4;
  }
  &.item6 {
      grid-column: 9/13;
      grid-row: 3/4;
  }*/
}
.flow .flow_wrap .inner .item .cont_box .icon {
  font-size: min(4vw, 40px);
  color: #98D4F2;
  vertical-align: middle;
  display: inline-block;
  margin: 0;
  line-height: 1.3;
  font-weight: 300;
}
.flow .flow_wrap .inner .item .cont_box .nom {
  font-size: min(4vw, 40px);
  font-weight: bold;
  color: #36B3F3;
  vertical-align: middle;
  padding-right: 4%;
}
.flow .flow_wrap .inner .item .cont_box .txt {
  font-size: min(1.6vw, 20px);
  font-weight: bold;
  color: #222;
  line-height: 1.3;
}

/** CASE **/
.case {
  z-index: 1;
  position: relative;
}

.case_bg {
  grid-column: 11/13;
  grid-row: 1/4;
}
.case_bg .bg {
  background-image: url(http://www.apex-sangyo.jp/image/free/case_bg.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100%;
  width: 100%;
  height: 100%;
}

.case_wrap {
  padding-top: 5em;
  padding-bottom: 5em;
  background-image: url(http://www.apex-sangyo.jp/image/free/case_bg.png);
  background-repeat: no-repeat;
  background-position: 65%;
  background-size: 55%;
  grid-column: 1/13;
  grid-row: 1/4;
  width: 100%;
}
.case_wrap .section_ttl_wrap {
  padding: 5rem 0 2rem;
  width: 100%;
  position: relative;
}
.case_wrap .section_ttl_wrap .section_ttl_alpha_left {
  transform: rotate(0deg);
  left: 0;
  right: 0;
  margin: auto;
  top: -3rem;
}
.case_wrap .section_ttl_wrap .section_ttl {
  padding: 0;
}
.case_wrap .inner {
  counter-reset: number 0;
}
.case_wrap .inner .item {
  /*.alpha:after {
      counter-increment: number 1;
      content: counter(number)'.';
      margin-left: 0.2rem;
  }*/
}
.case_wrap .inner .item details .details_cont ul {
  counter-reset: number 0;
}
.case_wrap .inner .item details .details_cont ul li:before {
  counter-increment: number 1;
  content: counter(number) ".";
  color: #36B3F3;
  margin-right: 0.2rem;
  font-size: 16px;
  font-weight: 700;
}

/** FAQ **/
.faq {
  grid-column: 1/11;
  grid-row: 3/5;
  z-index: 1;
  position: relative;
  padding-bottom: 5rem;
  margin-top: -5rem;
  padding-top: 5rem;
}

.faq_bg {
  grid-column: 1/3;
  grid-row: 1/4;
}
.faq_bg .bg {
  background-image: url(http://www.apex-sangyo.jp/image/free/case_bg.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100%;
  width: 100%;
  height: 100%;
}

.faq_wrap {
  grid-column: 1/13;
  grid-row: 1/4;
  grid-template-rows: repeat(4, 1fr);
}
.faq_wrap .section_ttl_wrap {
  padding: 5rem 0 2rem;
  width: 100%;
  position: relative;
}
.faq_wrap .section_ttl_wrap .section_ttl_alpha_left {
  transform: rotate(0deg);
  left: 0;
  right: 0;
  margin: auto;
  top: -3rem;
}
.faq_wrap .section_ttl_wrap .section_ttl {
  padding: 0;
}
/** FORM **/
.form {
  background: #fff;
  position: relative;
  padding-top: 8rem;
}
.form .map {
  background-image: url(http://www.apex-sangyo.jp/image/free/map_tokyo.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 350px;
  max-width: 800px;
  padding-top: 0rem;
}
.form .map .section_ttl {
  padding-bottom: 13rem;
}
.form .cta_ttl {
  text-align: center;
  padding-bottom: 1.5rem;
}

/** NEWS **/
.news .contents {
  position: relative;
  z-index: 0;
  display: flex;
  padding-top: 4.5rem;
}
.news .section_ttl_wrap {
  padding-bottom: 1rem;
  padding-top: 0rem;
}
.news .section_ttl_wrap .section_ttl {
  font-size: 18px;
  padding: 0 2% 0;
  text-align: left;
}
.news .section_ttl_wrap .section_ttl .alpha {
  font-size: 40px;
  color: #36B3F3;
  margin-right: 1rem;
}
.news .topics_wrap {
  padding: 0 2% 0 0;
  flex-basis: 50%;
}
.news .topics_wrap .list .item {
  border-bottom: 1px solid #AADCF6;
  margin: 0 0 0.8rem;
}
.news .topics_wrap .list .item .inner {
  display: block;
  padding: 0.5rem 2%;
}
.news .topics_wrap .list .item .inner:hover {
  opacity: 1 !important;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  box-shadow: 3px 3px 35px rgba(0, 0, 0, 0.1);
}
.news .topics_wrap .list .item .inner .date {
  padding-bottom: 0.5rem;
}
.news .topics_wrap .list .item .inner .ttl {
  font-weight: bold;
  font-size: 16px;
}
.news .topics_wrap .list .item .inner .ttl a {
  display: block;
}
.news .news_wrap {
  padding: 0 0 0 2%;
  flex-basis: 50%;
}
.news .news_wrap .list {
  display: flex;
  flex-wrap: wrap;
}
.news .news_wrap .list .item {
  width: 50%;
  padding: 0 2% 0 0;
  margin: 0 0 0.8rem;
}
.news .news_wrap .list .item:nth-child(even) {
  padding: 0 0 0 2%;
}
.news .news_wrap .list .item .inner {
  display: block;
  padding: 1rem 5% 1rem;
  position: relative;
  border-bottom: 1px solid #AADCF6;
  height: 100%;
}
.news .news_wrap .list .item .inner:hover {
  opacity: 1 !important;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  box-shadow: 3px 3px 35px rgba(0, 0, 0, 0.1);
}
.news .news_wrap .list .item .inner time {
  width: 120px;
  display: inline-block;
  vertical-align: middle;
  color: #b6bcc4;
  font-size: 15px;
}
.news .news_wrap .list .item .inner .ttl {
  text-align: left;
  font-size: 16px;
  display: block;
  vertical-align: middle;
  padding: 0;
  font-weight: bold;
}
.news .news_wrap .list .item .inner a {
  display: block;
}
.news .news_wrap .bnr_apex_club {
  padding-top: 2rem;
}
.news .news_wrap .bnr_apex_club a {
  display: block;
}
.news .news_wrap .bnr_apex_club a img {
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.1);
  vertical-align: middle;
}

/*===================================================================
//  フッター
//=================================================================*/
footer {
  width: 100%;
  background-color: #fff;
  position: relative;
}
footer .footer_top {
  margin: 1.5rem 2% 0;
  height: 58px;
  position: relative;
}
footer .footer_top .pagetop {
  padding: 0.5rem 1rem;
  border-radius: 30px;
  position: absolute;
  right: 2%;
  color: #fff;
  font-size: 14px;
  opacity: 0.6;
  background-color: #98D4F2;
}
footer .footer_wrap {
  border-top: 1px solid #AADCF6;
}
footer .footer_wrap .inner {
  position: relative;
  justify-content: space-between;
}
footer .footer_wrap .inner.logo {
  background-image: url(http://www.apex-sangyo.jp/image/free/footer_bg.png);
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
footer .footer_wrap .inner.logo .company_prof {
  border-bottom: 1px solid #AADCF6;
  width: 100%;
  font-size: 13px;
  text-align: center;
}
footer .footer_wrap .inner.logo .company_prof .footer_catch {
  font-weight: 600;
}
footer .footer_wrap .inner .footer_logo {
  width: 310px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  padding: 2rem 0;
}
footer .footer_wrap .inner .footer_logo img {
  vertical-align: middle;
  display: inline-block;
}
footer .footer_wrap .footer_nav_wrap .inner.menu {
  padding: 4rem 0% 4rem 0%;
  flex-wrap: wrap;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu {
  padding: 0rem 1% 2rem;
  flex-grow: 1;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu .category {
  color: #36B3F3;
  font-weight: 400;
  font-size: 15px;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu .category a {
  color: #36B3F3;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu .list .item {
  padding: 0.5rem 0;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu .list .item a {
  display: block;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu .list .item a .txt {
  font-weight: 500;
  color: #666;
  font-size: 16px;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu .list .item a .icon {
  color: #36B3F3;
  font-size: 12px;
  font-size: 14px;
  vertical-align: top;
  margin-left: 0.2rem;
}
footer .footer_wrap .related_sites {
  border-top: 1px solid #AADCF6;
  border-bottom: 1px solid #AADCF6;
  padding: 1.5rem 0;
}
footer .footer_wrap .related_sites .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .footer_wrap .related_sites .list .item .txt {
  padding: 0.8rem 1.5rem;
  /* &:after {
      font-family: 'Material Symbols Rounded';
      content: '\e89e';
      display: inline-block;
      vertical-align: top;
      margin: 0 0 0 0.5rem;
      font-size: 15px;
      color: $assort-color;
  }*/
}
footer .footer_btm {
  text-align: center;
  width: 100%;
}
footer .footer_btm .copy {
  font-size: 14px;
  padding: 0.8rem 0rem 0.8rem 0;
  font-size: 0.8em;
  display: block;
  color: #888;
  font-weight: 200;
}

/*===================================================================
//  固定ページ
//=================================================================*/
/** 共通 **/
.main_content_area {
  /*display: flex;
  gap: 2%;
  flex-direction: row-reverse;
  align-items: flex-start;*/
}
.main_content_area .main_content {
  z-index: 0;
  position: relative;
  /*flex-basis: 80%;
  overflow: hidden;
  height: auto;
  margin: 5rem 0 0 auto;*/
}
.main_content_area .main_content .entry_area .title {
  font-size: 40px;
  font-weight: 700;
  display: block;
  color: #222;
  padding: 3rem 0 2rem;
  text-align: center;
}
.main_content_area .anchor_wrap {
  flex-basis: 20%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: sticky;
  top: 5rem;
}
.main_content_area .anchor_wrap .anchor_ttl {
  padding: 0.5rem 1rem;
  font-size: 16px;
}
.main_content_area .anchor_wrap .anchor_menu {
  padding: 0.5rem;
  margin: 0 auto;
}
.main_content_area .anchor_wrap .anchor_menu .item a {
  display: block;
  padding: 0.3rem;
  position: relative;
  font-size: 14px;
}
.main_content_area .anchor_wrap .anchor_menu .item a:empty {
  display: none;
}
.main_content_area .anchor_wrap .anchor_menu .item a:hover {
  opacity: 1 !important;
  background-color: #D9EEF9;
  border-radius: 5px;
}
.main_content_area .anchor_wrap .anchor_menu .item a:before {
  font-family: "Material Symbols Rounded";
  content: "\f0fa";
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" -25, "opsz" 48;
  font-size: 27px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.3rem;
  color: #36B3F3;
  width: auto;
  height: auto;
}

.page {
  display: flex;
  gap: 2%;
  align-items: flex-start;
}
.page .page_main_wrap {
  flex-basis: 80%;
  height: auto;
  overflow: hidden;
}
.page .page_main_wrap:before {
  content: "";
  background: url("../img/common/corner.png") no-repeat left top/contain;
  position: fixed;
  left: 79px;
  top: 77px;
  width: 35px;
  height: 35px;
  z-index: 9;
}
.page .page_main_wrap .anchor_cont {
  padding-top: 4rem;
  margin-top: -4rem;
}
.page .page_main_wrap .page_ttl {
  padding-bottom: 1rem;
  text-align: left;
}
.page .page_main_wrap .page_ttl .ttl {
  font-size: 40px;
  font-weight: 700;
  display: block;
  color: #222;
  padding-bottom: 3rem;
}
.page .page_main_wrap .main_img {
  position: inherit;
  top: 0;
  right: 0;
  width: 100%;
  height: 200px;
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0;
}
.page .anchor_wrap {
  flex-basis: 20%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: sticky;
  top: 5rem;
}
.page .anchor_wrap .anchor_ttl {
  padding: 0.5rem 1rem;
  font-size: 16px;
}
.page .anchor_wrap .anchor_menu {
  padding: 0.5rem;
  margin: 0 auto;
}
.page .anchor_wrap .anchor_menu .item a {
  display: block;
  padding: 0.3rem;
}
.page .anchor_wrap .anchor_menu .item a:hover {
  opacity: 1 !important;
  background-color: #D9EEF9;
}
.page .anchor_wrap .anchor_menu .item a .icon {
  color: #36B3F3;
  width: auto;
  height: auto;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" -25, "opsz" 48;
}
.page .anchor_wrap .anchor_menu .item a .txt {
  font-size: 14px;
}
.page.about, .page.qualification {
  flex-direction: row-reverse;
}

.contents-page-wrapper {
  padding: 0 5% 0 10%;
  margin: 0 auto;
}

.section_sub_ttl_obj:before {
  content: "";
  font-size: 9vw;
  color: #fff;
  position: absolute;
  top: 5.5rem;
  left: 5%;
  display: block;
  font-weight: 800;
  white-space: nowrap;
  z-index: 0;
}

.section_sub_ttl_wrap {
  padding: 3rem 5% 2rem 0;
  position: relative;
  margin: 3rem auto 0;
  z-index: 0;
}
.section_sub_ttl_wrap:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #c6eafc;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.section_sub_ttl_wrap .section_sub_ttl {
  font-size: min(5vw, 30px);
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
}

.section_child_ttl_wrap {
  padding: 1rem 0 2rem 5%;
}
.section_child_ttl_wrap:before {
  content: "";
  background-color: var(--accent-color);
  width: 8px;
  height: 30px;
  margin-right: 1rem;
  display: inline-block;
  vertical-align: middle;
}

iframe {
  border-radius: 10px;
}

/** ページャー **/
/*.page_nav {
    text-align: right;
    ul {
        li {
            display: inline-block;
            vertical-align: middle;
            border-radius: 50%;
            margin: 0 0rem 0.5rem 0;
            a {
                width: 40px;
                height: 40px;
                display: inline-block;
                vertical-align: middle;
                text-align: center;
                border-radius: 50%;
                padding: 5px;
                color: $accent-color;
                border: 1px solid #cca7a2;
                background-color: #fff;
                &.selected {
                    background-color: #980321;
                    color: #fff;
                }
            }
            &.prev,
            &.next {
                span {
                    width: 40px;
                    height: 40px;
                    display: inline-block;
                    vertical-align: middle;
                    text-align: center;
                    border-radius: 50%;
                    padding: 5px;
                    border: 1px solid #cca7a2;
                    background-color: #fff;
                    color: $accent-color;
                }
            }
            &.selected {
                border: 1px solid #980321;
                background-color: #fff;
                padding: 10px;
                background-color: $accent-color;
                color: #fff;
            }
        }
    }
}*/
/*お知らせ関連CSSここから*/
.anchor_wrap_detail {
  flex-basis: 20%;
}
.anchor_wrap_detail .anchor_menu .item a {
  display: block;
  padding: 0.3rem;
}
.anchor_wrap_detail .anchor_menu .item a:before {
  font-family: "Material Symbols Rounded";
  content: "\f0fa";
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" -25, "opsz" 48;
  font-size: 27px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.3rem;
  color: #36B3F3;
  width: auto;
  height: auto;
}
.anchor_wrap_detail .anchor_menu .item a:empty {
  display: none;
}

.anchor_wrap_detail {
  display: block;
  flex-basis: 20%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: sticky;
  top: 5rem;
}

.info_box {
  padding: 0.8rem 0px;
  display: flex;
}

.info_box + .info_box {
  border-top: 1px solid #c6eafc;
}

.info_date {
  font-weight: bold;
  color: #36b3f3;
  flex-basis: 20%;
  display: flex;
  align-items: center;
  flex-basis: 150px;
}

.info_title {
  flex-basis: calc(100% - 150px);
}

#repage {
  text-align: center;
  padding: 2rem 0;
  color: #9c9c9c;
  font-size: 15px;
}
#repage a {
  color: #36B3F3;
}

/*お知らせ関連CSSここまで*/
/* contact form */
.user_form_contents {
  max-width: 1280px;
  padding-left: 32px;
  padding-right: 32px;
  margin: 0 auto;
}
.user_form_contents form {
  max-width: 800px;
  margin: 0 auto 3rem;
  border-radius: 10px;
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 5%;
}
.user_form_contents form .user_form_box {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.user_form_contents form .user_form_box .user_form_name {
  flex-basis: 160px;
  position: relative;
  padding: 0 2.3rem 0 0;
}
.user_form_contents form .user_form_box .user_form_name label {
  font-size: 16px;
}
.user_form_contents form .user_form_box .user_form_name .user_form_name_must {
  color: #FE8929;
  font-size: 12px;
  position: absolute;
  top: 0px;
  right: 0;
  display: inline-block;
}
.user_form_contents form .user_form_box .user_form_checkbox_box {
  flex-basis: calc(96% - 160px);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.user_form_contents form .user_form_box .user_form_select_box {
  flex-basis: calc(96% - 160px);
  margin: 0 !important;
}
.user_form_contents form .user_form_box .user_form_select_box .user_form_select {
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 0.8rem 0.5rem;
  width: 100%;
}
.user_form_contents form .user_form_box .user_form_multi_box {
  flex-basis: calc(96% - 160px);
  margin: 0 !important;
}
.user_form_contents form .user_form_box .user_form_multi_box .user_form_multi_text {
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 0.8rem 0.5rem;
  width: 100%;
  height: 90px;
}
.user_form_contents form .user_form_box .user_form_single_text_box {
  flex-basis: calc(96% - 160px);
  margin: 0 !important;
}
.user_form_contents form .user_form_box .user_form_single_text_box .user_form_single_text {
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 0.8rem 0.5rem;
  width: 100%;
}
.user_form_contents form .user_form_box .user_form_mail_text_box {
  flex-basis: calc(96% - 160px);
  margin: 0 !important;
}
.user_form_contents form .user_form_box .user_form_mail_text_box .user_form_mail_text {
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 0.8rem 0.5rem;
  width: 100%;
}
.user_form_contents form .user_form_box .user_form_note {
  flex-basis: 100%;
  margin-left: 160px !important;
  padding: 0.2rem 0.5rem 0.2rem 2%;
  font-size: 13px;
  color: #888;
}
.user_form_contents form .user_form_submit {
  display: flex;
  gap: 3%;
  padding: 2.5rem 10% 2rem;
}
.user_form_contents form .user_form_submit .user_form_submit_button {
  border-radius: 5px;
  padding: 1rem 1rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.3s;
}
.user_form_contents form .user_form_submit input[type=reset] {
  flex-basis: 40%;
  background-color: #C2C2C2;
  box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.1);
}
.user_form_contents form .user_form_submit input[type=reset]:hover {
  opacity: 1 !important;
  box-shadow: none;
}
.user_form_contents form .user_form_submit input[type=submit] {
  flex-basis: 50%;
  background-color: #FE8929;
  box-shadow: 10px 10px 35px rgba(217, 98, 0, 0.4);
}
.user_form_contents form .user_form_submit input[type=submit]:hover {
  opacity: 1 !important;
  box-shadow: none;
}

/*===================================================================
//  メディアクエリ
//=================================================================*/
@media screen and (min-width: 800px) {
  .pc-non {
    display: none !important;
  }
}
/*===================================================================
//  タブレットサイズ
//=================================================================*/
/* タブレットサイズ */
@media screen and (min-width: 800px) and (max-width: 1040px) {
  #header .outer .contents .contents_menu .link .txt {
    font-size: 14px;
  }
  #header .outer .contents .contents_menu .link.link_of {
    /* display: none; */
  }
  #header .outer .contents .contents_menu .link.link_of a {
    font-size: min(1.4vw, 16px);
  }
  #header .outer .contents .contents_menu .link.link_of .child_menu {
    padding: 1rem 2%;
  }
  #header .outer .contents .contents .btn_wrap .btn {
    font-size: 16px;
  }
}/*# sourceMappingURL=common_2.css.map */

/* -- sp_2.css
-------------------------------------------------------------------------------- */


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

  @charset "UTF-8";
/* CSS Document */
/*===================================================================
//  基本設定
//=================================================================*/
.sp-non {
  display: none !important;
}

.pc {
  display: none !important;
}

.tb {
  display: none !important;
}

.sp {
  display: block !important;
}

body {
  font-size: 16px;
}

body.fixed {
  overflow: hidden;
}

.contents-wrapper {
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.space-btm {
  padding-bottom: 4.5em;
}

.contents-space-btm {
  padding-bottom: 5.5em;
}

.contents-most-btm {
  padding-bottom: 7.5em;
}

.margin-b-sp {
  margin-bottom: 1.5em !important;
}

.wide90 {
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.grid_layout {
  display: grid;
  grid-gap: 0 16px;
  gap: 0 16px;
  grid-auto-flow: row;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

table.base-table tbody {
  display: block;
}
table.base-table th {
  width: 100%;
  display: block;
  font-size: 16px;
  padding: 0.5rem 3.5rem 0.5rem 1rem;
}
table.base-table td {
  display: block;
  width: 100%;
  padding: 0.2rem 1rem 0.8rem;
}
table.base-table td ul.list,
table.base-table td ol.list {
  margin-left: 1.8em;
}

.section_txt {
  display: inline-block;
  font-size: 3rem;
  color: #1d1d1d;
  line-height: 1.3;
}

.section_txt small {
  padding-top: 0.8em;
}

.txt_accent {
  width: 140px;
}

.scroll_box {
  padding-left: 0;
}

.footer .icon_wrap a {
  color: #d4d4d4;
}

.footer .copy {
  width: 100%;
  display: block;
  padding-bottom: 0;
  color: #d4d4d4;
}

.sqare_txt {
  padding: 0.3rem 0.5rem 0.4rem 0.5rem;
}

.section_ttl {
  padding-bottom: 1.2em;
  font-size: min(7vw, 35px);
  display: block;
  text-align: left;
}
.section_ttl .alpha {
  font-size: min(15vw, 48px);
}

.section_ttl_alpha {
  top: 3rem;
  font-size: min(24vw, 85px);
}

.section_ttl_alpha_left {
  top: 3rem;
  font-size: min(24vw, 85px);
  left: 1rem;
}

.section_ttl_wrap {
  padding: 0 1rem 2rem;
}
.section_ttl_wrap .txt {
  text-align: left;
}

.sub_ttl {
  font-size: 26px;
  padding-bottom: 2rem;
}

.child_ttl {
  padding-left: 33px;
  font-size: 20px;
}
.child_ttl:before {
  width: 26px;
}

.more_btn {
  width: 100%;
}
.breadcrumb {
  font-size: 12px;
}

/*===================================================================
//  ヘッダー
//=================================================================*/
#header .outer {
  position: relative;
  top: 0;
  padding: 0;
}
#header .outer.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
#header .outer .contents .upper_contents {
  display: block;
  padding: 0 2.5%;
}
#header .outer .contents .upper_contents .logo {
  min-width: unset;
  padding: 0;
}
#header .outer .contents .upper_contents .logo a .logo_img {
  padding: 5px 0px 5px 0;
}
#header .outer .contents .upper_contents .logo h1 {
  display: none;
}
#header .outer .contents .upper_contents .logo a.tel_btn {
  font-size: 10px;
  font-weight: normal;
  letter-spacing: -0.03em;
}
#header .outer .contents .upper_contents .contents_menu_top {
  display: none;
}
#header .outer .contents .contents_menu {
  /* display: none; */
  gap: 0;
  flex-wrap: nowrap;
}
#header .outer .contents .contents_menu .link.link_of {
  display: none;
}
#header .outer .contents .contents_menu .link.link_of.fixed {
  font-size: 12px;
  padding: 0.3rem 0 0.3rem 0;
  flex-basis: 25%;
  flex-grow: 1;
  border-top: 1px solid #AADCF6;
  border-bottom: none;
  border-right: 1px solid #AADCF6;
  border-left: none;
  display: block;
  font-feature-settings: "palt";
}
#header .outer .contents .contents_menu .link.link_of.fixed:first-child {
  border-left: 1px solid #AADCF6;
}
#header .outer .contents .contents_menu .link.link_of.fixed a {  
  letter-spacing: -0.05rem;
}
#header .outer .nav_wrap {
  position: relative;
  top: -64px;
  display: block;
}
#header .outer .circle-bg {
  display: block;
}

#g-nav {
  padding: 3vh 5% 4em;
}
#g-nav .nav_list .nav_item {
  width: 100%;
  margin: 0 0% 0rem;
}
#g-nav .nav_list .nav_item .nav_item_inner {
  font-size: min(6vw, 19px);
  font-weight: 700;
  padding: 0.2rem 0 0.2rem 1.5rem;
}
#g-nav .nav_list .nav_item .nav_item_inner .nav_item_inner_box:before {
  left: -1.5rem;
}
#g-nav .nav_list .nav_item .nav_item_inner .alpha {
  font-size: min(6vw, 30px);
}
#g-nav .nav_list .nav_item .nav_item_inner .icon {
  left: 5%;
  top: calc(50% - 18px);
  width: 35px;
}
#g-nav .nav_btm {
  position: static;
  bottom: 1rem;
  text-align: left;
  width: 100%;
  padding-top: 2rem;
}
#g-nav .nav_btm .mv_copy {
  display: block;
}
#g-nav .nav_btm .nav_link {
  display: block;
  padding: 0;
}
#g-nav .nav_caption {
  margin: 0 2% 0rem;
}

div.sp-icon {
  width: 65px;
  top: 0;
  right: 0;
  display: block;
}
div.sp-icon.sp-open {
  position: fixed;
}

/*===================================================================
//  SPメニュー　Drawer
//=================================================================*/
/*.drawer-hamburger-icon, 
.drawer-hamburger-icon:after, 
.drawer-hamburger-icon:before {
    background: #3EA1D1;
}
.drawer-hamburger-icon,
.drawer-hamburger-icon:after, 
.drawer-hamburger-icon:before {
    height: 5px;
}
.drawer-hamburger {
    padding-top: 20px;
    padding-right: 20px;
}
.drawer--right.drawer-open .drawer-hamburger {
    right: 0px;
}
.drawer-nav {
    background: #defcee;
}
.drawer-overlay {
    background-color: rgba(0, 0, 0, .3);
}*/
/*===================================================================
//  ページ - 共通
//=================================================================*/
/** 共通 **/
.fv {
  z-index: 1;
}

.cta_wrap .cta_btn_outer .btn_wrap {
  flex-basis: 30%;
}
.cta_wrap .cta_btn_outer .btn_wrap .paphret_btn {
  height: 170px;
  padding: 1.8rem 0.2rem;
}
.cta_wrap .cta_btn_outer .btn_wrap .paphret_btn .icon {
  font-size: 40px;
}
.cta_wrap .cta_btn_outer .btn_wrap .paphret_btn .txt {
  font-size: min(3.5vw, 18px);
}
.cta_wrap .cta_btn_outer .cta_btn {
  flex-basis: 70%;
}
.cta_wrap .cta_btn_outer .cta_btn .contact_btn .txt {
  font-size: 11px;
}
.cta_wrap .cta_btn_outer .cta_btn .contact_btn h4 {
  font-size: min(5vw, 28px);
}

.base_detail .item details .details_cont {
  padding: 0.5rem 0rem 0 0rem;
}
/*===================================================================
//  メイン
//=================================================================*/
main {
  width: 100%;
  margin: 0 auto 0;
}
main.txt {
  display: block;
}
main .home_fv {
  position: relative;
  height: auto;
  min-height: 750px;
  background-color: transparent;
  position: relative;
  padding-bottom: 7vh;
  margin-bottom: 2rem;
}
main .main_wrap {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto 0;
  padding: 0 0 0;
  max-height: unset;
  min-height: 520px;
  overflow: hidden;
  background-size: 150%;
}
main .main_wrap .main_img {
  height: 80vh;
  position: relative;
  min-height: 600px;
}
main .main_wrap .main_img .main_catch {
  position: absolute;
  top: 30vh;
  right: 5vw;
  font-size: min(13vw, 62px);
  display: block;
  color: transparent;
  opacity: 20%;
  -webkit-text-stroke: 1px #36B3F3;
  z-index: 1;
  line-height: 1;
}
main .main_wrap .main_img .main_img_01 {
  position: absolute;
  top: auto;
  bottom: 0rem;
  right: 0;
  width: 90%;
  height: 35vh;
  max-width: 100%;
  min-height: 270px;
  /*background-image: url(http://www.apex-sangyo.jp/image/free/fv_img_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px 0 0 5px;*/
}
main .main_wrap .main_img .main_img_02 {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 35%;
  height: 40vh;
  max-width: 100%;
  min-height: 300px;
  /*background-image: url(http://www.apex-sangyo.jp/image/free/fv_img_02.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0 0 5px 0;*/
}
main .main_wrap .main_img .main_img_03 {
  display: none;
}
main .main_wrap .contents {
  width: 95%;
  margin: 0 auto;
  padding: 0vh 0 0;
}
main .main_wrap .contents .catch_copy {
  font-size: min(6.5vw, 25px);
  max-height: 800px;
  text-align: center;
  line-height: 2;
  top: 3vh;
  padding: 0;
  text-align: left;
  right: 8%;
}
main .main_wrap .since {
  position: static;
  margin: 1.5rem auto 0;
  font-size: min(7vw, 24px);
  text-align: center;
  color: #36B3F3;
}
main .main_wrap .since .big {
  font-size: min(11vw, 45px);
}
main .main_wrap .mv_bnr {
  position: static;
  margin: 2rem auto 0;
  width: 70%;
  height: unset;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.1);
}
main .main_wrap .mv_bnr .splide__list {
  height: unset;
}
main .fv_btm {
  height: auto;
  top: auto;
  z-index: -1;
  padding: 23vh 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
main .fv_btm:before {
  height: 16rem;
}
main .fv_btm .main_img {
  display: none;
}
main .fv_btm figure {
  width: 40%;
  padding: 0;
}

.scrolldown2 {
  width: 110px;
  bottom: -2vh;
}
.scrolldown2:before {
  right: 17px;
}
.scrolldown2:after {
  right: 20px;
}



/** 認証・SDGS **/



.award {
  padding-top: 5rem;
  margin-bottom: 2rem;
  margin-top: -3rem;
  }
  .award .award_wrap {
  display: flex;
  flex-wrap: wrap;
  }
  .award .award_wrap .text_box.certification {
  flex-basis: 100%;
  }
  .award .award_wrap .text_box.certification figure {
  margin: 0 auto 1rem;
  padding: 0 0;
  }
  .award .award_wrap .text_box.certification figure img {
      max-width: 70%;
      margin: auto;
  }
  .award .award_wrap .text_box.sdgs {
  flex-basis: 100%;
  }
  .award .award_wrap .text_box.sdgs figure {
  max-width: 577px;
  margin: 0 auto 1rem;
  }

  #hachi .mv_bnr {
    padding: 0 5% 2rem 5%;
    flex-wrap: wrap;
  }
  #hachi .mv_bnr .bnr {
    max-width: 100%;
  }












/*===================================================================
//  TOP - セクション
//=================================================================*/
/** SERVICE **/
.service .section_ttl_alpha {
  right: auto;
  left: 1rem;
  top: 3rem;
  text-align: left;
}
.service .service_wrap {
  display: block;
  padding: 0;
}
.service .service_wrap .inner .service_item .catname {
  font-size: min(5vw, 18px);
  line-height: 1.2;
}
.service .service_wrap .inner .service_item .catname .alpha_cond {
  font-size: min(2.5vw, 15px);
}

/** STRENGTH **/
.strength {
  z-index: 1;
  position: relative;
  background-color: #fff;
  border-top: 1px solid #AADCF6;
  padding-top: 5rem;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: left top;
}
.strength .section_ttl_alpha_left {
  /*top: 227px;
  left: -182px;*/
}
.strength .section_ttl_wrap {
  text-align: left;
}
.strength .contents_inner {
  padding-top: 10rem;
}
.strength .contents_inner:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #AADCF6;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
}
.strength .strength_wrap .list {
  display: block;
  padding: 0;
}
.strength .strength_wrap .list .item {
  margin-top: 0rem !important;
  margin-bottom: 2rem;
}
.strength .strength_wrap .list .item .inner {
  min-height: 50vh;
}
.strength .strength_wrap .list .item .inner .txt_box .num {
  font-size: min(6vw, 30px);
}
.strength .strength_wrap .list .item .inner .txt_box .sub_ttl {
  font-size: min(5vw, 26px);
}
.strength .strength_wrap .list .item .inner .txt_box .txt {
  font-size: 14px;
}

/** VOICE **/
.voice {
  padding-top: 9rem;
}
.voice:after {
  width: 100%;
  opacity: 0.2;
  top: 0;
}
.voice .voice_wrap .list {
  display: block;
  padding: 0;
}
.voice .voice_wrap .list .item {
  margin: 0 0% 1.5rem;
}
.voice .voice_wrap .list .item .ttl {
  font-size: min(7vw, 26px);
}
/** FLOW **/
.flow {
  padding-top: 6em;
}
.flow .flow_outer {
  display: block;
}
.flow .flow_wrap .section_ttl_wrap {
  padding: 3rem 0 2rem;
}
.flow .flow_wrap .inner {
  display: block;
}
.flow .flow_wrap .inner .item {
  margin-bottom: 2.5rem;
}
.flow .flow_wrap .inner .item:nth-child(odd):after {
  width: 27px;
  top: auto;
  bottom: -2rem;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(90deg);
}
.flow .flow_wrap .inner .item:not(:last-child):nth-child(even):after {
  width: 27px;
  top: auto;
  bottom: -2rem;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(90deg);
}
.flow .flow_wrap .inner .item .cont_box {
  padding: 0.5rem 3%;
}
.flow .flow_wrap .inner .item .cont_box .icon {
  font-size: min(7vw, 40px);
}
.flow .flow_wrap .inner .item .cont_box .nom {
  font-size: min(6vw, 40px);
}
.flow .flow_wrap .inner .item .cont_box .txt {
  font-size: min(5vw, 20px);
}

/** CASE **/
.case_bg {
  display: block;
}
.case {
  padding-top: 6em;
}

.case_wrap {
  padding-bottom: 0;
  background-size: cover;
}
.case_wrap .section_ttl_wrap {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 3rem;
}
.case_wrap .section_ttl_wrap .section_ttl_alpha_left {
  top: -3rem;
  left: auto;
  right: auto;
}
.case_wrap .inner {
  display: block;
}
/** FAQ **/
.faq_wrap .section_ttl_wrap {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 3rem;
}
.faq_wrap .section_ttl_wrap .section_ttl_alpha_left {
  left: auto;
  right: auto;
}
.faq_wrap .inner {
  display: block;
}
/*===================================================================
//  フッター
//=================================================================*/
footer {
  width: 100%;
  position: relative;
}
footer .footer_top {
  margin: 1.5rem 2% 0;
  height: 58px;
  position: relative;
}
footer .footer_top .pagetop {
  padding: 0.5rem 1rem;
  border-radius: 30px;
  position: absolute;
  right: 2%;
  color: #fff;
  font-size: 14px;
  opacity: 0.6;
}
footer .footer_wrap {
  padding-right: 0;
  display: block;
}
footer .footer_wrap .inner {
  position: relative;
  justify-content: space-between;
}
footer .footer_wrap .inner.logo {
  width: 100%;
  padding: 4rem 5% 0rem 5%;
}
footer .footer_wrap .inner.logo .company_prof {
  width: 100%;
  font-size: 13px;
  text-align: center;
}
footer .footer_wrap .inner.logo .company_prof .footer_catch {
  font-weight: 600;
}
footer .footer_wrap .inner .footer_logo {
  width: 100%;
  display: block;
  padding: 2rem 0;
}
footer .footer_wrap .inner .footer_logo img {
  vertical-align: middle;
  display: inline-block;
}
footer .footer_wrap .footer_nav_wrap {
  width: 100%;
}
footer .footer_wrap .footer_nav_wrap .inner.menu {
  padding: 4rem 5% 4rem 0%;
  flex-wrap: wrap;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu {
  padding: 0rem 1% 2rem;
  width: 50%;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu .category {
  font-size: 13px;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu .list .item {
  padding: 0.5rem 0;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu .list .item a {
  display: block;
}
footer .footer_wrap .footer_nav_wrap .inner.menu .footer_menu .list .item a .txt {
  font-size: 15px;
}
footer .footer_wrap #pmark {
  width: 30%;
  max-width: 150px;
  position: absolute;
  left: auto;
  right: 0;
  bottom: 4.5rem;
  display: block;
}
footer .footer_btm .copy {
  font-size: 10px;
  padding: 1rem 0;
  font-size: 0.8em;
  display: block;
  text-align: center;
}
footer .footer_btm .link {
  display: block;
  text-align: center;
}
footer .footer_btm .link .txt {
  font-size: 10px;
}

/*===================================================================
//  固定ページ
//=================================================================*/
/** 共通 **/
.main_content_area {
  display: block;
}
.main_content_area .main_content .entry_area .title {
  font-size: 35px;
  padding: 3rem 2.5% 1rem;
}
.main_content_area .anchor_wrap {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: static;
}
.main_content_area .anchor_wrap .anchor_menu .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}
.main_content_area .anchor_wrap .anchor_menu .nav_list .item a {
  display: block;
  padding: 0.2rem 0.8rem 0.3rem 0.3rem;
  border-radius: 5px;
  border: 1px solid #AADCF6;
  margin: 0 0 0.5rem 0;
}
.page {
  display: block;
}
.page .anchor_wrap {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: static;
}
.page .anchor_wrap .anchor_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}
.page .anchor_wrap .anchor_menu .item a {
  display: block;
  padding: 0.2rem 0.8rem 0.3rem 0.3rem;
  border-radius: 5px;
  border: 1px solid #AADCF6;
  margin: 0 0 0.5rem 0;
}
.section_sub_ttl_wrap {
  padding: 3rem 0% 2rem 0%;
}
/** FORM **/
.form .map .section_ttl {
  text-align: center;
}
/** NEWS **/
.news .contents {
  display: block;
}
.news .section_ttl_wrap .section_ttl {
  font-size: 13px;
  padding: 0;
}
.news .topics_wrap {
  padding: 0 0% 3rem 0;
}
.news .news_wrap {
  padding: 0;
}
.news .news_wrap .bnr_apex_club {
  padding: 2rem 2.5% 0;
}
/*お知らせ関連CSSここから*/
.anchor_wrap_detail {
  margin-top: 2rem;
  position: static;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.anchor_wrap_detail .anchor_menu {
  text-align: left;
}
.anchor_wrap_detail .anchor_menu .item {
  display: inline-block;
}
.anchor_wrap_detail .anchor_menu .item a {
  display: block;
  padding: 0.2rem 0.8rem 0.3rem 0.3rem;
  border-radius: 5px;
  border: 1px solid #AADCF6;
  margin: 0 0 0.5rem 0;
}
.anchor_wrap_detail .anchor_menu .item a:empty {
  display: none;
}

.page32 .anchor_wrap_detail {
  display: block;
  flex-basis: 20%;
  position: static;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.info_box {
  display: block;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.info_box + .info_box {
  border-top: 1px solid #c6eafc;
}

/*お知らせ関連CSSここまで*/
/* contact form */
.user_form_contents {
  max-width: 1280px;
  padding-left: 32px;
  padding-right: 32px;
  margin: 0 auto;
}
.user_form_contents form .user_form_box {
  display: block;
}
.user_form_contents form .user_form_box .user_form_name {
  padding: 0 2.5rem 0 0;
}
.user_form_contents form .user_form_box .user_form_name .user_form_name_must {
  top: 0px;
}
.user_form_contents form .user_form_box .user_form_note {
  margin-left: 0px !important;
}
.user_form_contents form .user_form_submit {
  padding: 2.5rem 5% 2rem;
}
/*===================================================================
//  404
//=================================================================*/
.error .error-text {
  margin: 5em 0;
}

.backhome .arrow {
  font-size: 1.4rem;
}

/*===================================================================
//  横向き・縦向き
//=================================================================*/
/* 横向き */
/* 縦向き *//*# sourceMappingURL=sp_2.css.map */
}