@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

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

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

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

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #434343;
  background: #42A995; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s; }
  a:hover {
    opacity: 0.6; }

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 16px; } }

[data-trigger] {
  position: relative;
  transform: translate(0, 20px);
  -webkit-transition: -webkit-transform 1s, opacity 1s;
  -moz-transition: -moz-transform 1s, opacity 1s;
  -o-transition: -o-transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    transform: translate(0, 0px);
    opacity: 1; }

[data-anim] {
  opacity: 0;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: opacity 1s, filter 1s; }
  [data-anim].is-active {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0); }

main {
  overflow: hidden; }

.c-bottom-area {
  position: relative;
  overflow: hidden; }
  .c-bottom-area .bubble {
    width: 487px;
    position: absolute;
    left: calc(50vw + 314px);
    bottom: 26px; }
    @media only screen and (max-width: 767px) {
      .c-bottom-area .bubble {
        width: 389px;
        left: auto;
        right: -193px;
        bottom: 249px; } }

.c-contact {
  padding: 48px 0;
  position: relative;
  z-index: +1; }
  .c-contact .inner {
    max-width: 1344px; }
  .c-contact__box {
    background: #F6F6F1;
    border-radius: 160px;
    padding: 48px; }
    @media only screen and (max-width: 767px) {
      .c-contact__box {
        border-radius: 48px;
        padding: 48px 32px; } }
  .c-contact__col {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px; }
    @media only screen and (max-width: 767px) {
      .c-contact__col {
        flex-direction: column;
        margin-top: 24px; } }
    .c-contact__col hr {
      border: none;
      margin: 0 48px;
      width: 2px;
      height: 88px;
      background-image: repeating-linear-gradient(180deg, #42a995, #42a995 3px, transparent 3px, transparent 7px);
      background-position: right top;
      background-repeat: repeat-y;
      background-size: 2px 100%; }
      @media only screen and (max-width: 767px) {
        .c-contact__col hr {
          width: 88px;
          height: 2px;
          margin: 24px auto;
          background-image: repeating-linear-gradient(90deg, #42a995, #42a995 3px, transparent 3px, transparent 7px);
          background-position: left top;
          background-repeat: repeat-x;
          background-size: 100% 2px; } }
    .c-contact__col .c-tel-box a i {
      margin-right: 8px;
      width: 32px; }
      .c-contact__col .c-tel-box a i img {
        width: 100%;
        height: auto; }
    .c-contact__col .c-tel-box a strong {
      font-size: 36px;
      font-size: 3.6rem;
      line-height: 1;
      padding-bottom: 5px; }
    .c-contact__col .c-tel-box span {
      width: 262px;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 2;
      padding: 0;
      border-radius: 48px;
      margin-top: 6px; }
    .c-contact__col .btn-contact {
      width: 280px;
      height: 64px;
      border-radius: 62px;
      font-size: 16px;
      font-size: 1.6rem; }
      @media only screen and (max-width: 767px) {
        .c-contact__col .btn-contact {
          width: 100%; } }

.c-link {
  padding-bottom: 48px;
  position: relative;
  z-index: +1; }
  .c-link .inner {
    max-width: 1248px; }
  .c-link__list {
    margin-top: 48px;
    display: flex; }
    @media only screen and (max-width: 767px) {
      .c-link__list {
        margin-top: 32px;
        flex-wrap: wrap; } }
    .c-link__list li {
      width: 13.09931507%;
      margin-right: 1.38413242%; }
      @media only screen and (max-width: 767px) {
        .c-link__list li {
          width: 47.6744186%;
          margin-right: 4.6511628%;
          margin-top: 4.6511628%; } }
      @media only screen and (max-width: 767px) {
        .c-link__list li:nth-of-type(-n + 2) {
          margin-top: 0; } }
      @media only screen and (max-width: 767px) {
        .c-link__list li:nth-of-type(2n) {
          margin-right: 0; } }
      .c-link__list li:last-of-type {
        margin-right: 0; }

.footer {
  background: #F6F6F1; }
  .footer .inner {
    max-width: 1264px; }
  .footer__top {
    padding: 56px 0; }
    @media only screen and (max-width: 767px) {
      .footer__top {
        padding: 48px 0; } }
    .footer__top .inner {
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        .footer__top .inner {
          display: block; } }
  .footer__left {
    flex-shrink: 0; }
    .footer__left .logo {
      display: block;
      width: 320px;
      margin-bottom: 24px; }
    .footer__left address {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 500; }
  .footer__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end; }
    @media only screen and (max-width: 767px) {
      .footer__right {
        align-items: flex-start; } }
    .footer__right p {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 500;
      margin-top: 16px; }
      @media only screen and (max-width: 767px) {
        .footer__right p {
          margin-top: 24px; } }
  .footer__list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 16px; }
    .footer__list li {
      margin-left: 24px;
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 500; }
      .footer__list li a:after {
        content: "";
        width: 7px;
        height: 12px;
        display: inline-block;
        background: url(../images/common/arrow_right_green.svg) center center/cover no-repeat;
        margin-left: 7px; }
  .footer__bottom {
    background: #434343;
    padding: 28px 0;
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    line-height: 2;
    font-weight: 500; }
    @media only screen and (max-width: 767px) {
      .footer__bottom {
        text-align: center; } }
    .footer__bottom a {
      text-decoration: underline; }
    .footer__bottom .inner {
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        .footer__bottom .inner {
          display: block; } }

.header {
  width: 100%;
  height: 162px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99; }
  @media only screen and (max-width: 1040px) {
    .header {
      height: 80px; } }
  .header__h1 {
    padding: 10px 16px;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.05em; }
    @media only screen and (max-width: 1040px) {
      .header__h1 {
        display: none; } }
  .header__cont {
    padding: 16px 56px 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (max-width: 1040px) {
      .header__cont {
        padding: 24px 24px 24px 16px; } }
  .header__logo {
    display: block;
    width: 320px;
    position: relative; }
    @media only screen and (max-width: 1040px) {
      .header__logo {
        width: 224px; } }
  @media only screen and (max-width: 1040px) {
    .header .gnav {
      width: 100%;
      height: 100vh;
      background: #F6F6F1;
      position: fixed;
      top: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
      padding: 80px 32px;
      display: flex;
      flex-direction: column;
      overflow-y: scroll; } }
  @media only screen and (max-width: 1040px) {
    .header .gnav.is-active {
      opacity: 1;
      visibility: visible; } }
  .header .gnav__logo {
    display: none; }
    @media only screen and (max-width: 1040px) {
      .header .gnav__logo {
        display: block;
        width: 224px;
        position: absolute;
        top: 24px;
        left: 16px; } }
  .header .gnav__cv {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media only screen and (max-width: 1040px) {
      .header .gnav__cv {
        order: 2;
        flex-direction: column;
        justify-content: center; } }
    .header .gnav__cv .btn-contact {
      margin-left: 24px; }
      @media only screen and (max-width: 1040px) {
        .header .gnav__cv .btn-contact {
          margin-left: 0; } }
    .header .gnav__cv hr {
      display: none; }
      @media only screen and (max-width: 1040px) {
        .header .gnav__cv hr {
          display: block;
          border: none;
          width: 88px;
          height: 2px;
          margin: 24px auto;
          background-image: repeating-linear-gradient(90deg, #42a995, #42a995 3px, transparent 3px, transparent 7px);
          background-position: left top;
          background-repeat: repeat-x;
          background-size: 100% 2px; } }
  .header .gnav__list {
    margin-top: 16px;
    padding-right: 48px;
    display: flex;
    justify-content: flex-end; }
    @media only screen and (max-width: 1040px) {
      .header .gnav__list {
        display: block;
        margin-top: 0;
        padding: 48px 0; } }
    .header .gnav__list li {
      margin-left: 24px;
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 500; }
      @media only screen and (max-width: 1040px) {
        .header .gnav__list li {
          font-size: 16px;
          font-size: 1.6rem;
          margin: 0 0 24px; } }
      @media only screen and (max-width: 1040px) {
        .header .gnav__list li:last-of-type {
          margin-bottom: 0; } }
      @media only screen and (max-width: 1040px) {
        .header .gnav__list li a {
          display: flex;
          justify-content: space-between;
          align-items: center; } }
      .header .gnav__list li a:after {
        content: "";
        width: 7px;
        height: 12px;
        display: inline-block;
        background: url(../images/common/arrow_right_green.svg) center center/cover no-repeat;
        margin-left: 7px;
        position: relative;
        top: 1px; }

.hamburger {
  width: 48px;
  height: 48px;
  background: #42A995;
  border: 2px solid #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: +1;
  cursor: pointer; }
  @media only screen and (max-width: 1040px) {
    .hamburger {
      display: flex; } }
  .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
    transform: rotate(-135deg);
    top: 7px; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
    opacity: 0; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(3) {
    transform: rotate(135deg);
    bottom: 7px; }
  .hamburger__inner {
    width: 21px;
    height: 17px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    .hamburger__inner span {
      width: 21px;
      height: 3px;
      border-radius: 3px;
      display: block;
      background: #fff;
      transition: width .3s, transform .3s, top .3s, bottom .3s, opacity .3s; }
      .hamburger__inner span:nth-of-type(1) {
        position: absolute;
        top: 0;
        left: 0; }
      .hamburger__inner span:nth-of-type(3) {
        position: absolute;
        bottom: 0;
        left: 0; }

@media only screen and (max-width: 1040px) {
  .header.static {
    display: none; } }

.header.fixed {
  height: 116px;
  background: rgba(255, 255, 255, 0.85);
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .3s; }
  @media only screen and (max-width: 1040px) {
    .header.fixed {
      position: absolute;
      background: none;
      opacity: 1;
      visibility: visible; } }
  .header.fixed.show {
    opacity: 1;
    visibility: visible; }
  .header.fixed .header__cont {
    padding-top: 8px;
    padding-bottom: 8px; }
    @media only screen and (max-width: 1040px) {
      .header.fixed .header__cont {
        padding-top: 24px;
        padding-bottom: 24px; } }
  .header.fixed .gnav__cv {
    margin-top: 8px; }
  .header.fixed .gnav__list {
    margin-top: 8px; }

.c-tel-box a {
  display: flex;
  align-items: center; }
  .c-tel-box a i {
    margin-right: 16px; }
    @media only screen and (max-width: 1040px) {
      .c-tel-box a i {
        width: 32px;
        margin-right: 8px; } }
    @media only screen and (max-width: 1040px) {
      .c-tel-box a i img {
        width: 100%;
        height: auto; } }
  .c-tel-box a strong {
    font-size: 28px;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    line-height: 1.14285714;
    font-weight: 700; }
    @media only screen and (max-width: 1040px) {
      .c-tel-box a strong {
        font-size: 36px;
        font-size: 3.6rem;
        line-height: 1;
        padding-bottom: 5px; } }

.c-tel-box span {
  width: 213px;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.16666667;
  font-weight: 500;
  padding: 4px 10px;
  display: block;
  border-radius: 48px;
  background: #fff;
  margin: 0 auto;
  margin-top: 2px;
  text-align: center; }
  @media only screen and (max-width: 1040px) {
    .c-tel-box span {
      width: 262px;
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 2;
      padding: 0;
      margin-top: 5px; } }

.btn-contact {
  width: 200px;
  height: 44px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #42A995;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 700;
  border: 2px solid #42A995;
  transition: color .3s, background-color .3s; }
  @media only screen and (max-width: 1040px) {
    .btn-contact {
      width: 100%;
      max-width: 280px;
      height: 64px;
      font-size: 16px;
      font-size: 1.6rem;
      border-radius: 62px; } }
  .btn-contact:hover {
    color: #42A995;
    background: #fff;
    opacity: 1; }
    .btn-contact:hover svg path {
      fill: #42A995; }
  .btn-contact svg {
    margin-right: 10px; }
    .btn-contact svg path {
      transition: fill .3s; }

.c-title02 {
  position: relative;
  text-align: center; }
  .c-title02.green:after {
    background: url(../images/common/deco_title_green.svg) center center/cover no-repeat; }
  .c-title02.green .en {
    color: #42A995; }
  .c-title02.yellow {
    color: #fff; }
    .c-title02.yellow:after {
      background: url(../images/common/deco_title_yellow.svg) center center/cover no-repeat; }
  .c-title02:after {
    content: "";
    width: 32px;
    height: 8px;
    display: block;
    margin: 16px auto 0; }
  .c-title02 .en {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 700;
    font-family: "Anonymous Pro", monospace;
    margin-bottom: 16px; }
  .c-title02 .jp {
    display: block;
    font-size: 32px;
    font-size: 3.2rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif; }
    @media only screen and (max-width: 767px) {
      .c-title02 .jp {
        font-size: 28px;
        font-size: 2.8rem; } }

.c-title03 {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif; }
  @media only screen and (max-width: 767px) {
    .c-title03 {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0; } }

.c-title {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif; }

.c-text01 {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 500; }

.c-list li {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px; }
  .c-list li:before {
    content: "";
    width: 8px;
    height: 7px;
    display: inline-block;
    background: url(../images/common/deco_green.svg) center center/cover no-repeat;
    position: absolute;
    top: 8px;
    left: 8px; }
  .c-list li:last-of-type {
    margin-bottom: 0; }

.c-head {
  padding: 224px 0 62px;
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    .c-head {
      padding: 112px 16px 32px 0; } }
  .c-head:before {
    content: "";
    width: calc(100% - 24px);
    height: 100%;
    display: block;
    background: #F6F6F1;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 162px 0; }
    @media only screen and (max-width: 767px) {
      .c-head:before {
        width: calc(100% - 16px);
        border-radius: 0 0 56px 0; } }
  .c-head .bubble {
    position: absolute; }
  .c-head .bubble-01 {
    width: 471px;
    top: -88px;
    right: calc(50vw + 124px); }
    @media only screen and (max-width: 767px) {
      .c-head .bubble-01 {
        width: 187px;
        right: auto;
        left: -58px;
        top: -43px; } }
  .c-head .bubble-02 {
    width: 158px;
    bottom: 9px;
    left: calc(50vw + 48px); }
    @media only screen and (max-width: 767px) {
      .c-head .bubble-02 {
        width: 96px;
        bottom: -6px;
        left: calc(50vw + 28px); } }
  .c-head .c-title02:after {
    content: none; }

.c-breadcrumb {
  padding: 21px 0;
  color: #fff; }
  .c-breadcrumb .inner {
    max-width: 1344px; }
  .c-breadcrumb ul {
    display: flex;
    align-items: center; }
    .c-breadcrumb ul li {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      font-weight: 500; }
      .c-breadcrumb ul li:last-of-type:after {
        content: none; }
      .c-breadcrumb ul li:after {
        content: "";
        width: 5px;
        height: 10px;
        display: inline-block;
        background: url(../images/common/arrow_right_white.svg) center center/cover no-repeat;
        margin: 0 9px 0 4px; }
      .c-breadcrumb ul li a {
        text-decoration: underline; }

.c-cont {
  position: relative;
  padding: 80px 0; }
  @media only screen and (max-width: 767px) {
    .c-cont {
      padding: 48px 0;
      padding-left: 16px; } }
  .c-cont:before {
    content: "";
    width: calc(100% - 24px);
    height: 100%;
    background: #F6F6F1;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 80px 0 0 80px;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      .c-cont:before {
        width: calc(100% - 16px);
        border-radius: 48px 0 0 48px; } }
  .c-cont .inner {
    position: relative;
    z-index: +1; }
  .c-cont .bubble {
    width: 450px;
    position: absolute;
    bottom: -88px;
    left: -202px; }
    @media only screen and (max-width: 767px) {
      .c-cont .bubble {
        width: 267px; } }

.c-more {
  display: flex;
  align-items: center;
  width: max-content; }
  .c-more.black span {
    color: #434343; }
    .c-more.black span:after {
      background-image: repeating-linear-gradient(90deg, #434343, #434343 3px, transparent 3px, transparent 7px), repeating-linear-gradient(180deg, #434343, #434343 3px, transparent 3px, transparent 7px), repeating-linear-gradient(90deg, #434343, #434343 3px, transparent 3px, transparent 7px), repeating-linear-gradient(180deg, #434343, #434343 3px, transparent 3px, transparent 7px); }
  .c-more span {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 2;
    font-weight: 700;
    color: #fff;
    position: relative; }
    .c-more span:after {
      content: "";
      width: 100%;
      height: 2px;
      display: block;
      background-image: repeating-linear-gradient(90deg, #fff, #fff 3px, transparent 3px, transparent 7px), repeating-linear-gradient(180deg, #fff, #fff 3px, transparent 3px, transparent 7px), repeating-linear-gradient(90deg, #fff, #fff 3px, transparent 3px, transparent 7px), repeating-linear-gradient(180deg, #fff, #fff 3px, transparent 3px, transparent 7px);
      background-position: left top, right top, left bottom, left top;
      background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
      background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
      position: absolute;
      bottom: -4px;
      left: 0; }
  .c-more i {
    width: 48px;
    margin-left: 16px; }

.c-btn-col {
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    .c-btn-col {
      flex-direction: column; } }
  .c-btn-col .c-more {
    margin: 0 24px; }
    @media only screen and (max-width: 767px) {
      .c-btn-col .c-more {
        margin: 24px 0 0; } }

.c-btn {
  width: 100%;
  max-width: 280px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border-radius: 62px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
  border: 2px solid #42A995;
  background: #42A995;
  transition: color .3s, background-color .3s; }
  .c-btn:hover {
    color: #42A995;
    background: #fff;
    opacity: 1; }
    .c-btn:hover svg path {
      fill: #42A995; }
  .c-btn svg {
    position: absolute !important;
    top: 50% !important;
    right: 24px !important;
    left: auto !important;
    transform: translate(0%, -50%); }
    .c-btn svg path {
      transition: fill .3s; }

.c-news-list li {
  border-top: 1px solid #BABEBC; }
  .c-news-list li:last-of-type {
    border-bottom: 1px solid #BABEBC; }
  .c-news-list li a {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .c-news-list li a .image {
      width: 128px;
      height: 96px;
      border-radius: 8px;
      overflow: hidden; }
      .c-news-list li a .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
    .c-news-list li a .text {
      width: calc(100% - 128px - 16px); }
      .c-news-list li a .text .cate-date {
        display: flex;
        align-items: center;
        margin-bottom: 8px; }
        .c-news-list li a .text .cate-date .cate {
          display: inline-block;
          background: #42A995;
          padding: 8px 16px;
          border-radius: 16px;
          color: #fff;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em;
          font-weight: 500;
          margin-right: 16px; }
        .c-news-list li a .text .cate-date .date {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em;
          line-height: 1.42857143;
          font-weight: 700;
          font-family: "Zen Maru Gothic", sans-serif;
          color: #42A995; }
      .c-news-list li a .text .title {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 2;
        font-weight: 500;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1; }
        @media only screen and (max-width: 767px) {
          .c-news-list li a .text .title {
            -webkit-line-clamp: 2; } }

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px; }
  @media only screen and (max-width: 767px) {
    .wp-pagenavi {
      margin-top: 48px; } }
  .wp-pagenavi span, .wp-pagenavi a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: #42A995;
    border: 1px solid #42A995;
    background: #fff;
    margin: 0 4px;
    order: 3;
    transition: color .3s, background-color .3s; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi span, .wp-pagenavi a {
        width: 36px;
        height: 36px;
        margin: 0 3px; } }
    .wp-pagenavi span:hover, .wp-pagenavi a:hover {
      background: #42A995;
      color: #fff;
      opacity: 1; }
  .wp-pagenavi .current {
    background: #42A995;
    color: #fff; }
  .wp-pagenavi .extend {
    background: none;
    border: none;
    color: #434343;
    width: 22px; }
    .wp-pagenavi .extend:hover {
      background: none;
      color: #434343; }
  .wp-pagenavi .first {
    order: 2; }
  .wp-pagenavi .previouspostslink {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #434343;
    margin-right: 44px;
    background: none;
    border: none;
    width: auto;
    order: 1; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi .previouspostslink {
        margin-right: 10px;
        font-size: 12px;
        font-size: 1.2rem;
        white-space: nowrap; } }
    .wp-pagenavi .previouspostslink:hover {
      background: none;
      color: #42A995; }
    .wp-pagenavi .previouspostslink:before {
      content: "";
      width: 7px;
      height: 12px;
      display: inline-block;
      background: url(../images/common/arrow_right_green.svg) center center/cover no-repeat;
      margin-right: 8px;
      transform: rotate(180deg); }
  .wp-pagenavi .nextpostslink {
    order: 4;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #434343;
    margin-left: 44px;
    background: none;
    border: none;
    width: auto; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi .nextpostslink {
        margin-left: 10px;
        font-size: 12px;
        font-size: 1.2rem;
        white-space: nowrap; } }
    .wp-pagenavi .nextpostslink:hover {
      background: none;
      color: #42A995; }
    .wp-pagenavi .nextpostslink:after {
      content: "";
      width: 7px;
      height: 12px;
      display: inline-block;
      background: url(../images/common/arrow_right_green.svg) center center/cover no-repeat;
      margin-left: 8px; }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

body.contact .cont .c-tel-box {
  text-align: center;
  margin: 48px 0 80px; }
  @media only screen and (max-width: 767px) {
    body.contact .cont .c-tel-box {
      margin: 24px 0 48px; } }
  body.contact .cont .c-tel-box .c-title03 {
    margin-bottom: 16px; }
  body.contact .cont .c-tel-box a {
    justify-content: center; }
    body.contact .cont .c-tel-box a i {
      width: 40px;
      margin-right: 8px;
      margin-top: 4px; }
      body.contact .cont .c-tel-box a i img {
        width: 100%; }
    body.contact .cont .c-tel-box a strong {
      font-size: 48px;
      font-size: 4.8rem; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .c-tel-box a strong {
          font-size: 40px;
          font-size: 4rem; } }
  body.contact .cont .c-tel-box span {
    width: 344px;
    height: 32px;
    border-radius: 48px;
    font-size: 16px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px; }
    @media only screen and (max-width: 767px) {
      body.contact .cont .c-tel-box span {
        width: 294px; } }

body.contact .cont .step {
  margin-bottom: 32px; }
  body.contact .cont .step .c-title03 {
    text-align: center;
    margin-bottom: 16px; }
  body.contact .cont .step__list {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.contact .cont .step__list {
        width: 300px; } }
    body.contact .cont .step__list:before {
      content: "";
      width: calc(100% - 20px);
      height: 2px;
      display: block;
      background: #BABEBC;
      position: absolute;
      top: 11px;
      left: 10px; }
    body.contact .cont .step__list li {
      position: relative; }
      body.contact .cont .step__list li.current i {
        background: #42A995; }
      body.contact .cont .step__list li.current span {
        color: #42A995; }
      body.contact .cont .step__list li i {
        display: block;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #BABEBC;
        margin: 0 auto; }
      body.contact .cont .step__list li span {
        color: #BABEBC;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        line-height: 2;
        font-weight: 800;
        display: inline-block;
        margin-top: 16px; }

body.contact .cont .thanks {
  text-align: center;
  margin-top: 48px;
  padding-bottom: 48px; }
  @media only screen and (max-width: 767px) {
    body.contact .cont .thanks {
      padding-bottom: 0; } }
  body.contact .cont .thanks .c-title02 {
    margin-bottom: 24px; }
    body.contact .cont .thanks .c-title02:after {
      content: none; }
  body.contact .cont .thanks .c-text01 {
    margin-bottom: 18px; }
    @media only screen and (max-width: 767px) {
      body.contact .cont .thanks .c-text01 {
        text-align: left; } }
  body.contact .cont .thanks .c-more {
    margin: 96px auto 0; }
    @media only screen and (max-width: 767px) {
      body.contact .cont .thanks .c-more {
        margin-top: 48px; } }

body.contact .cont .form-area table {
  width: 100%; }
  @media only screen and (max-width: 767px) {
    body.contact .cont .form-area table {
      display: block; } }
  @media only screen and (max-width: 767px) {
    body.contact .cont .form-area table tbody {
      display: block; } }
  @media only screen and (max-width: 767px) {
    body.contact .cont .form-area table tbody tr {
      display: block;
      margin-bottom: 43px; } }
  body.contact .cont .form-area table tbody tr th {
    width: 320px;
    vertical-align: top;
    padding-right: 93px;
    position: relative;
    padding: 28px 0; }
    @media only screen and (max-width: 767px) {
      body.contact .cont .form-area table tbody tr th {
        display: block;
        width: 100%;
        padding: 0;
        padding-right: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 11px; } }
    body.contact .cont .form-area table tbody tr th span {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.4;
      letter-spacing: 0.05em;
      font-family: "Zen Maru Gothic", sans-serif;
      font-weight: 700; }
    body.contact .cont .form-area table tbody tr th em {
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.04em;
      line-height: 0.83333333;
      font-weight: 700;
      color: #fff;
      display: inline-block;
      border-radius: 4px;
      background: #EC643B;
      padding: 8px;
      position: absolute;
      right: 40px; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .form-area table tbody tr th em {
          position: static; } }
  body.contact .cont .form-area table tbody tr td {
    width: calc(100% - 320px);
    padding: 16px 0;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.contact .cont .form-area table tbody tr td {
        display: block;
        width: 100%;
        padding: 0; } }
    body.contact .cont .form-area table tbody tr td p {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 500;
      color: #434343; }
    body.contact .cont .form-area table tbody tr td .check-list li {
      position: relative;
      margin-bottom: 16px; }
      body.contact .cont .form-area table tbody tr td .check-list li:last-of-type {
        margin-bottom: 0; }
      body.contact .cont .form-area table tbody tr td .check-list li input[type="checkbox"] {
        width: 1px;
        height: 1px;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0; }
        body.contact .cont .form-area table tbody tr td .check-list li input[type="checkbox"]:checked + label > i:before {
          opacity: 1; }
      body.contact .cont .form-area table tbody tr td .check-list li label {
        display: flex;
        align-items: center;
        padding-left: 6px; }
        body.contact .cont .form-area table tbody tr td .check-list li label i {
          width: 20px;
          height: 20px;
          border-radius: 3px;
          background: #fff;
          border: 2px solid #DDDFE3;
          position: relative;
          margin-right: 14px; }
          body.contact .cont .form-area table tbody tr td .check-list li label i:before {
            content: "";
            width: 20px;
            height: 20px;
            display: inline-block;
            background: url(../images/common/icon_check.svg) center center/cover no-repeat;
            position: absolute;
            top: -2px;
            left: -2px;
            opacity: 0; }
        body.contact .cont .form-area table tbody tr td .check-list li label span {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.05em;
          line-height: 2;
          font-weight: 500; }
    body.contact .cont .form-area table tbody tr td .select-box {
      position: relative; }
      body.contact .cont .form-area table tbody tr td .select-box svg {
        position: absolute;
        top: 50%;
        right: 22px;
        transform: translate(0%, -50%);
        pointer-events: none; }
    body.contact .cont .form-area table tbody tr td select {
      width: 100%;
      height: 48px;
      border-radius: 8px;
      border: 1px solid #BABEBC;
      background: #fff;
      padding: 8px 24px;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 500;
      color: #434343; }
    body.contact .cont .form-area table tbody tr td input[type="text"] {
      width: 100%;
      height: 48px;
      border-radius: 8px;
      border: 1px solid #BABEBC;
      background: #fff;
      padding: 8px 24px;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 500;
      color: #434343; }
      body.contact .cont .form-area table tbody tr td input[type="text"]::placeholder {
        color: #BABEBC; }
    body.contact .cont .form-area table tbody tr td textarea {
      width: 100%;
      height: 360px;
      border-radius: 8px;
      border: 1px solid #BABEBC;
      background: #fff;
      padding: 8px 24px;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 500;
      color: #434343; }
      @media only screen and (max-width: 767px) {
        body.contact .cont .form-area table tbody tr td textarea {
          padding: 16px 24px; } }
      body.contact .cont .form-area table tbody tr td textarea::placeholder {
        color: #BABEBC; }

body.contact .cont .form-area .bottom {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  margin-top: 40px;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    body.contact .cont .form-area .bottom {
      padding: 24px 16px;
      margin-top: 48px; } }
  body.contact .cont .form-area .bottom .c-title {
    color: #42A995;
    display: block;
    margin-bottom: 16px; }
  body.contact .cont .form-area .bottom .c-text01 {
    margin-bottom: 32px; }
    body.contact .cont .form-area .bottom .c-text01 a {
      text-decoration: underline; }
  body.contact .cont .form-area .bottom .agree {
    position: relative;
    width: max-content;
    margin: 0 auto 32px; }
    body.contact .cont .form-area .bottom .agree input[type="checkbox"] {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      top: 0;
      legft: 0; }
      body.contact .cont .form-area .bottom .agree input[type="checkbox"]:checked + label > i:before {
        opacity: 1; }
    body.contact .cont .form-area .bottom .agree label {
      display: flex;
      align-items: center; }
      body.contact .cont .form-area .bottom .agree label i {
        width: 20px;
        height: 20px;
        border-radius: 3px;
        background: #fff;
        border: 2px solid #DDDFE3;
        position: relative;
        margin-right: 14px; }
        body.contact .cont .form-area .bottom .agree label i:before {
          content: "";
          width: 20px;
          height: 20px;
          display: inline-block;
          background: url(../images/common/icon_check.svg) center center/cover no-repeat;
          position: absolute;
          top: -2px;
          left: -2px;
          opacity: 0; }
      body.contact .cont .form-area .bottom .agree label span {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 2;
        font-weight: 500; }
  body.contact .cont .form-area .bottom .c-btn {
    margin: 0 auto; }

body.contact .cont .form-area .next {
  text-align: center;
  margin-top: 48px; }
  body.contact .cont .form-area .next .c-btn {
    margin: 0 auto 24px; }
  body.contact .cont .form-area .next .modify {
    text-decoration: underline;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.05em;
    font-weight: 700; }

body.how-to-use .cont .image {
  margin: 48px auto; }
  @media only screen and (max-width: 767px) {
    body.how-to-use .cont .image {
      margin: 24px auto; } }

body.news_detail .cont .inner {
  max-width: 960px; }

body.news_detail .cont .cate-date {
  display: flex;
  align-items: center;
  margin-bottom: 16px; }
  body.news_detail .cont .cate-date .cate {
    display: inline-block;
    background: #42A995;
    padding: 8px 16px;
    border-radius: 16px;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-right: 16px; }
  body.news_detail .cont .cate-date .date {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.42857143;
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #42A995; }

body.news_detail .cont .c-title02 {
  text-align: left;
  margin-bottom: 48px; }
  @media only screen and (max-width: 767px) {
    body.news_detail .cont .c-title02 {
      margin-bottom: 24px; } }
  body.news_detail .cont .c-title02:after {
    margin-left: 0; }

body.news_detail .cont .thumbnail {
  margin-bottom: 48px; }
  @media only screen and (max-width: 767px) {
    body.news_detail .cont .thumbnail {
      margin-bottom: 24px; } }
  body.news_detail .cont .thumbnail img {
    width: 100%;
    border-radius: 8px; }

body.news_detail .cont .post {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 2; }
  body.news_detail .cont .post p {
    margin-bottom: 1em; }
  body.news_detail .cont .post h2 {
    display: block;
    font-size: 32px;
    font-size: 3.2rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .cont .post h2 {
        font-size: 28px;
        font-size: 2.8rem; } }
  body.news_detail .cont .post h3 {
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .cont .post h3 {
        font-size: 20px;
        font-size: 2rem;
        letter-spacing: 0; } }
  body.news_detail .cont .post h4 {
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    margin-bottom: 16px; }
  body.news_detail .cont .post ul li {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px; }
    body.news_detail .cont .post ul li:before {
      content: "";
      width: 8px;
      height: 7px;
      display: inline-block;
      background: url(../images/common/deco_green.svg) center center/cover no-repeat;
      position: absolute;
      top: 8px;
      left: 8px; }
    body.news_detail .cont .post ul li:last-of-type {
      margin-bottom: 0; }

body.news_detail .cont .pdf-thumbnail {
  display: block;
  max-width: 724px;
  margin: 0 auto; }

body.news_detail .cont .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto 0;
  width: max-content;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.news_detail .cont .nav {
      margin-top: 48px; } }
  body.news_detail .cont .nav .prev, body.news_detail .cont .nav .next {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    line-height: 1.71428571;
    font-weight: 700;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%); }
    body.news_detail .cont .nav .prev span, body.news_detail .cont .nav .next span {
      margin: 0 8px; }
    body.news_detail .cont .nav .prev svg, body.news_detail .cont .nav .next svg {
      position: relative;
      top: 1px; }
  body.news_detail .cont .nav .prev {
    left: -120px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .cont .nav .prev {
        left: -102px; } }
  body.news_detail .cont .nav .next {
    right: -120px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .cont .nav .next {
        right: -102px; } }
  body.news_detail .cont .nav .all {
    width: 200px;
    height: 48px;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.04em; }
    @media only screen and (max-width: 767px) {
      body.news_detail .cont .nav .all {
        width: 105px; } }

body.news .cont .search {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px 0; }
  @media only screen and (max-width: 767px) {
    body.news .cont .search {
      margin-top: 24px; } }
  body.news .cont .search .select-box {
    width: 204px;
    height: 48px;
    position: relative;
    margin-left: 8px; }
    @media only screen and (max-width: 767px) {
      body.news .cont .search .select-box {
        width: 188px;
        margin-left: 6px; } }
    body.news .cont .search .select-box select {
      width: 204px;
      height: 48px;
      border-radius: 56px;
      border: 1px solid #42A995;
      background: #fff;
      padding: 6px 24px 8px;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 500;
      color: #434343; }
      @media only screen and (max-width: 767px) {
        body.news .cont .search .select-box select {
          width: 188px; } }
    body.news .cont .search .select-box svg {
      position: absolute;
      top: 50%;
      right: 29px;
      transform: translate(0%, -50%); }

body.overview .cont {
  text-align: center; }
  body.overview .cont .image {
    margin: 48px auto;
    max-width: 640px; }
  body.overview .cont .c-title03 {
    display: inline-block;
    padding: 8px;
    border-radius: 8px;
    background: #FDFF74;
    margin-top: 48px; }
    @media only screen and (max-width: 767px) {
      body.overview .cont .c-title03 {
        margin-top: 24px; } }
  body.overview .cont strong {
    display: block;
    font-size: 48px;
    font-size: 4.8rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #42A995;
    margin-top: 24px;
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.overview .cont strong {
        font-size: 32px;
        font-size: 3.2rem;
        margin-top: 16px;
        margin-bottom: 8px; } }
  body.overview .cont .text {
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 2;
    font-weight: 500; }
    @media only screen and (max-width: 767px) {
      body.overview .cont .text {
        font-size: 16px;
        font-size: 1.6rem; } }
  body.overview .cont table {
    width: 100%;
    max-width: 880px;
    margin: 24px auto 0;
    border-bottom: 1px solid #BABEBC; }
    @media only screen and (max-width: 767px) {
      body.overview .cont table {
        display: block; } }
    @media only screen and (max-width: 767px) {
      body.overview .cont table tbody {
        display: block; } }
    body.overview .cont table tbody tr {
      border-top: 1px solid #BABEBC; }
      @media only screen and (max-width: 767px) {
        body.overview .cont table tbody tr {
          display: block;
          padding: 16px 8px; } }
      body.overview .cont table tbody tr th {
        padding: 16px 8px;
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 700;
        color: #42A995;
        font-family: "Zen Maru Gothic", sans-serif;
        width: 224px;
        vertical-align: top; }
        @media only screen and (max-width: 767px) {
          body.overview .cont table tbody tr th {
            display: block;
            width: 100%;
            padding: 0;
            margin-bottom: 16px; } }
      body.overview .cont table tbody tr td {
        padding: 16px 0;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 2;
        font-weight: 500;
        color: #434343;
        width: calc(100% - 224px); }
        @media only screen and (max-width: 767px) {
          body.overview .cont table tbody tr td {
            display: block;
            width: 100%;
            padding: 0; } }
        body.overview .cont table tbody tr td p {
          margin-bottom: 16px; }
          body.overview .cont table tbody tr td p:last-child {
            margin-bottom: 0; }
        body.overview .cont table tbody tr td a {
          text-decoration: underline; }
          @media only screen and (max-width: 767px) {
            body.overview .cont table tbody tr td a {
              display: flex;
              align-items: center; } }
          body.overview .cont table tbody tr td a svg {
            position: relative;
            top: 5px; }
            @media only screen and (max-width: 767px) {
              body.overview .cont table tbody tr td a svg {
                top: 1px;
                left: 5px; } }
        body.overview .cont table tbody tr td ul li {
          padding-left: 1.5em;
          position: relative;
          margin-bottom: 8px; }
          body.overview .cont table tbody tr td ul li:last-of-type {
            margin-bottom: 0; }
          body.overview .cont table tbody tr td ul li:before {
            content: "・";
            position: absolute;
            top: 0;
            left: 0.25em; }

body.overview .access {
  padding: 80px 0;
  color: #fff; }
  @media only screen and (max-width: 767px) {
    body.overview .access {
      padding: 48px 0; } }
  body.overview .access .inner {
    max-width: 960px; }
  body.overview .access__col {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      body.overview .access__col {
        margin-top: 24px;
        flex-direction: column; } }
    body.overview .access__col .text {
      width: 42.61363636%; }
      @media only screen and (max-width: 767px) {
        body.overview .access__col .text {
          width: 100%;
          order: 2; } }
      body.overview .access__col .text .c-title {
        margin-bottom: 16px; }
      body.overview .access__col .text ul {
        margin-bottom: 48px; }
        body.overview .access__col .text ul:last-child {
          margin-bottom: 0; }
        body.overview .access__col .text ul li {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: 0.05em;
          line-height: 2;
          font-weight: 500;
          padding-left: 1.5em;
          position: relative;
          margin-bottom: 8px; }
          body.overview .access__col .text ul li:last-of-type {
            margin-bottom: 0; }
          body.overview .access__col .text ul li:before {
            content: "・";
            position: absolute;
            top: 0;
            left: 0.15em; }
    body.overview .access__col .image {
      width: 51.93181818%; }
      @media only screen and (max-width: 767px) {
        body.overview .access__col .image {
          width: 100%;
          margin-bottom: 48px; } }
      body.overview .access__col .image .map {
        aspect-ratio: 457/320;
        margin-bottom: 16px;
        border-radius: 16px;
        overflow: hidden; }
        @media only screen and (max-width: 767px) {
          body.overview .access__col .image .map {
            aspect-ratio: 344/320; } }
        body.overview .access__col .image .map iframe {
          width: 100%;
          height: 100%; }
      body.overview .access__col .image address {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 2;
        font-weight: 500;
        margin-bottom: 8px; }
      body.overview .access__col .image a {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1;
        display: flex;
        align-items: center; }
        body.overview .access__col .image a svg {
          margin-right: 8px; }

body.privacy-policy .cont {
  counter-reset: number 0; }
  body.privacy-policy .cont dl {
    margin-top: 48px; }
    body.privacy-policy .cont dl dt {
      margin-bottom: 16px; }
      body.privacy-policy .cont dl dt .c-title03 {
        color: #42A995;
        padding-left: 1.6em;
        position: relative; }
        body.privacy-policy .cont dl dt .c-title03:before {
          counter-increment: number 1;
          content: counter(number) ".";
          position: absolute;
          top: 0;
          left: 0.5em; }
    body.privacy-policy .cont dl dd .c-title {
      margin-bottom: 8px; }
    body.privacy-policy .cont dl dd .c-text01 {
      margin-bottom: 16px; }
      body.privacy-policy .cont dl dd .c-text01:last-child {
        margin-bottom: 0; }
    body.privacy-policy .cont dl dd blockquote {
      background: #fff;
      padding: 16px;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 700; }

body.recruit .cont .text {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.7;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 48px 0; }
  @media only screen and (max-width: 767px) {
    body.recruit .cont .text {
      line-height: 2;
      text-align: left;
      margin: 24px 0; } }

body.recruit .cont .point {
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    body.recruit .cont .point {
      display: block; } }
  body.recruit .cont .point dl {
    width: 48.828125%;
    border-radius: 16px;
    background: #fff;
    padding: 24px; }
    @media only screen and (max-width: 767px) {
      body.recruit .cont .point dl {
        width: 100%;
        margin-bottom: 24px; } }
    body.recruit .cont .point dl dt i {
      width: 64px;
      display: block;
      margin: 0 auto 16px; }
    body.recruit .cont .point dl dt .c-title03 {
      text-align: center;
      color: #42A995;
      padding-bottom: 16px;
      position: relative;
      margin-bottom: 16px; }
      body.recruit .cont .point dl dt .c-title03:after {
        content: "";
        width: 100%;
        height: 2px;
        display: block;
        background-image: repeating-linear-gradient(90deg, #42a995, #42a995 3px, transparent 3px, transparent 7px), repeating-linear-gradient(180deg, #42a995, #42a995 3px, transparent 3px, transparent 7px), repeating-linear-gradient(90deg, #42a995, #42a995 3px, transparent 3px, transparent 7px), repeating-linear-gradient(180deg, #42a995, #42a995 3px, transparent 3px, transparent 7px);
        background-position: left top, right top, left bottom, left top;
        background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
        background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
        position: absolute;
        bottom: 0;
        left: 0; }

body.recruit .cont__box {
  margin-top: 80px; }
  @media only screen and (max-width: 767px) {
    body.recruit .cont__box {
      margin-top: 48px; } }
  body.recruit .cont__box .c-title03 {
    text-align: center;
    margin-bottom: 24px; }
  body.recruit .cont__box table {
    width: 100%;
    max-width: 880px;
    margin: 24px auto 0;
    border-bottom: 1px solid #BABEBC; }
    @media only screen and (max-width: 767px) {
      body.recruit .cont__box table {
        display: block; } }
    @media only screen and (max-width: 767px) {
      body.recruit .cont__box table tbody {
        display: block; } }
    body.recruit .cont__box table tbody tr {
      border-top: 1px solid #BABEBC; }
      @media only screen and (max-width: 767px) {
        body.recruit .cont__box table tbody tr {
          display: block;
          padding: 16px 8px; } }
      body.recruit .cont__box table tbody tr th {
        padding: 16px 8px;
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
        font-weight: 700;
        color: #42A995;
        font-family: "Zen Maru Gothic", sans-serif;
        width: 224px;
        vertical-align: top; }
        @media only screen and (max-width: 767px) {
          body.recruit .cont__box table tbody tr th {
            display: block;
            width: 100%;
            padding: 0;
            margin-bottom: 16px; } }
      body.recruit .cont__box table tbody tr td {
        padding: 16px 0;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 2;
        font-weight: 500;
        color: #434343;
        width: calc(100% - 224px); }
        @media only screen and (max-width: 767px) {
          body.recruit .cont__box table tbody tr td {
            display: block;
            width: 100%;
            padding: 0; } }
        body.recruit .cont__box table tbody tr td em {
          color: #42A995; }
        body.recruit .cont__box table tbody tr td strong {
          font-weight: 700; }
        body.recruit .cont__box table tbody tr td p {
          margin-bottom: 16px; }
          body.recruit .cont__box table tbody tr td p:last-child {
            margin-bottom: 0; }
        body.recruit .cont__box table tbody tr td a {
          text-decoration: underline; }
          @media only screen and (max-width: 767px) {
            body.recruit .cont__box table tbody tr td a {
              display: flex;
              align-items: center; } }
          body.recruit .cont__box table tbody tr td a svg {
            position: relative;
            top: 5px; }
            @media only screen and (max-width: 767px) {
              body.recruit .cont__box table tbody tr td a svg {
                top: 1px;
                left: 5px; } }
        @media only screen and (max-width: 767px) {
          body.recruit .cont__box table tbody tr td .c-btn {
            margin: 0 auto; } }
        body.recruit .cont__box table tbody tr td ul li {
          padding-left: 1.5em;
          position: relative;
          margin-bottom: 8px; }
          body.recruit .cont__box table tbody tr td ul li:last-of-type {
            margin-bottom: 0; }
          body.recruit .cont__box table tbody tr td ul li:before {
            content: "・";
            position: absolute;
            top: 0;
            left: 0.25em; }

body.service .cont .inner {
  max-width: 960px; }

body.service .cont .c-title02 {
  margin-bottom: 48px; }
  @media only screen and (max-width: 767px) {
    body.service .cont .c-title02 {
      margin-bottom: 24px; } }

body.service .cont dl {
  margin-bottom: 32px; }
  body.service .cont dl:last-of-type {
    margin-bottom: 0; }
  body.service .cont dl dt {
    margin-bottom: 16px; }
  body.service .cont dl dd > div .c-title {
    padding: 8px;
    background: #FDFF74;
    border-radius: 8px;
    margin-right: 4px;
    display: inline-block;
    margin-bottom: 8px; }

body.service .support {
  padding: 80px 0;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.service .support {
      padding: 48px 0; } }
  body.service .support .inner {
    max-width: 1104px;
    position: relative; }
  body.service .support .bubble {
    position: absolute; }
  body.service .support .bubble-01 {
    width: 450px;
    top: 177px;
    right: -186px; }
    @media only screen and (max-width: 767px) {
      body.service .support .bubble-01 {
        width: 265px;
        top: 184px;
        right: -169px; } }
  body.service .support .bubble-02 {
    width: 289px;
    left: -96px;
    bottom: 289px; }
    @media only screen and (max-width: 767px) {
      body.service .support .bubble-02 {
        width: 289px;
        bottom: 459px;
        left: -110px; } }
  body.service .support .bubble-03 {
    width: 124px;
    top: 636px;
    right: 106px; }
  body.service .support__list {
    margin: 48px 0;
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      body.service .support__list {
        margin-top: 24px;
        margin-bottom: 24px; } }
    body.service .support__list > li {
      background: #fff;
      width: 31.73828125%;
      margin-top: 2.39257812%;
      margin-right: 2.39257812%;
      border-radius: 16px;
      overflow: hidden; }
      @media only screen and (max-width: 767px) {
        body.service .support__list > li {
          width: 100%;
          margin: 0 0 24px; } }
      @media only screen and (max-width: 767px) {
        body.service .support__list > li:last-of-type {
          margin-bottom: 0; } }
      body.service .support__list > li:nth-of-type(-n + 2) {
        width: 48.828125%;
        margin-right: 2.34375%;
        margin-top: 0; }
        @media only screen and (max-width: 767px) {
          body.service .support__list > li:nth-of-type(-n + 2) {
            width: 100%;
            margin: 0 0 24px; } }
      body.service .support__list > li:nth-of-type(2) {
        margin-right: 0; }
      body.service .support__list > li:nth-of-type(5) {
        margin-right: 0; }
      body.service .support__list > li:nth-of-type(8) {
        margin-right: 0; }
      body.service .support__list > li .image {
        height: 200px; }
        body.service .support__list > li .image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center center; }
      body.service .support__list > li .text {
        padding: 24px; }
        body.service .support__list > li .text .c-title03 {
          text-align: center;
          color: #42A995;
          padding-bottom: 16px;
          position: relative;
          margin-bottom: 16px; }
          body.service .support__list > li .text .c-title03:after {
            content: "";
            width: 100%;
            height: 2px;
            display: block;
            background-image: repeating-linear-gradient(90deg, #42a995, #42a995 3px, transparent 3px, transparent 7px), repeating-linear-gradient(180deg, #42a995, #42a995 3px, transparent 3px, transparent 7px), repeating-linear-gradient(90deg, #42a995, #42a995 3px, transparent 3px, transparent 7px), repeating-linear-gradient(180deg, #42a995, #42a995 3px, transparent 3px, transparent 7px);
            background-position: left top, right top, left bottom, left top;
            background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
            background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
            position: absolute;
            bottom: 0;
            left: 0; }

body.top .intro {
  position: relative;
  padding-top: 162px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .intro {
      padding-top: 80px; } }
  body.top .intro:before {
    content: "";
    width: calc(100% - 24px);
    height: 100%;
    background: #F6F6F1;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 0 162px 0;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      body.top .intro:before {
        width: calc(100% - 16px);
        border-radius: 0 0 64px 0; } }
  body.top .intro .inner {
    position: relative;
    z-index: +1; }

body.top .main-visual {
  padding: 48px 0;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .main-visual {
      padding: 32px 0; } }
  body.top .main-visual .bubble {
    position: absolute; }
  body.top .main-visual .bubble-01 {
    width: 751px;
    top: -63px;
    left: 145px; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual .bubble-01 {
        width: 295px;
        left: -96px;
        top: auto;
        bottom: -10px; } }
  body.top .main-visual .bubble-02 {
    width: 433px;
    left: -78px;
    bottom: -206px; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual .bubble-02 {
        width: 113px;
        left: 8px;
        bottom: auto;
        top: 38px;
        z-index: +2; } }
  body.top .main-visual .bubble-03 {
    width: 320px;
    right: 296px;
    bottom: -135px;
    z-index: +2; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual .bubble-03 {
        width: 150px;
        right: 61px;
        bottom: auto;
        top: 292px; } }
  body.top .main-visual .inner {
    padding: 0 84px 0 60px;
    max-width: 1360px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative; }
    @media only screen and (max-width: 1360px) {
      body.top .main-visual .inner {
        padding: 0 6.17647059vw 0 4.41176471vw; } }
    @media only screen and (max-width: 767px) {
      body.top .main-visual .inner {
        flex-direction: column;
        padding: 0 32px 0 16px; } }
  body.top .main-visual .text {
    width: 50%;
    padding-top: 56px;
    position: relative; }
    @media only screen and (max-width: 1360px) {
      body.top .main-visual .text {
        padding-top: 4.11764706vw; } }
    @media only screen and (max-width: 767px) {
      body.top .main-visual .text {
        width: 100%;
        order: 2; } }
    body.top .main-visual .text .catch {
      font-size: 64px;
      font-size: 6.4rem;
      letter-spacing: 0.05em;
      line-height: 1.5;
      font-weight: 600;
      font-family: "Zen Maru Gothic", sans-serif;
      display: block;
      margin-bottom: 32px; }
      @media only screen and (max-width: 1360px) {
        body.top .main-visual .text .catch {
          font-size: 4.70588235vw;
          margin-bottom: 2.35294118vw; } }
      @media only screen and (max-width: 767px) {
        body.top .main-visual .text .catch {
          font-size: 36px;
          font-size: 3.6rem;
          padding-top: 16px;
          margin-bottom: 24px; } }
      body.top .main-visual .text .catch span {
        display: inline-block;
        position: relative; }
        body.top .main-visual .text .catch span:first-of-type {
          margin-bottom: 8px; }
          @media only screen and (max-width: 1360px) {
            body.top .main-visual .text .catch span:first-of-type {
              margin-bottom: 0.58823529vw; } }
          @media only screen and (max-width: 767px) {
            body.top .main-visual .text .catch span:first-of-type {
              margin-bottom: 8px; } }
        body.top .main-visual .text .catch span:after {
          content: "";
          width: 100%;
          height: 4px;
          display: block;
          background-image: radial-gradient(circle, #42a995 2px, transparent 2px);
          background-position: left bottom;
          background-repeat: repeat-x;
          background-size: 18px 4px;
          position: absolute;
          left: 0;
          bottom: 0; }
          @media only screen and (max-width: 1360px) {
            body.top .main-visual .text .catch span:after {
              height: 0.29411765vw;
              background-image: radial-gradient(circle, #42a995 0.14706vw, transparent 0.14706vw);
              background-size: 1.32352941vw 0.29411765vw; } }
          @media only screen and (max-width: 767px) {
            body.top .main-visual .text .catch span:after {
              height: 3px;
              background-image: radial-gradient(circle, #42a995 1.5px, transparent 1.5px);
              background-size: 14px 3px; } }
        body.top .main-visual .text .catch span em {
          font-size: 72px;
          font-size: 7.2rem;
          color: #42A995; }
          @media only screen and (max-width: 1360px) {
            body.top .main-visual .text .catch span em {
              font-size: 5.29411765vw; } }
          @media only screen and (max-width: 767px) {
            body.top .main-visual .text .catch span em {
              font-size: 40px;
              font-size: 4rem; } }
    body.top .main-visual .text p {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.05em;
      line-height: 2;
      font-weight: 500;
      margin-bottom: 18px;
      max-width: 560px; }
      @media only screen and (max-width: 1360px) {
        body.top .main-visual .text p {
          font-size: 1.47058824vw;
          margin-bottom: 1.32352941vw;
          max-width: 41.17647059vw; } }
      @media only screen and (max-width: 767px) {
        body.top .main-visual .text p {
          font-size: 16px;
          font-size: 1.6rem;
          margin-bottom: 16px;
          max-width: 100%; } }
      @media only screen and (max-width: 767px) {
        body.top .main-visual .text p:last-child {
          margin-bottom: 0; } }
  body.top .main-visual .images {
    width: 46.05263158%;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual .images {
        width: 100%; } }
    body.top .main-visual .images .image {
      border-radius: 16px;
      overflow: hidden; }
      @media only screen and (max-width: 1360px) {
        body.top .main-visual .images .image {
          border-radius: 1.17647059vw; } }
      @media only screen and (max-width: 767px) {
        body.top .main-visual .images .image {
          border-radius: 16px; } }
    @media only screen and (max-width: 767px) {
      body.top .main-visual .images .image-01 {
        width: 80.42813456%;
        margin-left: auto; } }
    body.top .main-visual .images .image-02 {
      width: 71.42857143%;
      margin-top: -240px;
      margin-left: -200px; }
      @media only screen and (max-width: 1360px) {
        body.top .main-visual .images .image-02 {
          margin-top: -17.64705882vw;
          margin-left: -14.70588235vw; } }
      @media only screen and (max-width: 767px) {
        body.top .main-visual .images .image-02 {
          width: 57.79816514%;
          margin-top: -110px;
          margin-left: 0; } }

body.top .about-us {
  padding: 64px 0;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .about-us {
      padding: 32px 0 64px; } }
  body.top .about-us .bubble {
    position: absolute; }
  body.top .about-us .bubble-01 {
    width: 124px;
    left: 466px;
    left: 386px;
    top: 33px; }
    @media only screen and (max-width: 767px) {
      body.top .about-us .bubble-01 {
        width: 124px;
        left: auto;
        right: 30px;
        top: 88px;
        z-index: +1; } }
  body.top .about-us .bubble-02 {
    width: 560px;
    left: 240px;
    left: 160px;
    bottom: -11px; }
    @media only screen and (max-width: 767px) {
      body.top .about-us .bubble-02 {
        width: 325px;
        left: -137px;
        top: 266px; } }
  body.top .about-us .inner {
    max-width: 1206px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .about-us .inner {
        display: block; } }
  body.top .about-us .image {
    width: 49.73357016%;
    margin-left: -10.39076377%;
    border-radius: 0 16px 16px 0;
    overflow: hidden;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .about-us .image {
        width: calc(100% + 16px);
        margin-left: -16px;
        margin-bottom: 24px; } }
  body.top .about-us .text {
    width: 56.8383659%;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .about-us .text {
        width: 100%;
        padding-right: 16px; } }
    body.top .about-us .text .c-title02 {
      text-align: left;
      margin-bottom: 24px; }
      body.top .about-us .text .c-title02:after {
        margin-left: 0; }
    body.top .about-us .text .c-text01 {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 2;
      letter-spacing: 0.05em;
      margin-bottom: 16px; }
      @media only screen and (max-width: 767px) {
        body.top .about-us .text .c-text01 {
          font-size: 16px;
          font-size: 1.6rem; } }
    body.top .about-us .text .c-more {
      margin-top: 38px; }
      @media only screen and (max-width: 767px) {
        body.top .about-us .text .c-more {
          margin: 40px auto 0; } }

body.top .philosophy {
  padding: 56px 0;
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .philosophy {
      padding: 48px 0; } }
  body.top .philosophy .bubble {
    position: absolute; }
  body.top .philosophy .bubble-01 {
    width: 467px;
    top: -24px;
    right: -274px; }
    @media only screen and (max-width: 767px) {
      body.top .philosophy .bubble-01 {
        width: 278px;
        right: -162px;
        top: 16px; } }
  body.top .philosophy .bubble-02 {
    width: 526px;
    left: -215px;
    bottom: 453px; }
    @media only screen and (max-width: 767px) {
      body.top .philosophy .bubble-02 {
        width: 205px;
        left: -80px;
        bottom: auto;
        top: 930px; } }
  body.top .philosophy .bubble-03 {
    width: 201px;
    left: -200px;
    bottom: 345px; }
    @media only screen and (max-width: 767px) {
      body.top .philosophy .bubble-03 {
        width: 148px;
        left: auto;
        right: -48px;
        bottom: 551px; } }
  body.top .philosophy .inner {
    max-width: 1104px;
    position: relative; }
  body.top .philosophy__col {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.top .philosophy__col {
        display: block; } }
    @media only screen and (max-width: 767px) {
      body.top .philosophy__col.first {
        margin-top: 24px; } }
    body.top .philosophy__col .text {
      width: 46.875%; }
      @media only screen and (max-width: 767px) {
        body.top .philosophy__col .text {
          width: 100%; } }
      body.top .philosophy__col .text .c-title02 {
        text-align: left;
        margin-bottom: 24px; }
        @media only screen and (max-width: 767px) {
          body.top .philosophy__col .text .c-title02 {
            margin-bottom: 16px; } }
        body.top .philosophy__col .text .c-title02:after {
          margin-left: 0; }
      body.top .philosophy__col .text .c-text01 {
        color: #fff;
        margin-bottom: 20px; }
        @media only screen and (max-width: 767px) {
          body.top .philosophy__col .text .c-text01 {
            margin-bottom: 16px; } }
        body.top .philosophy__col .text .c-text01:last-child {
          margin-bottom: 0; }
    body.top .philosophy__col .image {
      width: 46.875%;
      border-radius: 16px;
      overflow: hidden; }
      @media only screen and (max-width: 767px) {
        body.top .philosophy__col .image {
          width: 100%;
          margin-bottom: 16px; } }
  body.top .philosophy .c-more {
    margin: 48px auto 0; }

body.top .cont .c-title02 {
  margin-bottom: 32px; }
  @media only screen and (max-width: 767px) {
    body.top .cont .c-title02 {
      margin-bottom: 24px; } }

body.top .cont .c-more {
  margin: 32px auto 0; }
  @media only screen and (max-width: 767px) {
    body.top .cont .c-more {
      margin-top: 48px; } }
