@charset "UTF-8";
/*
Theme Name: 法人HP ランディングページ
*/
/********************************
# 目次

 - reset
 - general
 - component
   → ヘッダ・フッタ・グロナビ **以外** の、各ページで共用するパーツをここに置く
   → WordPressネイティブなCSS＆プラグインのCSSもここに置く
   → 接頭辞は 'c-'
   → 書く場所はこの位置をキープする事
 - header
 - main
 - contact
 - future
 - solution
 - strengths
 - voice
 - office
 - flow
 - faq
 - footer
*********************************/
/********************************
# 規約

 - ブロック相当部分とエレメント相当部分の区切りはアンダースコア2つ
 - エレメントとモディファイの区切りはハイフン2つ
 - 単語の区切りはハイフン1つ
 - 要素・クラス名の後に半角スペース1
 - 要素・クラス名毎に改行
   （→現在はscssのコンパイラ任せになっているので後で整形）
 - プロパティの前にはスペ4
   （→現在はscssのコンパイラ任せでスぺ2になっているので後で整形）
 - プロパティ毎に改行
 - メディアクエリはセレクタ毎に分けて書く

----
# 汎用クラス

 - 接頭辞は'u-'
 - utility.css で設定している各クラスを参照
 - font-size -> fz 等の略称はemmetで採用されているものを使用しています

----
# JS用クラス

 - 接頭辞は'js-'
 - slick等、IDを指定して動かすもの専用

----
# ステートメント用クラス

接頭辞は'is_'

.is_active
クリックされた状態・現在選択されている状態を表現

注意：.is_activeには直接スタイルを当てない（スタイル汚染の原因になる）
BAD
.is_active {
    font-weight: bold;
}
GOOD
.hogehoge.is_active {
    font-weight: bold;
}
*********************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/********************************
general
*********************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 91px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.333vw;
    scroll-padding-top: 8rem;
  }
}

body {
  text-size-adjust: 100%;
  /*Chrome,Safari*/
  -webkit-text-size-adjust: 100%;
  /*EgdeMobile*/
  -ms-text-size-adjust: 100%;
  /*firefox*/
  -moz-text-size-adjust: 100%;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 1.6rem;
    width: 100%;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a img:not([class]):hover {
  opacity: 0.8;
}

.spbr {
  display: none;
}
@media screen and (max-width: 1000px) {
  .spbr {
    display: block;
  }
}

.spbr--md1 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .spbr--md1 {
    display: block;
  }
}

.spbr2 {
  display: none;
}
@media screen and (max-width: 750px) {
  .spbr2 {
    display: inline-block;
  }
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}

/********************************
component 接頭辞はc-
*********************************/
.c-link:hover {
  color: #5ac4bf;
}

