@charset "UTF-8";
/* パレット */
/* SVG カラー*/
/* 文字色 */
/* ヘッダー */
/*  ナビゲーション*/
/* ハンバーガーボタン */
/* トップページ　カテゴリー　背景色 */
/* CTAコンタクト　背景色 */
/* CTA緊急連絡先　背景色 */
/* サイドバー　見出し背景色 */
/* FD宣言　表組み */
/* 会社概要　表組み */
/* フォーム　表組み */
/* フォーム ボタン*/
/*フォーム 必須　任意　背景色*/
/* フッター */
html {
  font-size: 62.5%;
}

body {
  font-family: "Kosugi Maru", sans-serif;
}

a {
  word-wrap: break-word;
}

body {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-areas: "header" "contents" "footer";
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  .flexbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.pc-img-show {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .pc-img-show {
    display: block;
    width: 100%;
  }
  .pc-img-show img {
    width: 100%;
    height: auto;
  }
}

.sp-img-show {
  width: 100%;
}
.sp-img-show img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .sp-img-show {
    display: none;
  }
}

.pc-br-show {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .pc-br-show {
    display: block;
    width: 100%;
  }
  .pc-br-show img {
    width: 100%;
    height: auto;
  }
}

.sp-br-show {
  width: 100%;
}
.sp-br-show img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .sp-br-show {
    display: none;
  }
}

.object-fit-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.wrapper {
  padding: 40px 0;
}

.contents-wrapper {
  grid-area: contents;
}

