@charset "UTF-8";

/*===================================
 全体
===================================*/
/*----------------------------------
 メインフォント
----------------------------------*/
@font-face {
  font-family: "main-font";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Noto Sans CJK JP Regular"), url("../font/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../font/NotoSansCJKjp-Regular.woff") format("woff");
}

/*----------------------------------
 Noto Sans CJK JP
----------------------------------*/
@font-face {
  font-family: "NotoSans-Light";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Noto Sans CJK JP Light"), url("../font/NotoSansCJKJP-Light.woff2") format("woff2"), url("../font/NotoSansCJKJP-Light.woff") format("woff");
}

@font-face {
  font-family: "NotoSans-DemiLight";
  font-style: normal;
  font-weight: 350;
  font-display: swap;
  src: local("Noto Sans CJK JP DemiLight"), url("../font/NotoSansCJKjp-DemiLight.woff2") format("woff2"), url("../font/NotoSansCJKjp-DemiLight.woff") format("woff");
}

@font-face {
  font-family: "NotoSans-Medium";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Noto Sans CJK JP Medium"), url("../font/NotoSansCJKjp-Medium.woff2") format("woff2"), url("../font/NotoSansCJKjp-Medium.woff") format("woff");
}

@font-face {
  font-family: "NotoSans-Medium";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("Noto Sans CJK JP Medium"), url("../font/NotoSansCJKjp-Medium.woff2") format("woff2"), url("../font/NotoSansCJKjp-Medium.woff") format("woff");
}

@font-face {
  font-family: "NotoSans-Bold";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Noto Sans CJK JP Bold"), url("../font/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../font/NotoSansCJKjp-Bold.woff") format("woff");
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  color: #000;
  font-family: "main-font", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0em;
  line-height: 1.4666666667;
  padding: 45px 0 0 0;
  /* ------ スクロールバーを非表示 ------ */
  -ms-overflow-style: none;
}

@media screen and (min-width: 1260px) {
  body {
    font-size: 1.5rem;
    line-height: 1.5333333333;
    padding: 90px 0 0 0;
  }
}

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

.preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

a {
  color: #000;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  opacity: 0.75;
}

strong {
  font-weight: 400;
}

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

main {
  position: relative;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

*:focus {
  outline: none;
}

.iblock {
  display: inline-block;
}

/* 電話番号リンク（PC無効） */
@media screen and (min-width: 1025px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*----------------------------------
 inner（ベース）
----------------------------------*/
/* ------ .l-inner 共通 ------ */
div[class^=l-inner] {
  position: relative;
  height: 100%;
  padding: 0 27px 0 27px;
}

@media screen and (min-width: 600px) {
  div[class^=l-inner] {
    padding: 0 40px;
  }
}

/* ------ .l-inner 個別 ------ */
.l-inner {
  width: 100%;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: #fff;
  border-bottom: 1px solid #b8b8b8;
  width: 100%;
  height: 45px;
}

@media screen and (min-width: 1260px) {
  header {
    height: 90px;
  }
}

header .l-inner {
  padding-left: 6px;
  padding-right: 0;
}

@media screen and (min-width: 1260px) {
  header .l-inner {
    max-width: 1260px;
    padding-top: 6px;
    padding-right: 28px;
    padding-bottom: 22px;
    padding-left: 20px;
  }
}

.l-header__txt {
  display: none;
}

@media screen and (min-width: 1260px) {
  .l-header__txt {
    display: block;
    font-family: "NotoSans-Light", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.75;
  }
}

.l-header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 1260px) {
  .l-header__body {
    max-width: 1260px;
  }
}

.l-header__logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.l-header__logo img {
  display: block;
  width: 185px;
  max-width: 185px;
}

@media screen and (min-width: 1260px) {
  .l-header__logo img {
    width: 282px;
    max-width: 282px;
  }
}

/* 兵庫県公安委員会 番号 */
.l-header__num {
  font-family: "NotoSans-Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 0.7rem;
  line-height: 1.1538461538;
  margin-left: 12px;
  margin-bottom: 1px;
}

@media screen and (min-width: 1260px) {
  .l-header__num {
    font-size: 1rem;
    line-height: 1.2;
    margin-left: 17px;
    margin-bottom: 4px;
  }
}

.l-header__num span {
  letter-spacing: 0.065em;
}

@media screen and (min-width: 1260px) {
  .l-header__num span {
    letter-spacing: 0.13em;
  }
}

/* ------ フリーダイヤルエリア ------ */
.l-header-info {
  display: none;
}

@media screen and (min-width: 1260px) {
  .l-header-info {
    display: block;
    margin-top: -28px;
    margin-left: auto;
  }

  .l-header-info__txt {
    background: -webkit-gradient(linear, left top, right top, from(rgb(169, 166, 208)), color-stop(98.59%, rgb(238, 155, 137)));
    background: linear-gradient(90deg, rgb(169, 166, 208) 0%, rgb(238, 155, 137) 98.59%);
    color: #fff;
    font-family: "NotoSans-Medium", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.4615384615;
    text-align: center;
    padding: 2px 6px;
  }

  .l-header-info__tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 4px;
  }

  .tel-freedial__logo {
    -webkit-transition: none;
    transition: none;
  }
}

/*----------------------------------
 下層ページ共通
----------------------------------*/
.l-lower-inner {
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (min-width: 600px) {
  .l-lower-inner {
    max-width: calc(1024px + (40px * 2));
    padding: 0 40px;
  }
}

/*----------------------------------
 ページタイトル
----------------------------------*/
.page__title-area {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: 85px;
}

@media screen and (min-width: 600px) {
  .page__title-area {
    height: 217px;
  }
}

.page__title-area .l-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 600px) {
  .page__title-area .l-inner {
    max-width: calc((1260px) + (40px * 2));
  }
}

.page__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-align: center;
  width: 95%;
}

@media screen and (min-width: 600px) {
  .page__title {
    font-size: 4rem;
  }
}

footer {
  background-color: #f7f6f6;
  padding: 22px 0;
}

@media screen and (min-width: 1025px) {
  footer {
    padding: 46px 0;
  }
}