.c-inner {
  width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1280px) {
  .c-inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 750px) {
  .c-inner {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

.c-section {
  padding: 100px 0;
}
@media screen and (max-width: 750px) {
  .c-section {
    padding: 8rem 0;
  }
}

.c-txt {
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  .c-txt {
    font-size: 3rem;
  }
}

.c-h2 {
  font-size: 46px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1280px) {
  .c-h2 {
    font-size: 3rem;
    text-align: center;
    line-height: 1.5;
  }
}

.c-line__h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  width: 1180px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 1280px) {
  .c-line__h2 {
    font-size: 3rem;
    width: 100%;
    padding-bottom: 3rem;
  }
}

.c-line__h2 strong {
  font-size: 46px;
  color: #5ac4bf;
}
@media screen and (max-width: 1280px) {
  .c-line__h2 strong {
    font-size: 4rem;
  }
}

.c-line__h2 strong small {
  font-size: 36px;
}
@media screen and (max-width: 1280px) {
  .c-line__h2 strong small {
    font-size: 2.8rem;
  }
}

.c-line__h2--2line {
  line-height: 1.4;
  padding-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .c-line__h2--2line {
    padding-bottom: 3rem;
  }
}

/********************************
layout 接頭辞はl-
*********************************/
.l-flex {
  display: flex;
}

.l-flex--pc {
  display: flex;
}
@media screen and (max-width: 750px) {
  .l-flex--pc {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .l-flex--sp {
    display: flex;
  }
}

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

.l-flex-wrap--pc {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .l-flex-wrap--pc {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .l-flex-wrap--sp {
    display: flex;
    flex-wrap: wrap;
  }
}

/********************************
loading
*********************************/
.loading {
  width: 100vw;
  height: 100vh;
  background-color: #5ac4bf;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

.loading__lead {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 25px;
  color: #fff;
  font-weight: bold;
  line-height: 1.7;
  margin: 48vh auto;
}

.typing-effect {
  width: 29ch;
  animation: typing 2s steps(29), effect 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 2em;
}

.loaded {
  animation: fadeOutAndSlideUp 3s forwards;
}

@keyframes fadeOutAndSlideUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
/********************************
header
*********************************/
.header {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  position: sticky;
  top: 0;
  z-index: 20;
}
@media screen and (max-width: 1280px) {
  .header {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 750px) {
  .header {
    padding: 2rem;
  }
}

.header .c-inner {
  width: 1180px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .header .c-inner {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .header .c-inner {
    width: 100%;
    position: relative;
    padding-left: 0;
    padding-right: 0;
  }
}

.header__h1 {
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .header__h1 {
    margin: 0;
  }
}

@media screen and (max-width: 750px) {
  .header__h1 img {
    width: 24rem;
  }
}

.header__nav-wrap {
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .header__nav-wrap {
    margin-left: 0;
    position: absolute;
    top: 8.67rem;
    right: -18px;
  }
}

@media screen and (max-width: 1280px) {
  .header__nav-wrap .header__nav {
    justify-content: right;
    display: flex;
  }
}
@media screen and (max-width: 750px) {
  .header__nav-wrap .header__nav {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
  }
}

@media screen and (max-width: 750px) {
  .header__nav-wrap.is-active .header__nav {
    display: block;
    opacity: 1;
    transition: all 0.3s ease;
  }
}

.header__list {
  gap: 0 20px;
}
@media screen and (max-width: 750px) {
  .header__list {
    flex-direction: column;
    background-color: #efefef;
  }
}

@media screen and (max-width: 750px) {
  .header__list .list__item {
    padding: 2rem;
  }
}

@media screen and (max-width: 750px) {
  .header__list .list__item + * {
    border-top: 1px solid #ccc;
  }
}

.header__list .list__item .item__link {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .header__list .list__item .item__link {
    font-size: 3.3rem;
  }
}

.header__list .list__item .item__link:hover {
  color: #5ac4bf;
}

.header__btn-contact {
  margin-left: 30px;
}
@media screen and (max-width: 1280px) {
  .header__btn-contact {
    margin-left: 10px;
  }
}
@media screen and (max-width: 750px) {
  .header__btn-contact {
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  .header__btn-contact img {
    width: 12rem;
  }
}
@media screen and (max-width: 1000px) {
  .header__btn-contact img {
    width: 9rem;
  }
}

.header__btn-menu {
  display: none;
  position: absolute;
  right: 0;
  width: 8.3rem;
  height: 10.45rem;
  background: url("./img/header/menu-on.jpg") no-repeat, url("./img/header/menu-close.jpg") no-repeat;
  background-size: contain, 0 0;
}
@media screen and (max-width: 750px) {
  .header__btn-menu {
    display: block;
  }
}

.header__btn-menu.is-active {
  background-size: 0 0, contain;
}

/********************************
main 
*********************************/
@media screen and (max-width: 750px) {
  .main {
    width: 100%;
  }
}

/********************************
lead
*********************************/
/********************************
contact
*********************************/
.section__contact {
  background: url("./img/bg_diagonal_line.jpg") repeat-x;
  background-size: cover;
  padding-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .section__contact {
    padding-bottom: 8rem;
  }
}

.section__contact--first {
  margin-top: -60px;
  padding-top: 140px;
}
@media screen and (max-width: 750px) {
  .section__contact--first {
    margin-top: -6rem;
    padding-top: 16rem;
  }
}

@media screen and (max-width: 750px) {
  .contact__h2 {
    font-size: 5rem;
  }
}

.contact__lead {
  text-align: center;
  font-size: 28px;
  margin-top: 85px;
}
@media screen and (max-width: 750px) {
  .contact__lead {
    font-size: 2.8rem;
    margin-top: 4.5rem;
    line-height: 1.5;
    text-align: left;
  }
}

.contact__btn-wrap {
  margin: 70px auto 0;
  width: 850px;
  justify-content: space-between;
  gap: 50px 0;
}
@media screen and (max-width: 1000px) {
  .contact__btn-wrap {
    width: 90%;
  }
}
@media screen and (max-width: 750px) {
  .contact__btn-wrap {
    margin: 5rem 0 0;
    width: 100%;
    justify-content: space-between;
    gap: 2.5rem 0;
  }
}

@media screen and (max-width: 1000px) {
  .contact__btn01 {
    width: 47%;
  }
}

@media screen and (max-width: 750px) {
  .contact__btn--pc {
    display: none;
  }
}

.contact__btn--sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .contact__btn--sp {
    display: inline;
  }
}

/********************************
future
*********************************/
@media screen and (max-width: 1280px) {
  .section__future .future__h2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 750px) {
  .section__future .future__h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1280px) {
  .section__future .future__h2 strong {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 750px) {
  .section__future .future__h2 strong {
    font-size: 4rem;
    display: block;
    margin-top: 1.4rem;
  }
}
@media screen and (max-width: 1280px) {
  .section__future .future__h2 strong small {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 750px) {
  .section__future .future__h2 strong small {
    font-size: 2.8rem;
  }
}
.section__future .future__lead {
  margin-top: 80px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .section__future .future__lead {
    line-height: 1.5;
  }
}
@media screen and (max-width: 750px) {
  .section__future .future__lead {
    margin-top: 7rem;
    font-size: 3rem;
  }
}
.section__future .future__img {
  margin: 80px auto 0;
  display: flex;
  justify-content: center;
}
.section__future .future__txt {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .section__future .future__txt {
    margin-top: 6rem;
  }
}
/********************************
solution
*********************************/
@media screen and (max-width: 750px) {
  .section__solution .c-inner {
    padding-top: 4rem;
  }
}
.section__solution .solution__lead {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section__solution .solution__lead {
    font-size: 3.2rem;
  }
}
.section__solution .solution__lead .strong {
  position: relative;
  z-index: 10;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 46px;
  color: #5ac4bf;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .section__solution .solution__lead .strong {
    background-color: inherit;
    font-size: 3.8rem;
    margin-top: -2rem;
    padding: 0 2rem;
  }
}
.section__solution .solution__lead .strong::first-letter {
  font-size: 60px;
}
@media screen and (max-width: 750px) {
  .section__solution .solution__lead .strong::first-letter {
    font-size: 6rem;
  }
}
@media screen and (max-width: 750px) {
  .section__solution .solution__lead--pc {
    display: none;
  }
}
.section__solution .solution__lead--sp {
  display: none;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .section__solution .solution__lead--sp {
    display: block;
  }
}
.section__solution .solution__merit {
  position: relative;
  border: 2px solid;
  padding: 100px 90px 90px;
  margin-top: -26px;
}
@media screen and (max-width: 750px) {
  .section__solution .solution__merit {
    width: 100%;
    margin: 0 auto;
    padding: 9rem 4rem 12rem;
  }
}
.section__solution .solution__merit .merit__pic01,
.section__solution .solution__merit .merit__pic02,
.section__solution .solution__merit .merit__pic03,
.section__solution .solution__merit .merit__pic04 {
  position: absolute;
}
.section__solution .solution__merit .merit__pic01 {
  top: -77px;
  left: -58px;
}
@media screen and (max-width: 1280px) {
  .section__solution .solution__merit .merit__pic01 {
    width: 200px;
    top: -60px;
    left: 0;
  }
}
@media screen and (max-width: 750px) {
  .section__solution .solution__merit .merit__pic01 {
    width: 25rem;
    top: -7.5rem;
    left: 0rem;
  }
}
.section__solution .solution__merit .merit__pic02 {
  top: -107px;
  right: -39px;
}
@media screen and (max-width: 1280px) {
  .section__solution .solution__merit .merit__pic02 {
    width: 200px;
    top: -96px;
    right: 0;
  }
}
@media screen and (max-width: 750px) {
  .section__solution .solution__merit .merit__pic02 {
    width: 21rem;
    top: -9rem;
    right: 0rem;
  }
}
.section__solution .solution__merit .merit__pic03 {
  bottom: -46px;
  left: -46px;
}
@media screen and (max-width: 1280px) {
  .section__solution .solution__merit .merit__pic03 {
    bottom: -90px;
    left: 0;
  }
}
@media screen and (max-width: 750px) {
  .section__solution .solution__merit .merit__pic03 {
    width: 12rem;
    bottom: -8.2rem;
    left: 0rem;
  }
}
.section__solution .solution__merit .merit__pic04 {
  bottom: -55px;
  right: -40px;
}
@media screen and (max-width: 1280px) {
  .section__solution .solution__merit .merit__pic04 {
    bottom: -90px;
    right: 0;
  }
}
@media screen and (max-width: 750px) {
  .section__solution .solution__merit .merit__pic04 {
    width: 36rem;
    bottom: -8.2rem;
    right: -0.5rem;
  }
}
@media screen and (max-width: 750px) {
  .section__solution .solution__merit .merit__list {
    margin-top: 2rem;
  }
}
.section__solution .solution__merit .merit__list .list__item {
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .section__solution .solution__merit .merit__list .list__item {
    font-size: 2.8rem;
    line-height: 1.6;
  }
}
.section__solution .solution__merit .merit__list .list__item + * {
  margin-top: 45px;
}
@media screen and (max-width: 750px) {
  .section__solution .solution__merit .merit__list .list__item + * {
    margin-top: 4rem;
  }
}
.section__solution .solution__merit .merit__list .list__num {
  font-family: Arial, sans-serif;
  font-size: 40px;
  font-weight: bolder;
  color: #65a5e1;
  margin-right: 35px;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 750px) {
  .section__solution .solution__merit .merit__list .list__num {
    font-size: 3.5rem;
    align-self: self-start;
    margin-top: -0.5rem;
    margin-right: 2rem;
  }
}
.section__solution .solution__txt01 {
  margin-top: 167px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section__solution .solution__txt01 {
    margin-top: 14rem;
  }
}
.section__solution .solution__txt02 {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 25px auto 0;
  padding: 82px 21px 20px 0;
  background: linear-gradient(transparent 85%, #f9e42f 20%), url("img/solution/pic_solution.png") top center no-repeat;
}
@media screen and (max-width: 750px) {
  .section__solution .solution__txt02 {
    font-size: 4rem;
    background: url("img/solution/pic_solution.png") top center no-repeat;
    padding-top: 7rem;
  }
}
@media screen and (max-width: 750px) {
  .section__solution .solution__txt02 .solution__txt02--sp {
    background-image: linear-gradient(transparent 85%, #f9e42f 20%);
    line-height: 1.5;
    padding-bottom: 0.7rem;
  }
}
.section__solution .solution__txt02 .small {
  font-size: 46px;
}
@media screen and (max-width: 750px) {
  .section__solution .solution__txt02 .small {
    font-size: 3rem;
  }
}

/********************************
strengths
*********************************/
.section__strengths {
  background-color: #f1f8ff;
}
.section__strengths .strengths__h2 + * {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .section__strengths .strengths__h2 + * {
    margin-top: 6rem;
  }
}
.section__strengths .strengths__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 1000px) {
  .section__strengths .strengths__wrap {
    display: block;
  }
}
.section__strengths .strengths__wrap--reverse {
  flex-direction: row-reverse;
}
.section__strengths .strengths__wrap + * {
  margin-top: 85px;
}
@media screen and (max-width: 1280px) {
  .section__strengths .strengths__img {
    width: 48%;
  }
}
@media screen and (max-width: 1000px) {
  .section__strengths .strengths__img {
    width: auto;
    display: block;
    margin: 0 auto;
  }
}
.section__strengths .strengths__txt {
  width: 525px;
}
@media screen and (max-width: 1280px) {
  .section__strengths .strengths__txt {
    width: 48%;
  }
}
@media screen and (max-width: 1000px) {
  .section__strengths .strengths__txt {
    width: 100%;
    margin-top: 2rem;
  }
}
.section__strengths .strengths__txt .c-txt {
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .section__strengths .strengths__txt .c-txt {
    margin-top: 2.5rem;
  }
}
.section__strengths .strengths__h3 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.section__strengths .strengths__h3--01 {
  background: url("img/strengths/bg_txt-point01.png") no-repeat bottom 9px right 50px;
  padding-top: 60px;
}
@media screen and (max-width: 750px) {
  .section__strengths .strengths__h3--01 {
    /* 75%に縮小 */
    background: url("img/strengths/bg_txt-point01.png") no-repeat bottom right/15rem auto;
    padding-top: 7rem;
  }
}
.section__strengths .strengths__h3--02 {
  background: url("img/strengths/bg_txt-point02.png") no-repeat bottom 9px right 25px;
  padding-top: 60px;
}
@media screen and (max-width: 750px) {
  .section__strengths .strengths__h3--02 {
    /* 75%に縮小 */
    background: url("img/strengths/bg_txt-point02.png") no-repeat bottom right/15rem auto;
    padding-top: 7rem;
  }
}
.section__strengths .strengths__h3--03 {
  background: url("img/strengths/bg_txt-point03.png") no-repeat bottom 9px right;
  padding-top: 60px;
}
@media screen and (max-width: 750px) {
  .section__strengths .strengths__h3--03 {
    /* 75%に縮小 */
    background: url("img/strengths/bg_txt-point03.png") no-repeat bottom right/15rem auto;
    padding-top: 7rem;
  }
}

/********************************
voice
*********************************/
@media screen and (max-width: 750px) {
  .section__voice .c-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .section__voice .voice__h2 {
    font-size: 5rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.section__voice .voice__wrap {
  margin-top: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1280px) {
  .section__voice .voice__wrap {
    gap: 90px 30px;
  }
}
@media screen and (max-width: 750px) {
  .section__voice .voice__wrap {
    margin-top: 7rem;
    gap: 3rem;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 10rem 8rem 7rem;
    scroll-snap-type: x mandatory;
  }
}
.section__voice .voice__item {
  width: 560px;
  background-color: #f1f8ff;
  border-radius: 10px;
  position: relative;
  padding: 35px 30px;
}
@media screen and (max-width: 1280px) {
  .section__voice .voice__item {
    width: 47%;
    padding-top: 80px;
  }
}
@media screen and (max-width: 750px) {
  .section__voice .voice__item {
    width: 100%;
    min-width: 100%;
    padding: 10rem 3rem 3rem;
    scroll-snap-align: center;
  }
}
.section__voice .voice__item .c-txt {
  margin-top: 30px;
}
.section__voice .voice__ico {
  position: absolute;
  top: -17px;
  right: 15px;
}
@media screen and (max-width: 1280px) {
  .section__voice .voice__ico {
    top: -64px;
    right: calc(50% - 64px);
  }
}
@media screen and (max-width: 750px) {
  .section__voice .voice__ico {
    width: 18rem;
    top: -9rem;
    left: calc(50% - 9rem);
  }
}
.section__voice .voice__h3 {
  font-size: 20px;
  font-weight: bold;
  width: 390px;
  padding-bottom: 23px;
  border-bottom: 2px solid;
}
@media screen and (max-width: 1280px) {
  .section__voice .voice__h3 {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .section__voice .voice__h3 {
    font-size: 3rem;
    width: 100%;
    text-align: center;
    line-height: 1.3;
  }
}
.section__voice .voice__prof {
  font-size: 18px;
  font-weight: normal;
  display: inline-block;
  margin-top: 16px;
}
@media screen and (max-width: 750px) {
  .section__voice .voice__prof {
    font-size: 2.5rem;
  }
}

/********************************
office
*********************************/
.section__office {
  background-color: #f1f8ff;
}
@media screen and (max-width: 750px) {
  .section__office .office__h2 {
    font-size: 5rem;
  }
}
.section__office .office__h2 + * {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .section__office .office__h2 + * {
    margin-top: 7rem;
  }
}
.section__office .office__details + * {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .section__office .office__details + * {
    margin-top: 3rem;
  }
}
.section__office .office__summary {
  display: none;
  position: relative;
  padding: 23px 30px;
  border: 1px solid #4bb47a;
  border-radius: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #4bb47a;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .section__office .office__summary {
    display: block;
    font-size: 3.2rem;
    padding: 2rem 2.6rem;
  }
}
.section__office .office__summary:hover {
  cursor: pointer;
}
.section__office .office__summary::-webkit-details-marker {
  /* safari向けの処理 */
  display: none;
}
.section__office .office__summary-arrow {
  position: absolute;
  right: 3rem;
  top: 2.1rem;
  width: 5.2rem;
}
.section__office .office__details[open] .office__content {
  animation: accordion 0.4s linear;
  overflow: hidden;
}
.section__office .office__details[open] .office__summary-arrow {
  transform: rotate(-180deg);
}
.section__office .office__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .section__office .office__wrap {
    display: block;
    background-color: #fff;
    border-radius: 15px;
    padding: 1.5rem 1.5rem 4rem;
    margin-top: 3.5rem;
  }
}
.section__office .office__wrap + * {
  margin-top: 80px;
}
.section__office .office__wrap--reverse {
  flex-direction: row-reverse;
}
.section__office .office__img {
  width: 560px;
}
@media screen and (max-width: 1280px) {
  .section__office .office__img {
    width: 48%;
  }
}
@media screen and (max-width: 750px) {
  .section__office .office__img {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .section__office .office__img01,
  .section__office .office__img02 {
    width: 100%;
  }
}
.section__office .office__img02 {
  margin-top: 35px;
}
@media screen and (max-width: 750px) {
  .section__office .office__img02 {
    margin-top: 3.5rem;
  }
}
.section__office .office__txt {
  width: 560px;
}
@media screen and (max-width: 1280px) {
  .section__office .office__txt {
    width: 48%;
  }
}
@media screen and (max-width: 750px) {
  .section__office .office__txt {
    width: 100%;
    margin-top: 5rem;
  }
}
.section__office .office__lead {
  font-size: 36px;
  font-weight: bold;
  color: #4bb47a;
  text-align: center;
  line-height: 1.5;
  margin-top: -27px;
}
@media screen and (max-width: 750px) {
  .section__office .office__lead {
    font-size: 4rem;
  }
}
.section__office .office__lead-sub {
  color: #000;
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  .section__office .office__lead-sub {
    display: inline-block;
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 2.5rem;
  }
}
.section__office .office__lead-sub::before {
  content: "＼ ";
}
@media screen and (max-width: 1280px) {
  .section__office .office__lead-sub::before {
    content: none;
  }
}
.section__office .office__lead-sub::after {
  content: " ／";
}
@media screen and (max-width: 1280px) {
  .section__office .office__lead-sub::after {
    content: none;
  }
}
.section__office .office__address {
  text-align: center;
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .section__office .office__address {
    width: -moz-fit-content;
    width: fit-content;
    margin: 2.5rem auto 0;
    font-size: 3rem;
    line-height: 1.3;
  }
}
.section__office .office__dl {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .section__office .office__dl {
    margin-top: 4rem;
  }
}
.section__office .office__dt {
  font-size: 20px;
  font-weight: bold;
  color: #4bb47a;
  display: flex;
}
.section__office .office__dt img {
  margin-right: 10px;
}
@media screen and (max-width: 750px) {
  .section__office .office__dt img {
    width: 3.2rem;
    margin-right: 1rem;
  }
}
.section__office .office__dt + * {
  margin-top: 8px;
}
@media screen and (max-width: 750px) {
  .section__office .office__dt + * {
    margin-top: 2rem;
  }
}
.section__office .office__dd {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .section__office .office__dt,
  .section__office .office__dd {
    font-size: 3rem;
  }
}
.section__office .office__dd + * {
  margin-top: 12px;
}
@media screen and (max-width: 750px) {
  .section__office .office__dd + * {
    margin-top: 2rem;
  }
}
.section__office .office__google {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #4bb47a;
  padding: 25px 0;
  border-radius: 38px;
}
@media screen and (max-width: 750px) {
  .section__office .office__google {
    margin-top: 4rem;
    font-size: 3.3rem;
    padding: 2rem 0 2.5rem;
  }
}
.section__office .office__google:hover {
  text-decoration: underline;
}
.section__office .office__google img {
  margin-right: 10px;
}

/********************************
flow
*********************************/
@media screen and (max-width: 750px) {
  .section__flow .flow__h2 {
    font-size: 5rem;
  }
}
.section__flow .flow__txt {
  font-size: 20px;
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .section__flow .flow__txt {
    margin-top: 4rem;
    font-size: 3.1rem;
    text-align: left;
  }
}
.section__flow .flow__list-wrap {
  width: 870px;
  margin: 60px auto 0;
  padding: 40px 55px;
  background-color: #f1f8ff;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .section__flow .flow__list-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .section__flow .flow__list-wrap {
    margin-top: 4rem;
    padding: 4rem 3rem;
  }
}
.section__flow .flow__list-img {
  position: absolute;
}
.section__flow .flow__list-img01 {
  bottom: -34px;
  left: -58px;
}
@media screen and (max-width: 1000px) {
  .section__flow .flow__list-img01 {
    bottom: -78px;
    left: 0;
  }
}
@media screen and (max-width: 750px) {
  .section__flow .flow__list-img01 {
    width: 10rem;
    bottom: -6rem;
    left: -0.9rem;
  }
}
.section__flow .flow__list-img02 {
  bottom: -34px;
  right: -53px;
}
@media screen and (max-width: 1000px) {
  .section__flow .flow__list-img02 {
    bottom: -78px;
    right: 0;
  }
}
@media screen and (max-width: 750px) {
  .section__flow .flow__list-img02 {
    width: 11rem;
    bottom: -6rem;
    right: -0.7rem;
  }
}
.section__flow .flow__list .list__item {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .section__flow .flow__list .list__item {
    font-size: 3rem;
  }
}
.section__flow .flow__list .list__item + * {
  margin-top: 25px;
}
@media screen and (max-width: 750px) {
  .section__flow .flow__list .list__item + * {
    margin-top: 2.5rem;
  }
}
.section__flow .flow__list .list__item img {
  margin-right: 10px;
  align-self: self-start;
}
@media screen and (max-width: 750px) {
  .section__flow .flow__list .list__item img {
    margin-top: 10px;
  }
}
.section__flow .flow__item-wrap {
  margin-top: 150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 750px) {
  .section__flow .flow__item-wrap {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.section__flow .flow__item-wrap::before {
  content: url("img/flow/pic_down-arrow.png");
  position: absolute;
  left: calc(50% - 23.5px);
  top: -100px;
}
.section__flow .flow__item {
  width: 247px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .section__flow .flow__item {
    width: 20%;
  }
}
@media screen and (max-width: 750px) {
  .section__flow .flow__item {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .section__flow .flow__item .item__img {
    display: block;
    width: 40rem;
    margin: 0 auto;
  }
}
.section__flow .flow__item .item__lead {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .section__flow .flow__item .item__lead {
    font-size: 3.5rem;
    margin-top: 2rem;
  }
}
.section__flow .flow__item .item__txt {
  margin-top: 20px;
}
.section__flow .flow__item:not(:last-of-type)::after {
  display: block;
  content: "";
  width: 26px;
  height: 63px;
  background-image: url("img/flow/ico_flow-arrow.png");
  background-size: contain;
  position: absolute;
  top: 94px;
  right: -48px;
}
@media screen and (max-width: 750px) {
  .section__flow .flow__item:not(:last-of-type)::after {
    position: relative;
    top: auto;
    right: auto;
    transform: rotate(90deg);
    margin: 2rem auto;
    width: 5.2rem;
    height: 12.6rem;
  }
}
/********************************
faq
*********************************/
.section__faq {
  background-color: #f1f8ff;
}
@media screen and (max-width: 750px) {
  .section__faq .faq__h2 {
    font-size: 5rem;
  }
}
.section__faq .faq__h2 + * {
  margin-top: 60px;
}
.section__faq .faq__details + * {
  margin-top: 35px;
}
.section__faq .faq__summary {
  display: flex;
  align-items: center;
  position: relative;
  background-color: #4bb47a;
  padding: 23px 36px;
  border-radius: 15px;
  font-size: 28px;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .section__faq .faq__summary {
    padding: 2rem 2.6rem;
    display: flex;
    align-items: center;
    font-size: 2.8rem;
    line-height: 1.3;
  }
}
.section__faq .faq__summary:hover {
  cursor: pointer;
}
.section__faq .faq__summary::-webkit-details-marker {
  /* safari向けの処理 */
  display: none;
}
.section__faq .faq__summary-question {
  font-size: 50px;
  margin-right: 30px;
  position: relative;
  top: -6px;
}
@media screen and (max-width: 750px) {
  .section__faq .faq__summary-question {
    top: 0;
    font-size: 5rem;
    margin-right: 2rem;
    margin-top: -1.5rem;
  }
}
.section__faq .faq__summary-arrow {
  position: absolute;
  right: 50px;
  top: 44px;
}
@media screen and (max-width: 750px) {
  .section__faq .faq__summary-arrow {
    right: 3rem;
    top: calc(50% - 18px);
  }
}
.section__faq .faq__content {
  display: block;
  position: relative;
  background-color: #fff;
  margin-top: 20px;
  padding: 38px 36px 38px 104px;
  border-radius: 15px;
  border: 1px solid #4bb47a;
}
@media screen and (max-width: 750px) {
  .section__faq .faq__content {
    margin-top: 2rem;
    padding: 3.8rem 3.6rem 3.8rem 8.2rem;
  }
}
.section__faq .faq__content::before {
  content: "A";
  font-size: 50px;
  font-weight: bold;
  color: #4bb47a;
  position: absolute;
  top: 28px;
  left: 37px;
}
@media screen and (max-width: 750px) {
  .section__faq .faq__content::before {
    font-size: 5rem;
    top: 2.8rem;
    left: 2.7rem;
  }
}
.section__faq .faq__details[open] .faq__content {
  animation: accordion 0.4s linear;
  overflow: hidden;
}
.section__faq .faq__details[open] .faq__summary-arrow {
  transform: rotate(-180deg);
}
@keyframes accordion {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes open {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-180deg);
  }
}
@keyframes close {
  from {
    transform: rotate(-180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
/********************************
footer 全ページ共通部品があればこちらに入れる
*********************************/
.footer {
  padding: 85px 0 20px;
  background: url("img/footer/bg_footer.png") no-repeat;
  background-size: 1900px 419px;
  margin-top: -56px;
}

.footer__inner {
  width: 1180px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .footer__inner {
    width: 100%;
  }
}

.footer__goto-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.footer__logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.footer__copyright {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-top: 50px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */