@charset "UTF-8";
/*
  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.25rem + 1em + 0.25rem);
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  box-sizing: border-box;
}

/* 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 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  width: 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]) {
  -webkit-text-decoration-skip: ink;
          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;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 
-------------------------------------------------------------------------
-------------------------------------------------------------------------
Variable
グローバルな変数を設定。それ以外はそのscssファイルのみで完結。
-------------------------------------------------------------------------
-------------------------------------------------------------------------
*/
/* 
-------------------------------------------------------------------------
-------------------------------------------------------------------------
base.CSS Document
-------------------------------------------------------------------------
-------------------------------------------------------------------------
*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
  scrollbar-width: none !important;
  /* force scrollbar */
  scrollbar-color: #00489D gainsboro;
}
html::-webkit-scrollbar {
  width: 0.75em;
}
html::-webkit-scrollbar-track {
  background: grey;
}
html::-webkit-scrollbar-thumb {
  background: #00489D;
}
html body {
  color: #333;
  font-family: "Yu Gothic UI", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
  background-color: #fefefe;
  margin: 0 auto;
}
html body.is-active {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
  display: block;
}

a:hover {
  opacity: 1;
}

address {
  font-style: normal;
}

/*----------------------------------
画面サイズに合わせたfont-size比
----------------------------------*/
@media only screen and (min-width: 1441px) {
  html {
    font-size: 62.5%;
    /* 16px * 62.5% = 10px*/
  }
}
@media only screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 1.3020833333vw;
  }
}
@media only screen and (max-width: 430px) {
  html {
    font-size: 2.3255813953vw;
  }
}
/*----------------------------------
font 設定
----------------------------------*/
h1,
h2,
h3,
h4 {
  font-family: "Shippori Mincho B1";
  font-weight: 400;
  line-height: 1;
}

h1 {
  font-size: max(6rem, 40px);
}
@media only screen and (max-width:768px) {
  h1 {
    font-size: max(4rem, 32px);
  }
}

h2 {
  font-size: max(3.2rem, 28px);
}
@media only screen and (max-width:768px) {
  h2 {
    font-size: max(2.8rem, 20px);
  }
}

h3 {
  font-size: max(2.4rem, 18px);
}

h4,
h5,
h6 {
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.5;
}

p {
  font-size: max(1.6rem, 14px);
  font-family: "Yu Gothic UI", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 400;
  line-height: 2.1;
}

span {
  font-size: 12px;
  font-family: "Yu Gothic UI", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 400;
  line-height: 1;
}

/*----------------------------------
余白設定
----------------------------------*/
.margin_l {
  margin-bottom: 12rem;
}

.margin_m {
  margin-bottom: 4rem;
}

.margin_s {
  margin-bottom: 1.6px;
}

.text_space_right {
  margin-right: 0.4px;
}

/*----------------------------------
-----------------------------------
レスポンスに合わせた非表示設定
-----------------------------------
----------------------------------*/
.hidden-pc {
  display: none !important;
}
@media only screen and (max-width:768px) {
  .hidden-pc {
    display: block !important;
  }
}

.hidden-sp {
  display: block !important;
}
@media only screen and (max-width:768px) {
  .hidden-sp {
    display: none !important;
  }
}

.hidden-unique {
  display: none !important;
}
@media screen and (max-width: 428px) {
  .hidden-unique {
    display: block !important;
  }
}

.hidden-unique--top {
  display: none !important;
}
@media screen and (max-width: 480px) {
  .hidden-unique--top {
    display: block !important;
  }
}

.no_show {
  display: none;
}

/*----------------------------------
その他設定
----------------------------------*/
.flex {
  display: flex;
  justify-content: start;
  align-items: center;
}

/*----------------------------------
特定の設定
----------------------------------*/
/* 
-------------------------------------------------------------------------
-------------------------------------------------------------------------
header.CSS Document
-------------------------------------------------------------------------
-------------------------------------------------------------------------
*/
header {
  position: fixed;
  z-index: 10;
  width: 100vw;
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
}

.add-bgc {
  background-color: #fefefe;
  box-shadow: 0 0 5.625rem rgba(0, 0, 0, 0.05);
}

.g_nav-inner {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media only screen and (max-width:768px) {
  .g_nav-inner {
    position: fixed;
    width: 240px;
    height: auto;
    right: -240px;
    background-color: #fefefe;
    filter: drop-shadow(-1mm 1mm 0 rgba(51, 51, 51, 0.5));
    transition: all linear 0.3s;
  }
  .g_nav-inner.active {
    right: 0;
  }
}

.g_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
@media only screen and (max-width:768px) {
  .g_nav {
    padding: 30px 0;
    display: block;
    position: relative;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }
}

.g_nav li.current a,
.g_nav .nav_menu a:hover {
  color: #00489D;
}

.g_nav .nav_menu a {
  position: relative;
  padding: 10px 0;
}

.g_nav .nav_menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00489D;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
@media only screen and (max-width:768px) {
  .g_nav .nav_menu a:after {
    width: 50%;
    right: 0;
    margin: auto;
  }
}

.g_nav li.current a::after,
.g_nav .nav_menu a:hover::after {
  transform: scale(1, 1);
}
@media only screen and (max-width:768px) {
  .g_nav li.current a::after,
  .g_nav .nav_menu a:hover::after {
    transform: initial;
  }
}

.nav_menu a {
  font-family: "Shippori Mincho B1";
  font-size: 18px;
  line-height: 1;
}
@media only screen and (max-width:768px) {
  .nav_menu a {
    font-size: 16px;
  }
  .nav_menu a:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (max-width:768px) {
  .nav_menu {
    margin-bottom: 2rem;
  }
}
.logo02 {
  width: 40px;
  height: auto;
}

/* 
-------------------------------------------------------------------------
-------------------------------------------------------------------------
footer.CSS Document
-------------------------------------------------------------------------
-------------------------------------------------------------------------
*/
footer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  margin-inline: auto;
}
@media only screen and (max-width:768px) {
  footer {
    display: block;
  }
}

.logo03 {
  display: inline-block;
  width: 36rem;
  padding: 12.8rem 8rem;
}
@media only screen and (max-width:768px) {
  .logo03 {
    display: block;
    width: 24rem;
    padding: 60px 16px;
  }
}
.logo03 img {
  width: 100%;
}

.wrap {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: flex-end;
  background-color: #333;
}
@media only screen and (max-width:768px) {
  .wrap {
    background-color: #333;
    display: block;
    width: 100%;
  }
}

.footer_menu_inner {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: flex-start;
  padding: 6rem 4rem;
  background-color: #333;
}
@media only screen and (max-width:768px) {
  .footer_menu_inner {
    width: 100%;
    padding: 4rem 16px;
  }
}

.footer_menu_wrap {
  margin-right: 4rem;
}

.footer_menu a {
  font-size: 16px;
  font-family: "Shippori Mincho B1";
  color: #fefefe;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}

.footer_menu {
  margin-bottom: 2.4rem;
}
.footer_menu:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width:768px) {
  .footer_menu {
    margin-bottom: 2rem;
  }
}

.copyright {
  background-color: #333;
  color: #fefefe;
  display: block;
  text-align: right;
  margin-right: 8rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  .copyright {
    margin: 0;
    padding: 0 16px 10px 0;
  }
}

/* 
-------------------------------------------------------------------------
-------------------------------------------------------------------------
btn.CSS Document
-------------------------------------------------------------------------
-------------------------------------------------------------------------
*/
@media only screen and (max-width:768px) {
  .hamburger {
    width: 66px;
    height: auto;
    position: fixed;
    z-index: 11;
    top: 0;
    right: 0;
    padding: 16px;
    text-align: center;
  }
  .hamburger img {
    display: inline;
  }
  .hamburger span {
    position: relative;
  }
}
.btn_menu:after {
  content: "menu";
  font-family: "Shippori Mincho B1";
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.7px;
}

.btn_menu.active::after {
  content: "close";
  font-family: "Shippori Mincho B1";
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.7px;
}

#page_top {
  position: fixed;
  z-index: 10000;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #00489D;
  text-align: center;
}
#page_top span {
  font-weight: bold;
  color: #fefefe;
}
#page_top a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn_to_top {
  width: 20px;
  height: 20px;
  border-top: 2px solid #fefefe;
  border-right: 2px solid #fefefe;
  transform-origin: right top;
  transform: rotate(-45deg);
  position: relative;
  left: -10px;
  top: 0;
}