footer .l-inner {
  padding: 0 10px;
}

@media screen and (min-width: 1025px) {
  footer .l-inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 32% 2% auto;
    grid-template-columns: 32% auto;
    -ms-grid-rows: 1fr 0 0fr;
    grid-template-rows: 1fr 0fr;
    grid-template-areas: "area-01 area-02" "area-03 area-03";
    gap: 0 2%;
    max-width: calc(1140px + (40px * 2));
    padding: 0 40px;
  }
}

.l-footer-info {
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .l-footer-info {
    grid-area: area-01;
    text-align: left;
  }
}

.l-footer__logo {
  display: inline-block;
}

.l-footer__logo img {
  display: block;
  width: 282px;
}

.l-footer-address {
  text-align: center;
  margin-top: 4px;
}

@media screen and (min-width: 1025px) {
  .l-footer-address {
    text-align: left;
    padding-left: 10px;
  }
}

.l-footer-address__txt01 {
  font-family: "NotoSans-Medium", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8666666667;
}

@media screen and (min-width: 1025px) {
  .l-footer-address__txt01 {
    line-height: 1.8666666667;
  }
}

.l-footer-address__txt02 {
  font-size: 1.2rem;
  line-height: 1.9166666667;
}

@media screen and (min-width: 1025px) {
  .l-footer-address__txt02 {
    line-height: 1.9166666667;
  }
}

.l-footer__num {
  font-size: 1rem;
  line-height: 2.3;
  margin-top: 10px;
}

@media screen and (min-width: 1025px) {
  .l-footer__num {
    line-height: 2.3;
    margin-top: 10px;
  }
}

.l-footer-menu {
  display: none;
}

@media screen and (min-width: 1025px) {
  .l-footer-menu {
    display: -ms-grid;
    display: grid;
    grid-area: area-02;
    -ms-grid-columns: auto 0 auto 0 auto 0 auto 0 auto 0 auto;
    grid-template-columns: repeat(6, auto);
    -ms-grid-rows: auto;
    grid-template-rows: repeat(1, auto);
    gap: 5% 0;
  }

  .l-footer-menu>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .l-footer-menu>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .l-footer-menu>*:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }

  .l-footer-menu>*:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }

  .l-footer-menu>*:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
  }

  .l-footer-menu>*:nth-child(6) {
    -ms-grid-row: 1;
    -ms-grid-column: 11;
  }
}

@media screen and (min-width: 1025px) {
  .l-footer-menu-box .l-footer-menu-box:nth-child(n+2) {
    margin-top: 18px;
  }

  .l-footer-menu__head {
    display: block;
    font-family: "NotoSans-Medium", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.7692307692;
  }

  .l-footer-menu__head:nth-child(n+2) {
    margin-top: 18px;
  }

  .l-footer-menu-list {
    margin-left: 5px;
  }

  .l-footer-menu-list__link {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 2.0833333333;
    padding-left: 8px;
  }

  .l-footer-menu-list__link::before {
    position: absolute;
    top: 13px;
    left: 0;
    -webkit-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
    content: "";
    background: url("../images/common/footer_menu_arw.svg") no-repeat center center/contain;
    width: 5px;
    height: 7px;
  }
}

.l-footer-copyright__body {
  margin-top: 37px;
  padding: 0 13px;
}

@media screen and (min-width: 1025px) {
  .l-footer-copyright__body {
    grid-area: area-03;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 93px;
    padding: 0 13px;
  }
}