.main-wrapper {
  grid-column: 2/3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 0px;
  padding: 40px 0;
}
@media print, screen and (min-width: 768px) {
  .main-wrapper {
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .main-wrapper {
    padding: 80px 0;
  }
}

.container {
  display: grid;
  grid-template-columns: [full-start] minmax(16px, 1fr) [main-start] minmax(0, 1024px) [main-end] minmax(16px, 1fr) [full-end];
}

/* 
.container-fluid {
    display: grid;
    grid-template-columns:
        [full-start] minmax(16px, 1fr) [main-start] minmax(0, 1024px) [main-end] minmax(16px, 1fr) [full-end];
}

.container-fluid>* {
    grid-column: full;
} */
body.noscroll {
  overflow: hidden;
}

.header-wrapper {
  grid-area: header;
}

.header-list {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.site-title {
  margin: 16px 0;
  width: 70%;
}
.site-title img {
  max-width: 100%;
  height: auto;
}

.hi {
  display: none;
}

/* ハンバーガーボタン */
.burger-btn {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 3;
  border: none;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #98E0E1;
}

.bar {
  width: 20px;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
}

.bar_top {
  top: 10px;
}

.bar_mid {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.bar_bottom {
  bottom: 10px;
}

.burger-btn.close .bar_top {
  -webkit-transform: translate(-50%, 10px) rotate(45deg);
          transform: translate(-50%, 10px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-color: #fff;
}

.burger-btn.close .bar_mid {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.burger-btn.close .bar_bottom {
  -webkit-transform: translate(-50%, -8px) rotate(-45deg);
          transform: translate(-50%, -8px) rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-color: #fff;
}

/* メニュー縦並び */
.nav-wrapper {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #98E0E1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.hv {
  grid-column: 1/-1;
}

.nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav-item {
  width: 100%;
  display: block;
  text-align: center;
  border-top: 1px solid #fff;
}
.nav-item:first-child {
  border-top: none;
}
.nav-item:last-child {
  border-bottom: 1px solid #fff;
}
.nav-item a {
  display: block;
  line-height: 50px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  width: 100%;
  text-decoration: none;
}
.nav-item a:hover {
  background-color: #fff;
  color: #6DCDCE;
}

.nav-item-active a {
  background-color: #fff;
  color: #6DCDCE;
}

.nav-wrapper-pc {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .header-list {
    grid-column: 2/3;
    height: 88px;
  }

  .site-title {
    margin: auto 0;
    width: 320px;
    height: 40px;
  }
  .site-title img {
    width: 100%;
    height: auto;
  }

  .burger-btn {
    display: none;
  }

  .hi {
    display: block !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: auto;
    margin-bottom: auto;
  }
  .hi-title {
    font-size: 1.4rem;
  }

  .ti {
    font-weight: 700;
    color: #333333;
  }
  .ti-phonenumber {
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }
  .ti-hours {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
  }

  .hi-btn {
    display: inline-block;
    padding: 16px 14px;
    border-radius: 32px;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
    background-color: #FA8500;
    margin-left: 54px;
  }
  .hi-btn:hover {
    opacity: 0.8;
  }

  .hi-btn-flexbox {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hi-mail-icon {
    display: inline-block;
    width: 20px;
    height: auto;
    margin-right: 8px;
  }

  .hi-mail-icon-stroke00 {
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hi-mail-icon-stroke01 {
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .nav-wrapper-pc {
    display: block;
    background-color: #98E0E1;
  }

  .hv {
    grid-column: 2/3;
  }

  .nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .nav-item {
    border-top: none;
    position: relative;
    border-left: 1px solid #fff;
  }
  .nav-item:first-child {
    border-top: none;
  }
  .nav-item:last-child {
    border-bottom: none;
    border-right: 1px solid #fff;
  }
  .nav-item a {
    display: block;
    line-height: 1;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
/* スマホだけ表示 */
.sub-contact-wrapper--sp-show {
  background-color: #FFC584;
}
.sub-contact-wrapper {
  background-color: #FFC584;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  margin-top: 40px !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
@media print, screen and (min-width: 768px) {
  .sub-contact-wrapper {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 32px;
  }
}
@media print, screen and (min-width: 768px) {
  .sub-contact-wrapper {
    grid-column: 1/10;
    margin: initial;
    padding: initial;
    margin-top: 80px !important;
  }
}

.sub-contact {
  grid-column: 1/-1;
}
.sub-contact-title {
  grid-column: 1/-1;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 1.6em;
}
@media print, screen and (min-width: 768px) {
  .sub-contact-title {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .sub-contact {
    grid-column: 1/10;
  }
}

.sub-contact-btn {
  display: inline-block;
  grid-column: 1/-1;
  padding: 18px 28px;
  border-radius: 16px;
  text-align: center;
  background-color: #fff;
}
.sub-contact-btn:hover {
  opacity: 0.8;
}
@media print, screen and (min-width: 768px) {
  .sub-contact-btn {
    grid-column: 2/8;
    border-radius: 32px;
    padding: 36px 55px;
  }
}
.sub-contact-btn-title {
  color: #FA8500;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 1em;
}
.sub-contact-btn-u-flexbox {
  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;
}
.sub-contact-btn-text {
  color: #FA8500;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.sub-contact-btn-annotation {
  color: #FA8500;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 8px;
}

.sub-contact-btn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .sub-contact-btn-grid {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 32px;
  }
}

/* 電話番号アイコン */
.sub-contact-phone-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.sub-contact-phone-icon-fill00 {
  fill: #FA8500;
}

.sub-contact-phone-icon-fill01 {
  fill: #FA8500;
}

/* メールアイコン */
.sub-contact-mail-icon {
  display: inline-block;
  width: 30px;
  height: 24px;
  margin-right: 10px;
}

.sub-contact-mail-icon-stroke00 {
  fill: none;
  stroke: #FA8500;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sub-contact-mail-icon-stroke01 {
  fill: none;
  stroke: #FA8500;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sub-emergency-wrapper {
  background-color: #98E0E1;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .sub-emergency-wrapper {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 32px;
  }
}
@media print, screen and (min-width: 768px) {
  .sub-emergency-wrapper {
    grid-column: 1/10;
    margin: initial;
    padding: initial;
    margin-bottom: 0;
  }
}

.sub-emergency {
  grid-column: 1/-1;
}
.sub-emergency-title {
  grid-column: 1/-1;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 1.6em;
}
@media print, screen and (min-width: 768px) {
  .sub-emergency-title {
    font-size: 3.2rem;
  }
}

.sub-emergency-btn {
  display: inline-block;
  grid-column: 1/-1;
  padding: 18px 28px;
  border-radius: 16px;
  text-align: center;
  background-color: #fff;
}
.sub-emergency-btn:hover {
  opacity: 0.8;
}
@media print, screen and (min-width: 768px) {
  .sub-emergency-btn {
    grid-column: 2/8;
    border-radius: 32px;
    padding: 36px 55px;
  }
}
.sub-emergency-btn-title {
  color: #6DCDCE;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 1em;
}
.sub-emergency-btn-u-flexbox {
  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;
}
.sub-emergency-btn-text {
  color: #6DCDCE;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.sub-emergency-btn-annotation {
  color: #6DCDCE;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.06em;
}

.sub-emergency-btn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .sub-emergency-btn-grid {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 32px;
  }
}

/* 電話番号アイコン */
.sub-emergency-phone-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.sub-emergency-phone-icon-fill00 {
  fill: #6DCDCE;
}

.sub-emergency-phone-icon-fill01 {
  fill: #6DCDCE;
}

/* メールアイコン */
.sub-emergency-mail-icon {
  display: inline-block;
  width: 30px;
  height: 24px;
  margin-right: 10px;
}

.sub-emergency-mail-icon-stroke00 {
  fill: none;
  stroke: #6DCDCE;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sub-emergency-mail-icon-stroke01 {
  fill: none;
  stroke: #6DCDCE;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.snav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  -ms-flex-line-pack: start;
      align-content: start;
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .snav {
    -webkit-column-gap: 36px;
       -moz-column-gap: 36px;
            column-gap: 36px;
    row-gap: 36px;
  }
}
@media print, screen and (min-width: 768px) {
  .snav {
    grid-column: 9/13;
  }
}

.snnh {
  grid-row: auto;
  grid-column: 1/-1;
}
.snnh-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  background-color: #98E0E1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .snnh-title {
    font-size: 2.4rem;
  }
}

.snnh-list-item {
  margin-bottom: 12px;
}
.snnh-list-item img {
  width: 100%;
  height: auto;
}
.snnh-list-item :last-child {
  margin-bottom: 0;
}
.snnh-list-item :hover {
  opacity: 0.8;
}

.snel {
  grid-column: 1/-1;
}
.snel-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  background-color: #98E0E1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .snel-title {
    font-size: 2.4rem;
  }
}

.snel-list-item {
  margin-bottom: 12px;
}
.snel-list-item img {
  width: 100%;
  height: auto;
}
.snel-list-item :last-child {
  margin-bottom: 0;
}
.snel-list-item :hover {
  opacity: 0.8;
}

.sncr {
  grid-column: 1/-1;
}
.sncr-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  background-color: #98E0E1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .sncr-title {
    font-size: 2.4rem;
  }
}

.sncr-list-item {
  margin-bottom: 12px;
}
.sncr-list-item img {
  width: 100%;
  height: auto;
}
.sncr-list-item :last-child {
  margin-bottom: 0;
}
.sncr-list-item :hover {
  opacity: 0.8;
}

.mc-1column {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 0px;
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .mc-1column {
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .mc-1column {
    grid-column: 1/13;
  }
}

.mc-2column {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 0px;
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .mc-2column {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .mc-2column {
    grid-column: 1/9;
  }
}

footer {
  grid-area: footer;
  background-color: #F8F8F8;
}

.fl {
  grid-column: 2/3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 0px;
}
@media print, screen and (min-width: 768px) {
  .fl {
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}

.flc {
  grid-column: 1/-1;
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) {
  .flc {
    grid-column: 1/6;
    margin-bottom: 0;
  }
}
.flc-logo {
  margin-bottom: 38px;
}
.flc-logo img {
  width: 320px;
  height: auto;
}
.flc-text {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #333333;
}

.footerlink-group {
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .footerlink-group {
    grid-column: 8/13;
  }
}

.flsm {
  grid-column: 1/-1;
  margin-bottom: 24px;
}
.flsm-title {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
.flsm-list {
  list-style-type: none;
}
.flsm-list-item {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .flsm {
    grid-column: 6/8;
    margin-bottom: 0;
  }
}

.flnh {
  grid-column: 1/-1;
  margin-bottom: 24px;
}
.flnh-title {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
.flnh-list {
  list-style-type: none;
}
.flnh-list-item {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .flnh {
    margin-bottom: 24px;
  }
}

.flel {
  margin-bottom: 24px;
}
.flel-title {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
.flel-list {
  list-style-type: none;
}
.flel-list-item {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .flel {
    margin-bottom: 24px;
  }
}

.flcr {
  margin-bottom: 24px;
}
.flcr-title {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
.flcr-list {
  list-style-type: none;
}
.flcr-list-item {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .flcr {
    margin-bottom: 0;
  }
}

.copyright {
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .copyright {
    grid-column: 1/13;
  }
}
.copyright-text {
  font-size: 1.2rem;
  color: #333333;
  text-align: center;
  padding: 1em 0;
  margin-top: 0;
  margin-bottom: 0;
}

.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../img/top/mainvisual-background-sp@2x.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.mv-item {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 0px;
  row-gap: none !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 768px) {
  .mv-item {
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}
.mv-text {
  display: grid;
  grid-column: 1/-1;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: 0.2em;
  color: #333333;
  font-weight: 700;
  margin-bottom: 46px;
}

.mvc {
  display: grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .mvc {
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 32px;
  }
}
.mvc-box-pastel-green {
  font-weight: 700;
  grid-column: 1/-1;
  display: inline-block;
  border-radius: 16px;
  padding: 12px 48px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  background-color: #9AD868;
}
.mvc-box-pastel-green:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media print, screen and (min-width: 768px) {
  .mvc-box-pastel-green {
    padding: 24px 24px;
    border-radius: 32px;
    grid-column: span 4;
  }
}
.mvc-box-chardonnay {
  font-weight: 700;
  grid-column: 1/-1;
  display: inline-block;
  border-radius: 16px;
  padding: 12px 48px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  background-color: #FFC584;
}
.mvc-box-chardonnay:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media print, screen and (min-width: 768px) {
  .mvc-box-chardonnay {
    padding: 24px 24px;
    border-radius: 32px;
    grid-column: span 4;
  }
}
.mvc-box-morning-glory {
  font-weight: 700;
  grid-column: 1/-1;
  display: inline-block;
  border-radius: 16px;
  padding: 12px 48px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  background-color: #98E0E1;
}
.mvc-box-morning-glory:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media print, screen and (min-width: 768px) {
  .mvc-box-morning-glory {
    padding: 24px 24px;
    border-radius: 32px;
    grid-column: span 4;
  }
}
.mvc-title {
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 1em;
}
.mvc-icon {
  display: block;
  text-align: center;
}
.mvc-icon img {
  width: auto;
  height: 48px;
}

@media print, screen and (min-width: 768px) {
  .mv {
    background-image: url("../img/top/mainvisual-background-pc@2x.jpg");
    height: calc(100vh - 136px);
  }
  .mv-item {
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
    top: 320px;
  }
  .mv-text {
    font-size: 3.2rem;
    margin-bottom: 46px;
  }

  .mvc-icon img {
    width: auto;
    height: 84px;
  }
}
.contact-wrapper {
  display: grid;
  grid-template-columns: [full-start] minmax(16px, 1fr) [main-start] minmax(0, 1024px) [main-end] minmax(16px, 1fr) [full-end];
  background-color: #FFC584;
}

.contact {
  grid-column: 2/3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 0px;
}
@media print, screen and (min-width: 768px) {
  .contact {
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}
.contact-title {
  grid-column: 1/-1;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 1.6em;
}
@media print, screen and (min-width: 768px) {
  .contact-title {
    font-size: 3.2rem;
  }
}

.contact-btn {
  display: inline-block;
  grid-column: 1/-1;
  padding: 18px 28px;
  border-radius: 16px;
  text-align: center;
  background-color: #fff;
}
.contact-btn:hover {
  opacity: 0.8;
}
@media print, screen and (min-width: 768px) {
  .contact-btn {
    grid-column: span 6;
    border-radius: 32px;
    padding: 36px 55px;
  }
}
.contact-btn-title {
  color: #FA8500;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 1em;
}
.contact-btn-u-flexbox {
  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;
}
.contact-btn-text {
  color: #FA8500;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.contact-btn-annotation {
  color: #FA8500;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 8px;
}

.contact-btn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .contact-btn-grid {
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}

/* 電話番号アイコン */
.contact-phone-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.contact-phone-icon-fill00 {
  fill: #FA8500;
}

.contact-phone-icon-fill01 {
  fill: #FA8500;
}

/* メールアイコン */
.contact-mail-icon {
  display: inline-block;
  width: 30px;
  height: 24px;
  margin-right: 10px;
}

.contact-mail-icon-stroke00 {
  fill: none;
  stroke: #FA8500;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-mail-icon-stroke01 {
  fill: none;
  stroke: #FA8500;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.emergency-wrapper {
  display: grid;
  grid-template-columns: [full-start] minmax(16px, 1fr) [main-start] minmax(0, 1024px) [main-end] minmax(16px, 1fr) [full-end];
  background-color: #FFC584;
  background-color: #98E0E1;
}

.emergency {
  grid-column: 2/3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 0px;
}
@media print, screen and (min-width: 768px) {
  .emergency {
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}
.emergency-title {
  grid-column: 1/-1;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 1.6em;
}
@media print, screen and (min-width: 768px) {
  .emergency-title {
    font-size: 3.2rem;
  }
}

.emergency-btn {
  display: inline-block;
  grid-column: 1/-1;
  padding: 18px 28px;
  border-radius: 16px;
  text-align: center;
  background-color: #fff;
}
.emergency-btn:hover {
  opacity: 0.8;
}
@media print, screen and (min-width: 768px) {
  .emergency-btn {
    grid-column: span 6;
    border-radius: 32px;
    padding: 36px 55px;
  }
}
.emergency-btn-title {
  color: #6DCDCE;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-bottom: 1em;
}
.emergency-btn-u-flexbox {
  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;
}
.emergency-btn-text {
  color: #6DCDCE;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.emergency-btn-annotation {
  color: #6DCDCE;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.06em;
}

.emergency-btn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .emergency-btn-grid {
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}

/* 電話番号アイコン */
.emergency-phone-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.emergency-phone-icon-fill00 {
  fill: #6DCDCE;
}

.emergency-phone-icon-fill01 {
  fill: #6DCDCE;
}

/* メールアイコン */
.emergency-mail-icon {
  display: inline-block;
  width: 30px;
  height: 24px;
  margin-right: 10px;
}

.emergency-mail-icon-stroke00 {
  fill: none;
  stroke: #6DCDCE;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.emergency-mail-icon-stroke01 {
  fill: none;
  stroke: #6DCDCE;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pi-second-title {
  grid-column: 1/-1;
  position: relative;
  color: #6DCDCE;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1.6em;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F8F8), to(#fff));
  background: linear-gradient(#F8F8F8 0%, #fff 100%);
  border: 1px solid #F8F8F8;
  margin-bottom: 32px;
}
.pi-second-title::before {
  position: absolute;
  top: 0.5em;
  left: 1em;
  content: "";
  width: 4px;
  height: 1em;
  padding-right: 0.5em;
  border-left: 4px solid #6DCDCE;
}
@media print, screen and (min-width: 768px) {
  .pi-second-title {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .pi-second-title {
    grid-column: 1/10;
    margin-bottom: 72px;
  }
}

.pi-third-title {
  grid-column: 1/-1;
  color: #6DCDCE;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.4em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#6DCDCE));
     border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
  border-image-slice: 1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .pi-third-title {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .pi-third-title {
    grid-column: 1/10;
  }
}

.pi-list {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  margin-bottom: 52px;
}
@media print, screen and (min-width: 768px) {
  .pi-list {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 32px;
  }
}
@media print, screen and (min-width: 768px) {
  .pi-list {
    grid-column: 1/10;
    margin-bottom: 72px;
  }
}
.pi-list-item {
  grid-column: 1/-1;
}
.pi-list-item img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .pi-list-item {
    grid-column: span 4;
  }
}
.pi-list-title {
  text-align: center;
  text-align: center;
  color: #333333;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}
@media print, screen and (min-width: 768px) {
  .pi-list-title {
    font-size: 2.4rem;
  }
}

.nh-third-title {
  grid-column: 1/-1;
  color: #6DCDCE;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.4em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#6DCDCE));
     border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
  border-image-slice: 1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .nh-third-title {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .nh-third-title {
    grid-column: 1/10;
  }
}

.nh-list {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  margin-bottom: 52px;
}
@media print, screen and (min-width: 768px) {
  .nh-list {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 32px;
  }
}
@media print, screen and (min-width: 768px) {
  .nh-list {
    grid-column: 1/10;
    margin-bottom: 0;
  }
}
.nh-list-item {
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .nh-list-item {
    grid-column: span 4;
  }
}
.nh-list-item-photo a {
  display: inline-block;
  width: 100%;
}

.personal-title-img {
  position: relative;
  width: 100%;
  height: 100px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/personal-insurance/sp-personal-insurance-title-bg.jpg");
}
@media print, screen and (min-width: 768px) {
  .personal-title-img {
    height: 200px;
  }
}
@media print, screen and (min-width: 768px) {
  .personal-title-img {
    background-image: url("../img/personal-insurance/pc-personal-insurance-title-bg.jpg");
  }
}

.bi-second-title {
  grid-column: 1/-1;
  position: relative;
  color: #6DCDCE;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1.6em;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F8F8), to(#fff));
  background: linear-gradient(#F8F8F8 0%, #fff 100%);
  border: 1px solid #F8F8F8;
  margin-bottom: 32px;
}
.bi-second-title::before {
  position: absolute;
  top: 0.5em;
  left: 1em;
  content: "";
  width: 4px;
  height: 1em;
  padding-right: 0.5em;
  border-left: 4px solid #6DCDCE;
}
@media print, screen and (min-width: 768px) {
  .bi-second-title {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .bi-second-title {
    margin-bottom: 72px;
    grid-column: 1/10;
  }
}

.bi-third-title {
  grid-column: 1/-1;
  color: #6DCDCE;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.4em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#6DCDCE));
     border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
  border-image-slice: 1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .bi-third-title {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .bi-third-title {
    grid-column: 1/10;
  }
}

.bi-list {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
}
@media print, screen and (min-width: 768px) {
  .bi-list {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 32px;
  }
}
@media print, screen and (min-width: 768px) {
  .bi-list {
    grid-column: 1/10;
  }
}
.bi-list-item {
  grid-column: 1/-1;
}
.bi-list-item img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .bi-list-item {
    grid-column: span 4;
  }
}
.bi-list-title {
  text-align: center;
  text-align: center;
  color: #333333;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}
@media print, screen and (min-width: 768px) {
  .bi-list-title {
    font-size: 2.4rem;
  }
}

.nh-third-title {
  grid-column: 1/-1;
  color: #6DCDCE;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.4em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#6DCDCE));
     border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
  border-image-slice: 1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .nh-third-title {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .nh-third-title {
    grid-column: 1/10;
  }
}

.business-title-img {
  position: relative;
  width: 100%;
  height: 100px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/business-insurance/sp-business-insurance-title-bg.jpg");
}
@media print, screen and (min-width: 768px) {
  .business-title-img {
    height: 200px;
  }
}
@media print, screen and (min-width: 768px) {
  .business-title-img {
    background-image: url("../img/business-insurance/pc-business-insurance-title-bg.jpg");
  }
}

.fd-second-title {
  grid-column: 1/-1;
  position: relative;
  color: #6DCDCE;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1.6em;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F8F8), to(#fff));
  background: linear-gradient(#F8F8F8 0%, #fff 100%);
  border: 1px solid #F8F8F8;
  margin-bottom: 16px;
}
.fd-second-title::before {
  position: absolute;
  top: 0.5em;
  left: 1em;
  content: "";
  width: 4px;
  height: 1em;
  padding-right: 0.5em;
  border-left: 4px solid #6DCDCE;
}
@media print, screen and (min-width: 768px) {
  .fd-second-title {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .fd-second-title {
    margin-bottom: 32px;
    grid-column: 1/10;
  }
}

.fd-message {
  grid-column: 1/-1;
  margin-bottom: 52px;
}
@media print, screen and (min-width: 768px) {
  .fd-message {
    grid-column: 1/9;
    margin-bottom: 72px;
  }
}
.fd-message img {
  width: 100%;
  height: auto;
}

.fd-third-title-number-large {
  color: #6DCDCE;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .fd-third-title-number-large {
    font-size: 3.2rem;
  }
}

/* 経営理念 */
.fdmp {
  grid-column: 1/-1;
  margin-bottom: 52px;
}
@media print, screen and (min-width: 768px) {
  .fdmp {
    grid-column: 1/10;
    margin-bottom: 72px;
  }
}
.fdmp-title {
  color: #6DCDCE;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.4em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#6DCDCE));
     border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
  border-image-slice: 1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .fdmp-title {
    font-size: 2.4rem;
  }
}
.fdmp-text {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media print, screen and (min-width: 768px) {
  .fdmp-text {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}

/* 経営ビジョン */
.fdmv {
  grid-column: 1/-1;
  margin-bottom: 52px;
}
@media print, screen and (min-width: 768px) {
  .fdmv {
    grid-column: 1/10;
    margin-bottom: 72px;
  }
}
.fdmv-title {
  color: #6DCDCE;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.4em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#6DCDCE));
     border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
  border-image-slice: 1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .fdmv-title {
    font-size: 2.4rem;
  }
}
.fdmv-second-title {
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .fdmv-second-title {
    font-size: 1.8rem;
    letter-spacing: 0.06em;
  }
}
.fdmv-list {
  list-style-type: none;
}
.fdmv-list-item {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 2.25em;
}
@media print, screen and (min-width: 768px) {
  .fdmv-list-item {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
.fdmv-list-item:last-of-type {
  margin-bottom: 0;
}
.fdmv-list-item ul {
  list-style-type: disc;
  padding-left: 1.3em;
}

/* 行動指針 */
.fdbg {
  grid-column: 1/-1;
  margin-bottom: 52px;
}
@media print, screen and (min-width: 768px) {
  .fdbg {
    grid-column: 1/10;
    margin-bottom: 72px;
  }
}
.fdbg-title {
  color: #6DCDCE;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.4em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#6DCDCE));
     border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
  border-image-slice: 1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .fdbg-title {
    font-size: 2.4rem;
  }
}
.fdbg-list {
  list-style-type: decimal;
  padding-left: 3em;
}
.fdbg-list-item {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media print, screen and (min-width: 768px) {
  .fdbg-list-item {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
.fdbg-list-item:last-of-type {
  margin-bottom: 0;
}

/* お客様本位の業務運営方針 */
.fdco {
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .fdco {
    grid-column: 1/10;
  }
}
.fdco-title {
  color: #6DCDCE;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.4em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#6DCDCE));
     border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
  border-image-slice: 1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .fdco-title {
    font-size: 2.4rem;
  }
}
.fdco-table--sp-show {
  border-collapse: collapse;
}
@media print, screen and (min-width: 768px) {
  .fdco-table--sp-show {
    display: none;
  }
}
.fdco-table--pc-show {
  display: none;
  border-collapse: collapse;
}
@media print, screen and (min-width: 768px) {
  .fdco-table--pc-show {
    display: block;
  }
}
.fdco tr:nth-child(odd) {
  background: #d3f2f2;
}
.fdco tr:nth-child(even) {
  background: #F8F8F8;
}
.fdco tr th {
  color: #333333;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  background: #6DCDCE;
  border: 1px solid #fff;
  padding: 16px;
}
@media print, screen and (min-width: 768px) {
  .fdco tr th {
    font-size: 2rem;
    letter-spacing: 0.06em;
  }
}
.fdco tr td:first-child {
  vertical-align: middle;
}
.fdco td {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding: 16px;
  border: 1px solid #fff;
}
@media print, screen and (min-width: 768px) {
  .fdco td {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}

.fd-title-img {
  position: relative;
  width: 100%;
  height: 100px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/fiduciaryduty/sp-fiduciaryduty-title-bg.jpg");
}
@media print, screen and (min-width: 768px) {
  .fd-title-img {
    height: 200px;
  }
}
@media print, screen and (min-width: 768px) {
  .fd-title-img {
    background-image: url("../img/fiduciaryduty/pc-fiduciaryduty-title-bg.jpg");
  }
}

.ci-second-title {
  grid-column: 1/-1;
  position: relative;
  color: #6DCDCE;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1.6em;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F8F8), to(#fff));
  background: linear-gradient(#F8F8F8 0%, #fff 100%);
  border: 1px solid #F8F8F8;
  margin-bottom: 32px;
}
.ci-second-title::before {
  position: absolute;
  top: 0.5em;
  left: 1em;
  content: "";
  width: 4px;
  height: 1em;
  padding-right: 0.5em;
  border-left: 4px solid #6DCDCE;
}
@media print, screen and (min-width: 768px) {
  .ci-second-title {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .ci-second-title {
    margin-bottom: 72px;
    grid-column: 1/10;
  }
}

/* メッセージ */
.cm {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 0px;
  grid-column: 1/-1;
  margin-bottom: 52px;
}
@media print, screen and (min-width: 768px) {
  .cm {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .cm {
    grid-column: 1/10;
    margin-bottom: 72px;
  }
}
.cm-title {
  grid-column: 1/-1;
  color: #6DCDCE;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.4em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#6DCDCE));
     border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
  border-image-slice: 1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .cm-title {
    font-size: 2.4rem;
  }
}
.cm-text {
  grid-column: 1/-1;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 2.25em;
}
@media print, screen and (min-width: 768px) {
  .cm-text {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
.cm-img {
  grid-column: 1/-1;
}
.cm-img img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .cm-img {
    grid-column: 4/9;
  }
}

/* 会社概要 */
.co {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 0px;
  grid-column: 1/-1;
  margin-bottom: 52px;
}
@media print, screen and (min-width: 768px) {
  .co {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .co {
    grid-column: 1/10;
    margin-bottom: 72px;
  }
}
.co-title {
  grid-column: 1/-1;
  color: #6DCDCE;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.4em;
  padding-left: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#6DCDCE));
     border-image: linear-gradient(to left, #fff 0%, #6DCDCE 100%);
  border-image-slice: 1;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .co-title {
    font-size: 2.4rem;
  }
}
.co-table {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
  row-gap: 0px;
  border-top: 1px solid #ABABAB;
  border-left: 1px solid #ABABAB;
}
@media print, screen and (min-width: 768px) {
  .co-table {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    row-gap: 0px;
  }
}
.co-table-title {
  grid-column: 1/-1;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  vertical-align: middle;
  padding: 1em;
  border-right: 1px solid #ABABAB;
  border-bottom: 1px solid #ABABAB;
  background-color: #F8F8F8;
}
@media print, screen and (min-width: 768px) {
  .co-table-title {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
@media print, screen and (min-width: 768px) {
  .co-table-title {
    grid-column: 1/4;
  }
}
.co-table-item {
  grid-column: 1/-1;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding: 1em;
  border-right: 1px solid #ABABAB;
  border-bottom: 1px solid #ABABAB;
}
@media print, screen and (min-width: 768px) {
  .co-table-item {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
@media print, screen and (min-width: 768px) {
  .co-table-item {
    grid-column: 4/10;
  }
}

/* アクセスマップ */
/* メッセージ */
.googlemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 0px;
  grid-column: 1/-1;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    grid-template-columns: repeat(8, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 0px;
  }
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    grid-column: 1/10;
  }
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ci-title-img {
  position: relative;
  width: 100%;
  height: 100px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/company-information/sp-company-information-title-bg.jpg");
}
@media print, screen and (min-width: 768px) {
  .ci-title-img {
    height: 200px;
  }
}
@media print, screen and (min-width: 768px) {
  .ci-title-img {
    background-image: url("../img/company-information/pc-company-information-title-bg.jpg");
  }
}

.contact {
  /* 説明文 */
  /* 個人情報保護方針へのリンク */
}
.contact-second-title {
  grid-column: 1/-1;
  position: relative;
  color: #6DCDCE;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1.6em;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F8F8), to(#fff));
  background: linear-gradient(#F8F8F8 0%, #fff 100%);
  border: 1px solid #F8F8F8;
  margin-bottom: 32px;
}
.contact-second-title::before {
  position: absolute;
  top: 0.5em;
  left: 1em;
  content: "";
  width: 4px;
  height: 1em;
  padding-right: 0.5em;
  border-left: 4px solid #6DCDCE;
}
@media print, screen and (min-width: 768px) {
  .contact-second-title {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .contact-second-title {
    margin-bottom: 72px;
  }
}
.contact-text {
  grid-column: 1/-1;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 2.25em;
}
@media print, screen and (min-width: 768px) {
  .contact-text {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
.contact-privacy-link {
  text-align: center;
  grid-column: 1/-1;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 2.25em;
}
@media print, screen and (min-width: 768px) {
  .contact-privacy-link {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
.contact-privacy-link a {
  text-decoration: none;
}
.contact-privacy-link :hover {
  opacity: 0.8;
}
.contact-flow-img {
  grid-column: 1/-1;
  text-align: center;
  margin-bottom: 60px;
}
@media print, screen and (min-width: 768px) {
  .contact-flow-img {
    grid-column: 3/11;
    margin-bottom: 120px;
  }
}
.contact-flow-img img {
  width: 100%;
  height: auto;
}

.contactform-wrapper {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
  row-gap: 0px;
}
@media print, screen and (min-width: 768px) {
  .contactform-wrapper {
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    row-gap: 0px;
  }
}

.contactform {
  grid-column: 1/-1;
  margin-bottom: 8px;
  border: 1px solid #ABABAB;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .contactform {
    grid-column: 2/12;
    margin-bottom: 40px;
  }
}
.contactform tbody {
  grid-column: 1/-1;
}
.contactform-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #ABABAB;
}
.contactform-tr:last-child {
  border-bottom: none;
}
@media print, screen and (min-width: 768px) {
  .contactform-tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
}
.contactform-th {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  background-color: #F8F8F8;
  padding: 0.5em;
  vertical-align: middle;
  font-weight: 400;
}
@media print, screen and (min-width: 768px) {
  .contactform-th {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
  }
}
@media print, screen and (min-width: 768px) {
  .contactform-th {
    border-right: 1px solid #ABABAB;
  }
  .contactform-th:last-child {
    border-right: none;
  }
}
.contactform-td {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  width: 100%;
  display: inline-block;
  padding: 0.5em;
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) {
  .contactform-td {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
.contactform .hissu {
  border-radius: 4px;
  font-size: 1.2rem;
  padding: 4px 8px;
  color: white;
  background-color: #bf4040;
  font-weight: 400;
  margin-left: 8px;
}
.contactform .free {
  border-radius: 4px;
  font-size: 1.2rem;
  padding: 4px 8px;
  color: white;
  background-color: #0879fa;
  font-weight: 400;
  margin-left: 8px;
}

input {
  border: 1px solid #ABABAB;
  padding: 0.5em;
  margin: 0 8px;
}

label {
  white-space: nowrap;
}

textarea {
  width: 95%;
  border: 1px solid #ABABAB;
  padding: 0.5em;
  margin: 0 8px;
}

select {
  width: 95%;
  border: 1px solid #ABABAB;
  padding: 0.5em;
  margin: 0 0 0 8px;
}

.line {
  width: 95%;
}

.year {
  width: 80px;
}

.month,
.daily {
  width: 50px;
}

.zipcode3 {
  width: 80px;
}

.zipcode4 {
  width: 100px;
}

.nenrei {
  width: 80px;
}

.submit-btn-wrapper {
  grid-column: 1/-1;
}
@media print, screen and (min-width: 768px) {
  .submit-btn-wrapper {
    grid-column: 4/10;
    text-align: center;
  }
}

.submit-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 16px;
  background-color: #FA8500;
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 1em;
  padding-bottom: 1em;
  margin: 0;
  border: none;
}
.submit-btn:hover {
  opacity: 0.8;
}
@media print, screen and (min-width: 768px) {
  .submit-btn {
    font-size: 2rem;
    width: inherit;
  }
}

.contact-title-img {
  position: relative;
  width: 100%;
  height: 100px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/contact/sp-contact-title-bg.jpg");
}
@media print, screen and (min-width: 768px) {
  .contact-title-img {
    height: 200px;
  }
}
@media print, screen and (min-width: 768px) {
  .contact-title-img {
    background-image: url("../img/contact/pc-contact-title-bg.jpg");
  }
}

.sp-second-title {
  grid-column: 1/-1;
  position: relative;
  color: #6DCDCE;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1.6em;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F8F8), to(#fff));
  background: linear-gradient(#F8F8F8 0%, #fff 100%);
  border: 1px solid #F8F8F8;
  margin-bottom: 32px;
}
.sp-second-title::before {
  position: absolute;
  top: 0.5em;
  left: 1em;
  content: "";
  width: 4px;
  height: 1em;
  padding-right: 0.5em;
  border-left: 4px solid #6DCDCE;
}
@media print, screen and (min-width: 768px) {
  .sp-second-title {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .sp-second-title {
    margin-bottom: 72px;
  }
}
.sp-text {
  grid-column: 1/-1;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 2.25em;
}
@media print, screen and (min-width: 768px) {
  .sp-text {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
.sp-text :last-child {
  margin-bottom: 0;
}
.sp-list {
  grid-column: 1/-1;
  list-style-type: disc;
  padding-left: 2em;
  margin-bottom: 2.25em;
}
.sp-list-title {
  grid-column: 1/-1;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media print, screen and (min-width: 768px) {
  .sp-list-title {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
.sp-list-item {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media print, screen and (min-width: 768px) {
  .sp-list-item {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}

.solicitation-policy-title-img {
  position: relative;
  width: 100%;
  height: 100px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/solicitation-policy/sp-solicitation-policy-title-bg.jpg");
}
@media print, screen and (min-width: 768px) {
  .solicitation-policy-title-img {
    height: 200px;
  }
}
@media print, screen and (min-width: 768px) {
  .solicitation-policy-title-img {
    background-image: url("../img/solicitation-policy/pc-solicitation-policy-title-bg.jpg");
  }
}

.privacy {
  /* 説明文 */
}
.privacy-second-title {
  grid-column: 1/-1;
  position: relative;
  color: #6DCDCE;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1.6em;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F8F8), to(#fff));
  background: linear-gradient(#F8F8F8 0%, #fff 100%);
  border: 1px solid #F8F8F8;
  margin-bottom: 32px;
}
.privacy-second-title::before {
  position: absolute;
  top: 0.5em;
  left: 1em;
  content: "";
  width: 4px;
  height: 1em;
  padding-right: 0.5em;
  border-left: 4px solid #6DCDCE;
}
@media print, screen and (min-width: 768px) {
  .privacy-second-title {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .privacy-second-title {
    margin-bottom: 72px;
  }
}
.privacy-text {
  grid-column: 1/-1;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 2.25em;
}
@media print, screen and (min-width: 768px) {
  .privacy-text {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
.privacy-text :last-child {
  margin-bottom: 0;
}

p.privacy-text:nth-of-type(6) {
  margin-bottom: 0;
}

.pt-list {
  grid-column: 1/-1;
  list-style-type: disc;
  padding-left: 2em;
  margin-bottom: 2.25em;
}
.pt-list-item {
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media print, screen and (min-width: 768px) {
  .pt-list-item {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}

.privacy-title-img {
  position: relative;
  width: 100%;
  height: 100px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/privacy-policy/sp-privacy-policy-title-bg.jpg");
}
@media print, screen and (min-width: 768px) {
  .privacy-title-img {
    height: 200px;
  }
}
@media print, screen and (min-width: 768px) {
  .privacy-title-img {
    background-image: url("../img/privacy-policy/pc-privacy-policy-title-bg.jpg");
  }
}
/*# sourceMappingURL=style.css.map */