/* 
-------------------------------------------------------------------------
-------------------------------------------------------------------------
animation.CSS Document
-------------------------------------------------------------------------
-------------------------------------------------------------------------
*/
.fadeIn {
  opacity: 0;
  transform: translate(0, 50px);
  transition: 0.8s;
}

.fadeIn.animated {
  transform: translate(0, 0);
  opacity: 1;
}

/* 
-------------------------------------------------------------------------
-------------------------------------------------------------------------
top.CSS Document
-------------------------------------------------------------------------
-------------------------------------------------------------------------
*/
body {
  margin: 0 auto;
}

main {
  overflow: hidden;
}

section {
  padding: 12rem 12rem 0;
  position: relative;
  margin-bottom: 12rem;
}
@media only screen and (max-width:768px) {
  section {
    padding: 0 1.6rem;
  }
}

.section_inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section_ttl {
  position: relative;
  margin-bottom: 4rem;
}
.section_ttl--en {
  font-size: max(6rem, 40px);
  font-family: "Futura", "Verdana", sans-serif;
  margin-bottom: 1.6rem;
  position: relative;
  padding-top: 4rem;
  z-index: 0;
}
@media only screen and (max-width:768px) {
  .section_ttl--en {
    font-size: max(8rem, 60px);
    opacity: 0.2;
    margin-bottom: 0;
  }
}
.section_ttl--en::before {
  content: "";
  width: 4rem;
  height: 1rem;
  background-color: #333;
  position: absolute;
  top: 0;
  z-index: 100;
}
@media only screen and (max-width:768px) {
  .section_ttl--en::before {
    opacity: 1;
  }
}
.section_ttl--jp {
  font-size: max(3.2rem, 28px);
  font-family: "Shippori Mincho B1";
}
@media only screen and (max-width:768px) {
  .section_ttl--jp {
    position: absolute;
    bottom: 0;
  }
}

.text_wrap--about {
  width: 90rem;
}
@media only screen and (max-width:768px) {
  .text_wrap--about {
    width: 100%;
  }
}
.text_wrap--services {
  width: calc(100% - 44.4rem - 2rem);
}
@media only screen and (max-width:768px) {
  .text_wrap--services {
    position: relative;
    padding: 16px;
    width: 100%;
    top: -6.4rem;
    background-color: rgba(254, 254, 254, 0.5);
  }
}

.list_item {
  margin-bottom: 4rem;
}
.list_item:last-child {
  margin-bottom: 0;
}
.list_item .list_ttl {
  font-family: "Shippori Mincho B1";
  font-size: max(2.4rem, 18px);
  font-weight: 600;
  margin-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  font-weight: 600;
}
@media only screen and (max-width:768px) {
  .list_item .list_ttl {
    font-size: max(2.2rem, 18px);
  }
}
.list_item .list_ttl--services {
  margin-bottom: 0;
}
.list_item p {
  margin-bottom: 1.6rem;
}
.list_item--services {
  margin-bottom: 2rem;
}

.list_ttl {
  font-size: max(2.4rem, 18px);
  margin-bottom: 1.6rem;
  font-weight: 600;
}
.list_ttl--services {
  margin-bottom: 0;
}

@media only screen and (max-width:768px) {
  .img {
    width: 100vw;
  }
}
.img_about01 {
  position: relative;
  left: -12rem;
  width: 85.6rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width:768px) {
  .img_about01 {
    margin-bottom: 2rem;
    left: -16px;
    width: 100vw;
  }
}
@media only screen and (max-width:768px) {
  .img_strength01 {
    width: 100%;
  }
}