@media screen and (min-width: 1025px) {
  .l-footer-info {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .l-footer-menu {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .l-footer-copyright__body {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}

.l-footer-copyright__body .l-footer-menu-list__link {
  display: none;
}

@media screen and (min-width: 1025px) {
  .l-footer-copyright__body .l-footer-menu-list__link {
    display: inline-block;
  }
}

.l-footer-copyright {
  display: block;
  font-size: 1.1rem;
  line-height: 1.7727272727;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .l-footer-copyright {
    position: relative;
    right: -17px;
    font-size: 1.1rem;
    line-height: 1.7272727273;
    text-align: left;
  }
}

/*----------------------------------
 各ボタン
----------------------------------*/
/* ------ 基本設定（全ボタン共通） ------ */
.c-btn-base {
  position: relative;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  width: 100%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  max-width: 230px;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .c-btn-base {
    border-radius: 6px;
    max-width: 300px;
  }
}

.c-btn-base__link {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-family: "NotoSans-DemiLight", sans-serif;
  font-style: normal;
  font-weight: 350;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.1em;
  width: 100%;
  height: 100%;
  padding: 9px 10px;
}

@media screen and (min-width: 600px) {
  .c-btn-base__link {
    font-size: 1.9rem;
    line-height: 1.5789473684;
    letter-spacing: 0.2em;
    padding: 15px 10px;
  }
}

.c-btn-base__link:hover {
  opacity: 1;
}

/* 矢印 */
.c-btn-icon .c-btn-base__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 3;
  display: block;
  -webkit-transform: translateY(-50%) translateX(0) rotate(45deg);
  transform: translateY(-50%) translateX(0) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 10px;
  height: 10px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (min-width: 600px) {
  .c-btn-icon .c-btn-base__link::after {
    right: 28px;
  }
}

/* 単色 */
.c-btn-normal {
  background-color: #a69ec8;
}

.c-btn-normal:hover {
  opacity: 0.3;
}

/* グラデーション */
.c-btn-gradient {
  background: transparent;
}

.c-btn-gradient::before,
.c-btn-gradient::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-btn-gradient::before {
  z-index: 2;
  content: "";
  background: linear-gradient(135deg, rgb(169, 166, 208) 0%, rgb(238, 155, 137) 98.59%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.c-btn-gradient::after {
  z-index: 1;
  content: "";
  background: linear-gradient(135deg, rgb(99, 102, 165) 0%, rgb(216, 85, 78) 98.77%);
}

.c-btn-gradient:hover::before {
  opacity: 0;
}

/*----------------------------------
 ページトップへ
----------------------------------*/
@media screen and (max-width: 1024px) {
  .c-btn-pagetop {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .c-btn-pagetop {
    display: block;
    position: fixed;
    z-index: 998;
    right: 48px;
    bottom: -100px;
  }
}

@media screen and (min-width: 1025px) {
  .c-btn-pagetop img {
    width: 75px;
    height: 75px;
  }
}

.c-gnav,
.c-gnav-sub {
  display: none;
}

@media screen and (min-width: 1260px) {
  .c-gnav-wrap {
    margin-top: -19px;
    margin-left: 10.1%;
  }

  /* ------ 下段メニュー ------ */
  .c-gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    margin-top: 11px;
  }

  .c-gnav__item {
    height: 100%;
    cursor: pointer;
  }

  .c-gnav__item:nth-child(n+2) {
    margin-left: 30px;
  }

  .c-gnav__name {
    font-family: "NotoSans-Medium", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }

  /* ------ 上段メニュー ------ */
  .c-gnav-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    margin-right: 12px;
  }

  .c-gnav-sub__item {
    color: #595757;
    font-size: 1.2rem;
    line-height: 1.75;
  }

  .c-gnav-sub__item:nth-child(n+2) {
    margin-left: 38px;
  }

  .c-gnav-sub__name {
    position: relative;
  }

  .c-gnav-sub__name::after {
    position: absolute;
    top: 52%;
    right: -10px;
    -webkit-transform: translateY(-50%) translateX(0);
    transform: translateY(-50%) translateX(0);
    display: block;
    content: "";
    background: url("../images/common/gnav_sub_arw.svg") no-repeat center center/contain;
    width: 5px;
    height: 7px;
  }
}

.c-drawer-btn {
  position: relative;
  z-index: 1000;
  background-color: #fff;
  width: 44px;
  height: 44px;
  margin-left: auto;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
  /* ------ オープン時 ☓ボタン ------ */
  /* 真ん中の棒は非表示 */
}

@media screen and (min-width: 1260px) {
  .c-drawer-btn {
    display: none;
  }
}

.c-drawer-btn span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateY(0) translateX(-50%);
  transform: translateY(0) translateX(-50%);
  background: #000;
  width: 22px;
  height: 2px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.c-drawer-btn span:nth-of-type(1) {
  top: 13px;
}

.c-drawer-btn span:nth-of-type(2) {
  top: 21px;
}

.c-drawer-btn span:nth-of-type(3) {
  top: 29px;
}

.c-drawer-btn.active {
  background: #000;
}

.c-drawer-btn.active span {
  background: #fff;
}

.c-drawer-btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(7px) translateX(-11px) rotate(-45deg);
  transform: translateY(7px) translateX(-11px) rotate(-45deg);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.c-drawer-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.c-drawer-btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) translateX(-11px) rotate(45deg);
  transform: translateY(-9px) translateX(-11px) rotate(45deg);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

/* メニュー */
.c-drawer-menu {
  position: absolute;
  top: 45px;
  right: 0;
  z-index: 1001;
  background: #a6a3ca;
  width: 81.11%;
  max-width: 292px;
  -webkit-transform: translateY(0) translateX(100%);
  transform: translateY(0) translateX(100%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  /* ------ オープン時 ------ */
}

.c-drawer-menu.open {
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.c-drawer-menu__body {
  height: 100vh;
  padding-top: 18px;
  padding-right: 10px;
  padding-bottom: 90px;
  padding-left: 20px;
}

.c-drawer-menu__list {
  overflow-y: scroll;
  height: 100%;
  /* ------ スクロールバー有効のまま非表示 ------ */
  /* Chrome, Safari */
  /* IE, Edge */
  -ms-overflow-style: none;
  /* Firefox */
  scrollbar-width: none;
}

.c-drawer-menu__list::-webkit-scrollbar {
  display: none;
}

.c-drawer-menu__item {
  position: relative;
  border-top: 1px solid #fff;
}

.c-drawer-menu__item::after {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0);
  display: block;
  content: "";
  background: url("../images/common/drawer_arw.svg") no-repeat center center/contain;
  width: 9px;
  height: 19px;
}

.c-drawer-menu__item:nth-last-child(2) {
  border-bottom: 1px solid #fff;
}

.c-drawer-menu__name {
  font-family: "NotoSans-Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
}

.c-drawer-menu__name,
.c-drawer-menu-last__name {
  position: relative;
  display: block;
  color: #fff;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  padding: 14px 10px;
}

.c-drawer-menu__name::before,
.c-drawer-menu__name::after,
.c-drawer-menu-last__name::before,
.c-drawer-menu-last__name::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.c-drawer-menu__name::before,
.c-drawer-menu-last__name::before {
  margin-top: calc((1 - 1.5333333333) * 0.5em);
}

.c-drawer-menu__name::after,
.c-drawer-menu-last__name::after {
  margin-bottom: calc((1 - 1.5333333333) * 0.5em);
}

/* プライバシーポリシー */
.c-drawer-menu-last__item {
  margin-top: 30px;
}

.c-drawer-menu-last__name {
  font-size: 1.3rem;
  padding-top: 0;
  padding-bottom: 0;
}

/*----------------------------------
 各タイトル、見出し
----------------------------------*/
.c-sec__title {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.5333333333;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-align: center;
  /* SP：装飾用の横線線 */
}

@media screen and (min-width: 600px) {
  .c-sec__title {
    font-size: 4rem;
    line-height: 1.5333333333;
  }
}

.c-sec__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateY(0) translateX(-50%);
  transform: translateY(0) translateX(-50%);
  display: block;
  content: "";
  background-color: #d89990;
  width: 23px;
  height: 2px;
}

@media screen and (min-width: 600px) {
  .c-sec__title::after {
    display: none;
  }
}

/*----------------------------------
 パンくず
----------------------------------*/
.breadcrumb-wrap {
  position: relative;
  z-index: 1;
  background-color: #f7f6f6;
  white-space: nowrap;
  overflow-x: scroll;
  width: 100%;
  max-width: calc((1260px) + (40px * 2));
  margin: 0 auto;
  padding: 1px 10px;
}

@media screen and (min-width: 600px) {
  .breadcrumb-wrap {
    background-color: transparent;
    max-width: 1266px;
    overflow-x: auto;
    padding: 10px 27px;
  }
}

.breadcrumb {
  display: inline-block;
}

.breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb-list__item {
  display: inline;
  font-family: "NotoSans-Medium", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.2rem;
}

.breadcrumb-list__item:after {
  content: ">";
  margin: 0 5px;
}

.breadcrumb-list__item:last-child:after {
  content: "";
}

.breadcrumb-list__item:last-child .breadcrumb-list__link {
  text-decoration: none;
  pointer-events: none;
}

.breadcrumb-list__link {
  color: #000;
}

/*----------------------------------
 固定お問い合わせボタン
----------------------------------*/
/* 開閉ボタン */
.c-fixed-contact-switch {
  position: fixed;
  bottom: 45px;
  right: 0;
  z-index: 1000;
  display: block;
  background: #000;
  border: 1px solid #fff;
  width: 18px;
  height: 18px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  overflow: hidden;
  cursor: pointer;
  /* 縦棒、横棒 共通 */
  /* 縦棒 */
  /* オープン時 */
}

@media screen and (min-width: 800px) {
  .c-fixed-contact-switch {
    bottom: 89px;
    width: 28px;
    height: 28px;
  }
}

.c-fixed-contact-switch::before,
.c-fixed-contact-switch::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  background-color: #fff;
  width: 12px;
  height: 1px;
}

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

  .c-fixed-contact-switch::before,
  .c-fixed-contact-switch::after {
    width: 19px;
    height: 1px;
  }
}

.c-fixed-contact-switch::before {
  width: 1px;
  height: 12px;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (min-width: 800px) {
  .c-fixed-contact-switch::before {
    width: 1px;
    height: 19px;
  }
}

.c-fixed-contact-switch.open {
  /* 縦棒 */
}

.c-fixed-contact-switch.open::before {
  opacity: 0;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
  transform: translateY(-50%) translateX(-50%) rotate(90deg);
}

.c-fixed-contact-area {
  position: fixed;
  bottom: 0;
  z-index: 1000;
  width: 100%;
}

@media screen and (min-width: 800px) {
  .c-fixed-contact-area {
    right: 0;
    max-width: 571px;
  }
}

/* ------ コンテンツ ------ */
.c-fixed-contact-wrap .u-pc-only {
  display: none;
}

@media screen and (min-width: 800px) {
  .c-fixed-contact-wrap .u-pc-only {
    display: block;
  }
}

.c-fixed-contact-wrap .u-sp-only {
  display: block;
}

@media screen and (min-width: 800px) {
  .c-fixed-contact-wrap .u-sp-only {
    display: none;
  }
}

.c-fixed-contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.c-fixed-contact__item {
  border: 1px solid #fff;
  /* フリーダイヤル */
  /* 女性スタッフ専用ダイヤル */
  /* LINE */
}

.c-btn-base.contact {
  margin: 0 auto 20px;
}

.c-fixed-contact__item:nth-child(n+2) {
  border-left: none;
}

.c-fixed-contact__item a {
  display: block;
  padding-top: 8px;
  padding-right: 10px;
  padding-bottom: 8px;
  padding-left: 8px;
  height: 100%;
}

@media screen and (min-width: 800px) {
  .c-fixed-contact__item a {
    padding-bottom: 7px;
  }
}

.c-fixed-contact__item.freedial {
  background-color: #77aaca;
  width: 50%;
}

@media screen and (min-width: 800px) {
  .c-fixed-contact__item.freedial {
    width: 51%;
  }
}

@media screen and (min-width: 800px) {
  .c-fixed-contact__item.freedial .c-fixed-contact__head {
    margin-top: 3px;
    margin-bottom: -5px;
  }
}

.c-fixed-contact__item.femaledial {
  background-color: #dc8499;
  width: 33.33%;
}

@media screen and (min-width: 800px) {
  .c-fixed-contact__item.femaledial {
    width: 36.78%;
  }
}

@media screen and (min-width: 800px) {
  .c-fixed-contact__item.femaledial .c-fixed-contact__head {
    margin-top: 3px;
    margin-bottom: -5px;
  }
}

.c-fixed-contact__item.line {
  background-color: #5fbe5c;
  width: 50%;
}

.c-fixed-contact__item.line a {
  padding-right: 8px;
}

.c-fixed-contact__item.mail {
  background-color: #e89289;
  width: 50%;
}


@media screen and (min-width: 800px) {
  .c-fixed-contact__item.line .c-fixed-contact-main {
    height: 100%;
  }
    .c-fixed-contact__item.mail .c-fixed-contact-main {
    height: 100%;
  }
}

@media screen and (min-width: 800px) {
  .c-fixed-contact__item.line .c-fixed-contact__txt {
    font-size: 1.7rem;
    line-height: 1.1176470588;
  }

  .c-fixed-contact__item.mail .c-fixed-contact__txt {
    font-size: 1.7rem;
    line-height: 1.1176470588;
  }
}

.c-fixed-contact__head {
  color: #fff;
  font-family: "NotoSans-Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.1428571429;
}

@media screen and (min-width: 800px) {
  .c-fixed-contact__head {
    font-family: "NotoSans-Medium", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.4615384615;
    text-align: center;
  }
}

.c-fixed-contact-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

@media screen and (min-width: 800px) {
  .c-fixed-contact-main {
    height: auto;
  }
}

.c-fixed-contact__icon {
  margin-right: 5px;
}

.c-fixed-contact__icon2 {
  margin-right: 10px;
}


.c-fixed-contact__icon img {
  display: block;
  margin: 0 auto;
}

.c-fixed-contact__txt {
  color: #fff;
  font-family: "NotoSans-Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (min-width: 800px) {
  .c-fixed-contact__txt {
    font-size: 2.1rem;
    line-height: 1.7619047619;
  }
}

@media screen and (max-width: 800px) {
 .c-fixed-contact__icon2 {
    max-width: 28px;
}
}
@media screen and (max-width: 490px) {
.c-fixed-contact__head.tel{
  font-size: 1.0rem;
}
}

/*----------------------------------
 お問い合わせフォーム
----------------------------------*/
.red_contact {
  color: #d90000;
  text-align: center;
}

.about .c-sec__title.formttl {
  margin-top: 20px;
}

.box_contact_form {
  display: block;
  width: 100%;
  margin: 15px auto 50px;
  box-sizing: border-box;
}

.box_contact_form dt {
  width: 100%;
  margin: 0;
  padding: 25px 0 25px 10px;
  background-color: #fff;
  border-top: 1px solid #000;
  font-weight: bold;
  vertical-align: top;
  text-align: left;
  box-sizing: border-box;
}

.box_contact_form dd {
  width: 100%;
  padding: 25px 0 25px 10px;
  background-color: #fff;
  margin-left: 0;
  border-top: 1px solid #c9caca;
  vertical-align: top;
  text-align: left;
  box-sizing: border-box;
}

.box_contact_form dt .required {
  background-color: #d90000;
  color: #fff;
  font-size: 0.8em;
  padding: 2px 6px;
  border-radius: 5px;
  margin-left: 10px;
  white-space: nowrap;
}

.box_contact_form select {
  padding: 0 5px;
  border: 1px solid;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
}

.box_contact_form textarea {
  background-color: #f0f0f0;
  width: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #f0f0f0 inset !important;
  box-shadow: 0 0 0px 1000px #f0f0f0 inset !important;
  -webkit-text-fill-color: inherit !important;
  color: inherit !important;
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:focus {
  caret-color: auto !important;
}


input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 8px;
  border: none;
  background: #f0f0f0;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1em;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
  color: #f0f0f0;
}

input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder {
  color: #f0f0f0;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder {
  color: #f0f0f0;
}

@media screen and (min-width: 600px) {
  .c-sec__title.formttl {
    margin-top: 40px;
  }

  .box_contact_form {
    width: 100%;
    margin: 45px auto 50px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .box_contact_form dt {
    max-width: 215px;
    width: 32%;
    margin-right: 15px;
    padding: 25px 0 25px 20px;
    background-color: #fff;
    border-top: 1px solid #000;
    padding-left: 10px;
    font-weight: bold;
    vertical-align: top;
    text-align: left;
    box-sizing: border-box;
  }

  .box_contact_form dd {
    max-width: 493px;
    width: 39.3vw;
    padding: 25px 0 25px 20px;
    background-color: #fff;
    margin-left: 0;
    border-top: 1px solid #c9caca;
    vertical-align: top;
    text-align: left;
    box-sizing: border-box;
  }

}

/*----------------------------------
 マーカー（アンダーライン）
----------------------------------*/
.c-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(50%, #f6d5d1));
  background: linear-gradient(transparent 70%, #f6d5d1 50%);
}

/*----------------------------------
 GALU Agency
----------------------------------*/
.c-agency {
  position: relative;
  background-color: #e89289;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 67px;
  /* 背景色 */
  /* 装飾テキスト */
}

@media screen and (min-width: 600px) {
  .c-agency {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 9.8%;
  }
}

@media screen and (min-width: 1261px) {
  .c-agency {
    padding-bottom: 122px;
  }
}

@media screen and (min-width: 600px) {
  .c-agency::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -2;
    -webkit-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
    display: block;
    content: "";
    background-color: #e89289;
    width: 100%;
    height: 67%;
  }
}

.c-agency::after {
  position: absolute;
  bottom: -1.8vw;
  content: "GALU Agency";
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(20px, 20vw, 51px);
  line-height: 0.8921568627;
  width: 102vw;
}

@media screen and (min-width: 600px) {
  .c-agency::after {
    bottom: -1.2vw;
    z-index: -1;
    font-size: clamp(50px, 10vw, 128px);
    line-height: 0.8984375;
    width: 100%;
  }
}

.c-agency .l-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 10px 0;
  padding: 0 17px;
}

.c-agency .l-inner>*:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

@media screen and (min-width: 600px) {
  .c-agency .l-inner {
    -ms-grid-columns: 1fr 8% 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: repeat(1, 1fr);
    gap: 0 8%;
    max-width: calc(998px + 20%);
    padding: 0 10%;
  }

  .c-agency .l-inner>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .c-agency .l-inner>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

.c-agency-box {
  background-color: #fff;
  text-align: center;
  max-width: 461px;
  margin: 0 auto;
  padding: 16px 10px 7px;
}

@media screen and (min-width: 600px) {
  .c-agency-box {
    border-width: 5px;
    margin: 0;
    padding: 31px 10px 27px;
  }
}

/* ------ 調査の流れ ------ */
.c-agency-flow {
  border: 4px solid #91b15b;
  /* 矢印 */
}

@media screen and (min-width: 600px) {
  .c-agency-flow {
    border: 5px solid #91b15b;
  }
}

.c-agency-flow .c-agency__head,
.c-agency-flow .c-agency__link {
  color: #91b15b;
}

.c-agency-flow .c-agency__link::before {
  border-top: 2px solid #91b15b;
  border-right: 2px solid #91b15b;
}

/* ------ よくある質問 ------ */
.c-agency-faq {
  border: 4px solid #8d87b1;
  /* 矢印 */
}

@media screen and (min-width: 600px) {
  .c-agency-faq {
    border: 5px solid #8d87b1;
  }
}

.c-agency-faq .c-agency__head,
.c-agency-faq .c-agency__link {
  color: #8d87b1;
}

.c-agency-faq .c-agency__link::before {
  border-top: 2px solid #8d87b1;
  border-right: 2px solid #8d87b1;
}

.c-agency__head {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 2.2rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (min-width: 600px) {
  .c-agency__head {
    font-size: 3rem;
  }
}

.c-agency__txt {
  font-family: "NotoSans-Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 1.6666666667;
  margin-top: 5px;
}

@media screen and (min-width: 600px) {
  .c-agency__txt {
    line-height: 1.6666666667;
    margin-top: 5px;
  }
}

.c-agency__link {
  position: relative;
  display: inline-block;
  font-family: "NotoSans-DemiLight", sans-serif;
  font-style: normal;
  font-weight: 350;
  font-size: 1.7rem;
  line-height: 2;
  margin-top: 8px;
  /* 矢印 */
}

@media screen and (min-width: 600px) {
  .c-agency__link {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    line-height: 2;
    margin-top: 25px;
  }
}

.c-agency__link::before {
  position: absolute;
  top: 50%;
  right: -14px;
  -webkit-transform: translateY(-50%) translateX(0) rotate(45deg);
  transform: translateY(-50%) translateX(0) rotate(45deg);
  content: "";
  width: 10px;
  height: 10px;
}

@media screen and (min-width: 600px) {
  .c-agency__link::before {
    right: -14px;
  }
}

/*----------------------------------
 ガルエージェンシーが選ばれる理由
----------------------------------*/
.reason {
  position: relative;
  padding-top: 40px;
  padding-bottom: 30px;
}

@media screen and (min-width: 600px) {
  .reason {
    padding-top: 106px;
    padding-bottom: 126px;
  }
}

.reason::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  content: "";
  background: url("../images/top/reason_deco01.svg") no-repeat center center/contain;
  width: 63.0555555556vw;
  max-width: 227px;
  height: 49.0277777778vw;
  max-height: 177px;
}

@media screen and (min-width: 600px) {
  .reason::before {
    width: 50.4444444444vw;
    max-width: 454px;
    height: 39.2222222222vw;
    max-height: 353px;
  }
}

@media screen and (min-width: 1025px) {
  .reason::before {
    width: 36.0317460317vw;
    height: 28.0158730159vw;
  }
}

.reason .l-inner {
  padding: 0 15px 62px;
}

@media screen and (min-width: 600px) {
  .reason .l-inner {
    max-width: 80%;
  }
}

@media screen and (min-width: 1025px) {
  .reason .l-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 100%;
    padding-right: 8%;
    padding-left: 0;
    padding-bottom: 50px;
  }
}

.reason .c-sec__title {
  font-size: 2.3rem;
  line-height: 1.3333333333;
  padding: 0 27px;
}

@media screen and (min-width: 600px) {
  .reason .c-sec__title {
    font-size: 4rem;
    line-height: 1.5333333333;
    padding: 0 40px;
  }
}

.reason .c-sec__title::after {
  display: block;
  bottom: -18px;
}

@media screen and (min-width: 1025px) {
  .reason .c-sec__title::after {
    display: none;
  }
}

.reason-inner {
  max-width: 1260px;
  margin: 0 auto;
}

.reason__main-img {
  margin-top: 50px;
}

@media screen and (min-width: 600px) {
  .reason__main-img {
    margin-top: 0;
    margin-right: 66px;
  }
}

.reason__main-img.img--sp {
  margin-top: 40px;
}

@media screen and (min-width: 1025px) {
  .reason__main-img.img--sp {
    display: none;
  }
}

.reason__main-img img {
  display: block;
  width: 90.56%;
  max-width: 326px;
}

@media screen and (min-width: 600px) {
  .reason__main-img img {
    width: auto;
    max-width: 459px;
  }
}

.reason-wrap {
  margin-top: 13px;
}

@media screen and (min-width: 600px) {
  .reason-wrap {
    margin-top: 84px;
  }
}

@media screen and (min-width: 600px) {
  .reason-wrap--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.reason-wrap--pc .u-pc-only {
  display: none;
}

@media screen and (min-width: 1025px) {
  .reason-wrap--pc .u-pc-only {
    display: block;
  }
}

.reason-wrap-btm {
  margin-top: 32px;
}

@media screen and (min-width: 1025px) {
  .reason-wrap-btm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: calc(1007px + (40px * 2));
    margin: 70px auto 0;
    padding-right: 40px;
    padding-left: 38px;
    margin-right: -62px;
  }
}

@media screen and (min-width: 600px) {
  .reason-wrap-btm-inner {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 5%;
  }
}

@media screen and (min-width: 600px) {
  .reason-wrap-btm-inner .reason__item:nth-child(n+2) {
    margin-top: 75px;
  }
}

.reason__img--pc {
  display: none;
}

@media screen and (min-width: 1025px) {
  .reason__img--pc {
    display: block;
    width: 294px;
    margin-top: 12px;
  }
}

.reason__item {
  line-height: 1.6666666667;
}

@media screen and (min-width: 600px) {
  .reason__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 1.5333333333;
  }
}

.reason__item small {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-top: 12px;
}

@media screen and (min-width: 600px) {
  .reason__item small {
    font-size: 1.2rem;
    line-height: 1.9166666667;
    margin-top: 0;
  }
}

.reason__item:nth-child(n+2) {
  margin-top: 22px;
}

@media screen and (min-width: 600px) {
  .reason__item:nth-child(n+2) {
    margin-top: 32px;
  }
}

.reason__head-num {
  color: #e89289;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.06em;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .reason__head-num {
    font-size: 3rem;
    letter-spacing: 0.12em;
    margin-right: 4%;
  }
}

.reason__head {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  text-align: center;
  margin-top: -3px;
  margin-bottom: 18px;
}

@media screen and (min-width: 600px) {
  .reason__head {
    font-size: 2.6rem;
    line-height: 1.4615384615;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    text-align: left;
    margin-top: -3px;
    margin-bottom: 18px;
  }
}

.reason__head strong {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 700;
}

.reason__img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 599px) {
  .reason__img-box {
    display: block;
  }
}

.reason__img-box .reason__txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.reason__img--sp {
  float: right;
  width: 43.31%;
  margin-top: 6px;
  margin-left: 4.2%;
}

@media screen and (min-width: 1025px) {
  .reason__img--sp {
    display: none;
  }
}

.reason__img--sp img {
  display: block;
  width: 100%;
  max-width: 294px;
}

.reason-btn-wrap {
  clear: both;
  padding: 0 27px;
}

@media screen and (min-width: 600px) {
  .reason-btn-wrap {
    padding: 0 40px;
  }
}

/*----------------------------------
 浮気調査事例
----------------------------------*/
.c-example {
  background-color: #f7f6f6;
  padding-top: 35px;
  padding-bottom: 53px;
}

@media screen and (min-width: 600px) {
  .c-example {
    background-color: transparent;
    padding-top: 60px;
    padding-bottom: 53px;
  }
}