#services,
#about {
  background-color: #333;
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media only screen and (max-width:768px) {
  #services,
  #about {
    background-color: #fefefe;
    padding-top: 0;
    padding-bottom: 0;
  }
}
#services .section_ttl--en,
#services .section_ttl--jp,
#services h3,
#services p,
#about .section_ttl--en,
#about .section_ttl--jp,
#about h3,
#about p {
  color: #fefefe;
}
@media only screen and (max-width:768px) {
  #services .section_ttl--en,
  #services .section_ttl--jp,
  #services h3,
  #services p,
  #about .section_ttl--en,
  #about .section_ttl--jp,
  #about h3,
  #about p {
    color: #333;
  }
}
#services .section_ttl--en::before,
#about .section_ttl--en::before {
  background-color: #fefefe;
}
@media only screen and (max-width:768px) {
  #services .section_ttl--en::before,
  #about .section_ttl--en::before {
    background-color: #333;
  }
}

#top {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
@media only screen and (max-width:768px) {
  #top {
    height: initial;
    padding: 0 1.6rem;
    margin: 120px 0;
  }
}

.main_copy {
  margin-top: 50svh;
  margin-bottom: -1.2em;
  margin-inline: auto;
  transform: translateY(-100%);
  font-size: max(6rem, 32px);
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 1rem;
  border-bottom: solid 2px #333;
}
@media only screen and (max-width:768px) {
  .main_copy {
    margin: initial;
    border-bottom: initial;
    transform: initial;
  }
}
.main_copy span {
  font-size: max(6rem, 32px);
  line-height: 1.2;
  text-align: center;
  font-family: "Shippori Mincho B1";
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width:768px) {
  .main_copy span {
    display: block;
    font-size: max(4rem, 30px);
    line-height: 1.5;
    border-bottom: solid 2px #333;
  }
  .main_copy span:nth-of-type(1) {
    margin-bottom: 16px;
  }
  .main_copy span:nth-of-type(2) {
    position: relative;
  }
  .main_copy span:nth-of-type(2):after {
    content: "";
    background: center/cover no-repeat url(../../assets/img/img01.png);
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    transform: translateX(100%) translateY(37.5%);
    width: 80px;
    height: 102px;
  }
}
@media only screen and (max-width:768px) and (max-width: 430px) {
  .main_copy span:nth-of-type(2):after {
    transform: translateX(100%) translateY(0);
    bottom: initial;
    top: 0;
    width: 18.6046511628vw;
    height: 23.7209302326vw;
  }
}
.main_copy:after {
  content: "";
  background: center/cover no-repeat url(../../assets/img/img01.png);
  position: absolute;
  z-index: 2;
  bottom: -90.4761904762%;
  right: 0;
  transform: translateX(100%);
  width: 11.1111111111vw;
  height: 13.8888888889vw;
}
@media only screen and (max-width:768px) {
  .main_copy:after {
    display: none;
  }
}
@media only screen and (min-width:1441px) {
  .main_copy:after {
    width: 160px;
    height: 200px;
  }
}

.sub_copy_wrap {
  padding-top: 4rem;
}
@media only screen and (max-width:768px) {
  .sub_copy_wrap {
    padding-top: 5.8rem;
  }
}

.sub_copy_wrap > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:768px) {
  .sub_copy_wrap > div {
    justify-content: start;
  }
}
.sub_copy_wrap > div > p {
  font-size: max(2.4rem, 20px);
  font-family: "Shippori Mincho B1";
  line-height: 1;
}

.sub_copy {
  font-size: max(2.4rem, 20px);
  font-family: "Shippori Mincho B1";
  text-align: center;
  line-height: 2.1;
}
.sub_copy-logo {
  position: relative;
  max-width: 168px;
  width: 100%;
  margin: 0 4px;
}
@media only screen and (max-width:768px) {
  .sub_copy-logo {
    max-width: 21.875vw;
    min-width: 152px;
  }
}
@media screen and (max-width: 430px) {
  .sub_copy-logo {
    max-width: 39.0697674419vw;
  }
}
.sub_copy:nth-of-type(2) {
  line-height: 2.1;
}
@media only screen and (max-width:768px) {
  .sub_copy {
    display: inline-block;
    text-align: left;
  }
}