.c-example .l-inner {
  padding: 0 20px;
}

@media screen and (min-width: 600px) {
  .c-example .l-inner {
    max-width: calc(1024px + (40px * 2));
    padding: 0 40px;
  }
}

@media screen and (max-width: 599px) {
  .c-example .c-sec__title {
    font-size: 2.3rem;
    line-height: 1.3333333333;
  }
}

.c-example .c-sec__title::after {
  bottom: -16px;
}

@media screen and (min-width: 600px) {
  .c-example .c-sec__title::after {
    bottom: -16px;
  }
}

.c-example .c-btn-base {
  margin-top: 37px;
}

@media screen and (min-width: 600px) {
  .c-example .c-btn-base {
    margin-top: 117px;
  }
}

.c-example__notes {
  display: block;
  color: #595757;
  font-family: "NotoSans-Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.68;
  text-align: center;
  margin-top: 26px;
}

@media screen and (min-width: 600px) {
  .c-example__notes {
    line-height: 1.6153846154;
    margin-top: 16px;
  }
}

.c-example-wrap {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 10px 0;
  margin-top: 34px;
  /* 背景色*/
}

.c-example-wrap>*:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

@media screen and (min-width: 600px) {
  .c-example-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2% 1fr 2% 1fr 2% 1fr;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: 1fr 57px 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 57px 2%;
    margin-top: 102px;
  }

  .c-example-wrap>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .c-example-wrap>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .c-example-wrap>*:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }

  .c-example-wrap>*:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }

  .c-example-wrap>*:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .c-example-wrap>*:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .c-example-wrap>*:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }

  .c-example-wrap>*:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }
}

/*@media screen and (min-width: 600px) {
  .c-example-wrap::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    display: block;
    content: "";
    background-color: #f7f6f6;
    width: 78.32%;
    max-width: 802px;
    padding-top: 58.887032%;
  }
}*/

.c-example__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0 3px;
}

@media screen and (min-width: 600px) {
  .c-example__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 236px;
    padding: 0;
  }
}

.c-example__item:nth-child(n+2) {
  border-top: 1px dotted #595757;
  padding-top: 10px;
}

@media screen and (min-width: 600px) {
  .c-example__item:nth-child(n+2) {
    border-top: none;
    padding-top: 0;
  }
}

.c-example__img {
  width: 118px;
  height: 76px;
  position: relative;
}

@media screen and (min-width: 600px) {
  .c-example__img {
    width: 100%;
    padding-bottom: 64.666666666666667%;
    height: 0;
  }
}

.c-example__img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
}

.c-example-content {
  margin-left: 7%;
}

@media screen and (min-width: 600px) {
  .c-example-content {
    margin-top: 15px;
    margin-left: 0;
  }
}

.c-example__status {
  color: #595757;
  font-family: "NotoSans-Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.6153846154;
}

@media screen and (min-width: 600px) {
  .c-example__status {
    font-size: 1.1rem;
    line-height: 1.9090909091;
  }
}