.logo {
  width: 100%;
}
.logo_kana-wrap {
  position: absolute;
  width: 100%;
  top: 0;
  transform: translateY(-100%);
  text-align: center;
  line-height: 1.5;
  font-size: max(1.2rem, 10px);
}
@media only screen and (max-width:768px) {
  .logo_kana-wrap {
    text-align: center;
  }
}
.logo_kana-wrap > span {
  font-family: "Shippori Mincho B1";
  letter-spacing: 0.5em;
}

.scroll_forpc {
  display: inline;
  text-align: center;
  position: absolute;
  width: 100vw;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 120px;
}
.scroll_forpc span {
  position: absolute;
  font-family: "Futura", "Verdana", sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll_forpc::before {
  content: "";
  width: 2px;
  height: 120px;
  background-color: #333;
  position: absolute;
  z-index: 100;
  bottom: 0;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 120px;
    opacity: 0;
  }
}
#about {
  margin-bottom: 32rem;
}
@media only screen and (max-width:768px) {
  #about {
    margin-bottom: 12rem;
  }
}
#about p {
  margin-bottom: 4rem;
}
#about p.--unique {
  margin-bottom: initial;
}
@media only screen and (max-width:768px) {
  #about p.--unique {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1441px) {
  .about_wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.wrap-text_and_img {
  margin: 0 auto;
  position: relative;
}
.wrap-text_and_img .img_about02 {
  width: 40rem;
  position: absolute;
  top: 0;
  right: -12rem;
  margin-left: 20px;
}
@media only screen and (max-width:768px) {
  .wrap-text_and_img .img_about02 {
    position: relative;
    margin-left: auto;
    top: 0;
    right: -16px;
    width: 280px;
    height: 340px;
    overflow: hidden;
  }
}

.decoration_img02 {
  max-width: 1440px;
  width: 115.2rem;
  height: 40rem;
  padding: 20rem 0;
  background-image: url(../img/img04.png);
  background-size: contain;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width:768px) {
  .decoration_img02 {
    width: 100vw;
    height: 16rem;
    padding: 8rem 0;
    margin-bottom: 12rem;
    background-attachment: initial;
    background-size: cover;
  }
}

.decoration_img02_wrap {
  max-width: 1980px;
  margin: 0 auto;
}

.img_strength02_wrap {
  overflow: hidden;
}

.scroll_wrap {
  margin-bottom: 16px;
}

.scroll {
  font-family: "Futura", "Verdana", sans-serif;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  padding-right: 44px;
}
.scroll::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 1px;
  border-bottom: 2px solid #333;
  border-radius: 2px;
  bottom: 4px;
  right: 0;
  animation: pathmove02 1.4s ease-in-out infinite;
}
.scroll::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 8px;
  right: 0;
  bottom: 4px;
  transform-origin: right;
  transform: rotate(45deg);
  border-bottom: 2px solid #333;
  border-radius: 2px;
  animation: pathmove02 1.4s ease-in-out infinite;
}