.c-example__title {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  margin-top: 7px;
}

@media screen and (min-width: 600px) {
  .c-example__title {
    font-size: 1.4rem;
    line-height: 1.5333333333;
    margin-top: 7px;
  }
}

/*----------------------------------
 あなたの勇気に全力でお応えする「浮気調査」探偵事務所
----------------------------------*/
.resolution {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-align: center;
  margin-top: 58px;
}

@media screen and (min-width: 600px) {
  .resolution {
    margin-top: 75px;
  }
}

.resolution .c-btn-gradient {
  margin-top: 30px;
}

@media screen and (min-width: 600px) {
  .resolution .c-btn-gradient {
    margin-top: 60px;
  }
}

.resolution__txt01 {
  font-size: 1.6rem;
  line-height: 1.875;
}

@media screen and (min-width: 600px) {
  .resolution__txt01 {
    font-size: 2.1rem;
    line-height: 1.9047619048;
  }
}

.resolution__txt02 {
  font-size: 2.3rem;
  margin-top: 8px;
}

@media screen and (min-width: 600px) {
  .resolution__txt02 {
    font-size: 3rem;
    margin-top: 5px;
  }
}

.resolution__txt03 {
  font-size: 1.5rem;
  line-height: 2.0689655172;
}

@media screen and (min-width: 600px) {
  .resolution__txt03 {
    font-size: 1.9rem;
    line-height: 1.5333333333;
    margin-top: 18px;
  }
}

/*----------------------------------
 トピックス
----------------------------------*/
.c-topics-list {
  margin-top: 20px;
}

@media screen and (min-width: 600px) {
  .c-topics-list {
    margin-top: 43px;
  }
}

.c-topics__item {
  min-height: 69px;
}

@media screen and (min-width: 600px) {
  .c-topics__item {
    min-height: auto;
    padding-bottom: 20px;
  }
}

.c-topics__item:nth-child(n+2) {
  border-top: 1px dotted #595757;
  margin-top: 10px;
  padding-top: 10px;
}

@media screen and (min-width: 600px) {
  .c-topics__item:nth-child(n+2) {
    margin-top: 17px;
    padding-top: 18px;
  }
}

.c-topics__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-topics__category {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  width: 75px;
  margin-top: 6px;
  padding: 2px 5px;
  /* カテゴリ：離婚相談 */
  /* カテゴリ：お客様の声 */
  /* カテゴリ： */
  /* カテゴリ： */
  /* カテゴリ： */
  /* カテゴリ： */
  /* カテゴリ： */
  /* カテゴリ： */
  /* カテゴリ： */
  /* カテゴリ： */
}

@media screen and (min-width: 600px) {
  .c-topics__category {
    font-size: 1.2rem;
    width: 75px;
    margin-top: 20px;
    padding: 1px 5px;
  }
}

.c-topics__category.category-rikon {
  background-color: #e89289;
}

.c-topics__category.category-voice {
  background-color: #82abbc;
}

.c-topics__category.category-03 {
  background-color: #e882c4;
}

.c-topics__category.category-04 {
  background-color: #a690e8;
}

.c-topics__category.category-05 {
  background-color: #5eb6b6;
}

.c-topics__category.category-06 {
  background-color: #65d16a;
}

.c-topics__category.category-07 {
  background-color: #c5c259;
}

.c-topics__category.category-08 {
  background-color: #aa954e;
}

.c-topics__category.category-09 {
  background-color: #aa7646;
}

.c-topics__category.category-10 {
  background-color: #aa544c;
}

.c-topics-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 6.5%;
}

@media screen and (min-width: 600px) {
  .c-topics-content {
    margin-left: 5%;
  }
}

.c-topics__date {
  color: #808080;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.2rem;
}

@media screen and (min-width: 600px) {
  .c-topics__date {
    font-size: 1.2rem;
  }
}

.c-topics__title {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6666666667;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (min-width: 600px) {
  .c-topics__title {
    line-height: 1.6666666667;
    margin-top: -3px;
  }
}

/*----------------------------------
 ブログ
----------------------------------*/
.c-blog-list {
  display: -ms-grid;
  display: grid;
}

@media screen and (min-width: 600px) {
  .c-blog-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[1];
    grid-template-rows: repeat(1, 1fr);
  }

  .c-blog-list>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .c-blog-list>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}

.c-blog__img {
  width: 100%;
  padding-bottom: 64.666666666666667%;
  height: 0;
  position: relative;
}

.c-blog__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.c-blog-content {
  color: #595757;
  font-family: "NotoSans-Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4666666667;
}

@media screen and (min-width: 600px) {
  .c-blog-content {
    font-size: 1.4rem;
    line-height: 1.6428571429;
    margin-top: 16px;
  }
}

.c-blog__date {
  color: #595757;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.2rem;
}

@media screen and (min-width: 600px) {
  .c-blog__date {
    font-size: 1.1rem;
    line-height: 1.9090909091;
  }
}

.c-blog__title {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1111111111;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  margin-top: 6px;
}

@media screen and (min-width: 600px) {
  .c-blog__title {
    font-size: 1.6rem;
    line-height: 1.25;
    margin-top: 6px;
  }
}

.c-blog-detail {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 10px;
}

@media screen and (min-width: 600px) {
  .c-blog-detail {
    -webkit-line-clamp: 3;
    margin-top: 10px;
  }
}

/*----------------------------------
 メディア
----------------------------------*/
.c-media-list {
  display: -ms-grid;
  display: grid;

  /* place-items: center; */
  max-width: 1260px;
  margin: 0 auto;
}



@media screen and (min-width: 600px) {
  .c-media-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[1];
    grid-template-rows: repeat(1, 1fr);
  }

  .c-media-list>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .c-media-list>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}

.c-media__img {
  width: 100%;
  padding-bottom: 64.666666666666667%;
  height: 0;
  position: relative;
}

.c-media__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.c-media-content {
  color: #595757;
  font-family: "NotoSans-Light", sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4666666667;
}

@media screen and (min-width: 600px) {
  .c-media-content {
    font-size: 1.4rem;
    line-height: 1.6428571429;
    margin-top: 16px;
  }
}

.c-media__date {
  color: #595757;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.2rem;
}

@media screen and (min-width: 600px) {
  .c-media__date {
    font-size: 1.1rem;
    line-height: 1.9090909091;
  }
}

.c-media__title {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1111111111;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  margin-top: 6px;
}

@media screen and (min-width: 600px) {
  .c-media__title {
    font-size: 1.6rem;
    line-height: 1.25;
    margin-top: 6px;
  }
}

.c-media-detail {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 10px;
}

@media screen and (min-width: 600px) {
  .c-media-detail {
    -webkit-line-clamp: 3;
    margin-top: 10px;
  }
}


/*----------------------------------
 フェードイン
----------------------------------*/
/* 奥からフェードイン */
.js-fadein {
  opacity: 0;
  -webkit-transition: 1.4s;
  transition: 1.4s;
}

.js-fadein.is-show {
  opacity: 1;
}

/* 下から上にフェードイン */
.js-fadein-up {
  opacity: 0;
  -webkit-transform: translate(0, 10%);
  transform: translate(0, 10%);
  -webkit-transition: 1.2s;
  transition: 1.2s;
}

.js-fadein-up.is-show {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.js-fadein-delay-01 {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

@media screen and (min-width: 600px) {
  .js-fadein-delay-01 {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
}

.js-fadein-delay-02 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

@media screen and (min-width: 600px) {
  .js-fadein-delay-02 {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
}

.js-fadein-delay-03 {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

@media screen and (min-width: 600px) {
  .js-fadein-delay-03 {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
  }
}

.js-fadein-delay-04 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

@media screen and (min-width: 600px) {
  .js-fadein-delay-04 {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
  }
}

.js-fadein-delay-05 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

@media screen and (min-width: 600px) {
  .js-fadein-delay-05 {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
  }
}

.js-fadein-delay-05 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

@media screen and (min-width: 600px) {
  .js-fadein-delay-05 {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
  }
}

.js-fadein-delay-05 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

@media screen and (min-width: 600px) {
  .js-fadein-delay-05 {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
  }
}

/*----------------------------------
 デバイス
----------------------------------*/
/* SP、TABのみ */
.u-sp-only {
  display: block;
}

@media screen and (min-width: 600px) {
  .u-sp-only {
    display: none;
  }
}

.u-pc-only {
  display: none;
}

@media screen and (min-width: 600px) {
  .u-pc-only {
    display: block;
  }
}

/*----------------------------------
 flexbox
----------------------------------*/
.u-flexbox-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

/*----------------------------------
 画像hover時に拡大
----------------------------------*/
.u-img-hover-scale {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.u-img-hover-scale img {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.u-img-hover-scale:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*----------------------------------
 アクション無効
----------------------------------*/
.u-no-events {
  pointer-events: none;
}

/*----------------------------------
 z-index
----------------------------------*/
.u-zindex-1 {
  z-index: 1;
}

/*# sourceMappingURL=common.css.map */