@media only screen and (max-width:768px) {
  @keyframes pathmove02 {
    0% {
      right: 0;
    }
    100% {
      right: -44px;
    }
  }
}
#services {
  margin: 12rem 0;
}
#services > .section_inner > p {
  margin-bottom: 2rem;
}
#services ol > li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  #services ol > li {
    display: block;
  }
  #services ol > li:last-of-type {
    margin-bottom: initial;
  }
}
#services ol > li picture {
  width: 30.8333333333vw;
  aspect-ratio: 1;
}
@media only screen and (min-width:1441px) {
  #services ol > li picture {
    max-width: 444px;
  }
}
@media only screen and (max-width:768px) {
  #services ol > li picture {
    display: block;
    width: 100%;
    aspect-ratio: 1.65/1;
  }
}
#services ol > li h3 {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 20px;
  line-height: 1;
}
#services ol > li h3::before {
  position: absolute;
  font-size: max(3.2rem, 18px);
  line-height: 1;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width:768px) {
  #services ol > li h3::before {
    font-size: max(2.4rem, 18px);
  }
}
#services ol > li:nth-of-type(1) h3:before {
  content: "1";
}
#services ol > li:nth-of-type(2) h3:before {
  content: "2";
}
#services ol > li:nth-of-type(3) h3:before {
  content: "3";
}
@media only screen and (max-width:768px) {
  #services .text_wrap {
    position: relative;
    z-index: 1;
    background-color: rgba(254, 254, 254, 0.5);
    padding: 1.6rem;
    margin-top: -56px;
    margin-top: -7.2916666667vw;
  }
}
@media only screen and (max-width:768px) and (max-width:430px) {
  #services .text_wrap {
    margin-top: -13.023255814vw;
  }
}
@media only screen and (max-width:768px) {
  #services .text_wrap h3 {
    width: 100%;
    margin-bottom: 1.6rem;
  }
}
#services .img_chart {
  position: absolute;
  max-width: 19.4444444444vw;
  width: 100%;
  aspect-ratio: 1;
  top: 0;
  right: 0;
}
@media only screen and (min-width:1441px) {
  #services .img_chart {
    max-width: 280px;
  }
}
@media only screen and (max-width:768px) {
  #services .img_chart {
    display: none;
  }
}

#contact {
  padding: 0;
  margin-bottom: 0;
}
#contact .contact_bgimg {
  position: relative;
  background-image: url(../img/img09.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 22.5rem 0;
}
@media screen and (max-width: 430px) {
  #contact .contact_bgimg {
    background-image: url(../img/img09_sp.png);
    background-attachment: initial;
    background-position: center;
    background-size: contain;
  }
}
#contact .section_ttl-wrap {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width:768px) {
  #contact .section_ttl-wrap {
    display: grid;
  }
}

.contact_bgimg > div {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.section_wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  padding: 4rem 12rem;
  background-color: #333;
}
@media only screen and (min-width:1441px) {
  .section_wrap {
    max-width: 1440px;
  }
}
@media only screen and (max-width:768px) {
  .section_wrap {
    padding: 4rem 16px;
  }
}
.section_wrap h2,
.section_wrap p {
  padding-top: 0;
  color: #fefefe;
  opacity: 1;
}
.section_wrap h2 {
  font-size: max(8rem, 60px);
  position: relative;
  margin-bottom: 0;
}
.section_wrap h2::before {
  opacity: 0;
}
@media only screen and (max-width:768px) {
  .section_wrap h2 {
    color: #fefefe;
    font-size: max(6rem, 40px);
    margin-bottom: 38px;
  }
}
.section_wrap .arrow_wrap {
  display: flex;
  position: relative;
}
.section_wrap .arrow {
  position: relative;
  width: 10rem;
  border-bottom: solid 2px #fefefe;
  border-radius: 2px;
  margin-left: 20px;
  left: 0;
}
@media only screen and (max-width:768px) {
  .section_wrap .arrow {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.section_wrap .arrow::before {
  content: "";
  position: absolute;
  border-bottom: solid 2px #fefefe;
  border-radius: 2px;
  transform-origin: left;
  width: 2rem;
  transform: rotate(-135deg);
  width: 2rem;
  left: 10rem;
}
.section_wrap .circle {
  content: "";
  position: absolute;
  width: 6rem;
  height: 6rem;
  border: solid 2px #fefefe;
  border-radius: 3rem;
  top: -3rem;
  right: -3rem;
}
@media only screen and (max-width:768px) {
  .section_wrap .circle {
    left: 7rem;
    right: auto;
  }
}

.arrow {
  transition: all linear 0.5s;
}

.section_ttl-wrap:hover .arrow {
  left: 2.5rem;
}/*# sourceMappingURL=style.css.map */