@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	base
 * ************************************************ */
html,
html *,
body,
header,
footer {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  color: #000;
  font-size: 1.6rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "MS Gothic", "MS PGothic", sans-serif;
  font-feature-settings: "palt";
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
  padding: 0;
  margin: 0;
}

.mincho {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu mincho", "MS Mincho", "MS PMincho", serif;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ************************************************
 *	共通クラス定義
 * *************************************************/
/* コンテンツ枠定義
---------------------------------------------------*/
#content-wrap {
  overflow: hidden;
  background-color: #fff;
}

.inner {
  max-width: 1350px;
  padding: 0 min(5%, 60px);
  margin: 0 auto;
}

.bg-beige {
  position: relative;
  background-color: #fbf5f2;
  z-index: 1;
}

@media print, screen and (min-width: 1025px) {
  .bg-beige-half {
    background: linear-gradient(to top, #fbf5f2 0%, #fbf5f2 48%, transparent 48%);
  }
}

.bg-brwon {
  background-color: #5a3c37;
  color: #fff;
}

.bg-brwon-gradient {
  position: relative;
}
.bg-brwon-gradient::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(-50deg, #a65b37 0%, #fff2b1 46.8%, #a65b37 100%);
  mix-blend-mode: multiply;
}

.bg-logo {
  position: relative;
  padding: 50px 0;
}
.bg-logo::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 68%;
  max-width: 440px;
  background: url(images/bg-logo.svg) no-repeat;
  background-position: right top;
  background-size: 100% auto;
  mix-blend-mode: multiply;
  padding-bottom: 102.2%;
}
@media print, screen and (min-width: 1025px) {
  .bg-logo::after {
    width: 648px;
    max-width: unset;
    height: 662px;
    padding-bottom: 0;
  }
}
.bg-logo.left::after {
  left: 0;
  right: unset;
  background-position: left top;
}
.bg-logo.--light::after {
  opacity: 0.1;
}
.bg-logo.no-pb {
  padding-bottom: 0;
}
@media print, screen and (min-width: 1025px) {
  .bg-logo {
    padding: 120px 0;
  }
}
.bg-logo .inner {
  position: relative;
  z-index: 1;
}

/* アンカーずれ補正
---------------------------------------------------*/
.anchor {
  display: block;
  padding-top: 75px;
  margin-top: -75px;
}
@media print, screen and (min-width: 1025px) {
  .anchor {
    padding-top: 70px;
    margin-top: -70px;
  }
}

/* flexクラス
---------------------------------------------------*/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 1025px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  justify-content: space-around;
}

.align_stretch {
  align-items: stretch !important;
}

@media print, screen and (min-width: 1025px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .row_reverse_tab {
    flex-direction: row-reverse;
  }
}

/*	PC／SP切り替え
---------------------------------------------------*/
.sp_only {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media print, screen and (min-width: 1025px) {
  .tab_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media print, screen and (min-width: 1025px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block;
}
@media print, screen and (min-width: 1025px) {
  .tab_sp_only {
    display: none;
  }
}

.tab_pc_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

.pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 1025px) {
  .pc_only_ib {
    display: inline-block;
  }
}

/* リンクボタン
---------------------------------------------------*/
.link-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 300px;
  height: 60px;
  background: url(images/link-btn.svg) no-repeat;
  background-position: center;
  background-size: cover;
  color: #5a3c37;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 9999px;
  margin: 20px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .link-btn {
    transition: 0.35s all ease;
  }
  .link-btn:hover {
    opacity: 0.6;
  }
}
.link-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  box-shadow: 4px 4px 3px rgba(90, 60, 55, 0.6);
  mix-blend-mode: multiply;
}

/* 見出し
---------------------------------------------------*/
.section-ttl {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu mincho", "MS Mincho", "MS PMincho", serif;
  text-align: center;
}
.section-ttl .sub {
  display: block;
  background: url(images/mark.svg) no-repeat;
  background-position: center top;
  background-size: 34px auto;
  color: #d4a827;
  line-height: 1;
  font-size: 2rem;
  padding-top: 50px;
}
.section-ttl .main {
  display: block;
  color: #5a3c37;
  font-size: 2.3rem;
  line-height: 1.6;
  margin-top: 30px;
}
@media print, screen and (min-width: 1025px) {
  .section-ttl .main {
    font-size: 3.6rem;
  }
}
.section-ttl .main.--white {
  color: #fff;
}
.section-ttl .main .--red {
  color: #c33828;
}
.section-ttl .main .--large {
  font-size: 3.2rem;
}
@media print, screen and (min-width: 1025px) {
  .section-ttl .main .--large {
    font-size: 4.8rem;
  }
}

/* ************************************************
 *	ヘッダー
 * *************************************************/
.header__top-bg {
  position: relative;
  box-shadow: 0 2px 4px 0 rgba(120, 52, 15, 0.3);
}

.header__top-inner {
  max-width: 1350px;
  margin: 0 auto;
}
@media print, screen and (min-width: 1025px) {
  .header__top-inner {
    position: relative;
    padding: 20px min(5%, 60px);
  }
}

.header__top {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 1025px) {
  .header__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.header__top-contact {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  order: 1;
  width: calc(100% - 75px);
  height: 75px;
  z-index: 2;
}
@media print, screen and (min-width: 1025px) {
  .header__top-contact {
    position: unset;
    order: 2;
    gap: 0 30px;
    width: auto;
    height: auto;
  }
}
.header__top-contact a.header__contact-btn {
  display: grid;
  place-items: center;
  width: 50%;
  height: 100%;
  font-weight: bold;
}
.header__top-contact a.header__contact-btn.mail {
  background-color: #a47a2c;
  color: #fff;
  line-height: 1;
}
@media print, screen and (min-width: 1025px) {
  .header__top-contact a.header__contact-btn.mail {
    order: 2;
    width: auto;
    height: auto;
    font-size: min(1.8vw, 2rem);
    padding: 20px 22px;
    transition: 0.35s all ease;
  }
  .header__top-contact a.header__contact-btn.mail:hover {
    opacity: 0.6;
  }
}
.header__top-contact a.header__contact-btn.mail img {
  width: 40px;
  margin: auto;
}
@media print, screen and (min-width: 1025px) {
  .header__top-contact a.header__contact-btn.mail img {
    width: 3vw;
    max-width: 47px;
    margin: 0;
  }
}
.header__top-contact a.header__contact-btn.tel {
  background-color: #5a3c37;
  color: #fff;
  line-height: 1;
}
@media print, screen and (min-width: 1025px) {
  .header__top-contact a.header__contact-btn.tel {
    order: 1;
    width: auto;
    height: auto;
    background-color: unset;
    color: #000;
  }
}
.header__top-contact a.header__contact-btn.tel picture {
  width: auto;
}
.header__top-contact a.header__contact-btn.tel img {
  width: 32px;
}
@media print, screen and (min-width: 1025px) {
  .header__top-contact a.header__contact-btn.tel img {
    width: 3vw;
    max-width: 38px;
  }
}
@media print, screen and (min-width: 1025px) {
  .header__top-contact a.header__contact-btn.tel span {
    font-size: min(3.2vw, 4rem);
  }
}
.header__top-contact a.header__contact-btn.tel p {
  margin-top: 5px;
}

.header__contact-btn-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 58px;
}
@media print, screen and (min-width: 1025px) {
  .header__contact-btn-inner {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0 12px;
    height: auto;
  }
}

/* スクロール後表示時 is-show
----------------------------------------------*/
header.is-show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

/* ロゴ
----------------------------------------------*/
.logo {
  order: 2;
  line-height: 1;
  margin-top: 75px;
}
@media print, screen and (min-width: 1025px) {
  .logo {
    order: 1;
    width: 386px;
    margin-top: 0;
  }
}
.logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px 0;
  padding: 16px 0;
}
@media print, screen and (min-width: 1025px) {
  .logo a {
    padding: 0;
    transition: 0.35s all ease;
  }
  .logo a:hover {
    opacity: 0.6;
  }
}
.logo img {
  width: 254px;
}
@media print, screen and (min-width: 1025px) {
  .logo img {
    width: 100%;
  }
}
.logo span {
  font-size: 1.3rem;
}
@media print, screen and (min-width: 1025px) {
  .logo span {
    font-size: 2rem;
  }
}

/* グローバルナビ
----------------------------------------------*/
.content__nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: url(images/mark.svg) no-repeat;
  background-position: center bottom;
  background-size: 23px auto;
  line-height: 1;
  border-top: 1px solid #fff;
  padding-bottom: 60px;
  margin-top: 60px;
}
@media print, screen and (min-width: 1025px) {
  .content__nav {
    flex-direction: row;
    background: none;
    border-top: none;
    border-left: 1px solid #d4a827;
    padding-bottom: 0;
    margin-top: 0;
  }
}
.content__nav li {
  border-bottom: 1px solid #fff;
}
@media print, screen and (min-width: 1025px) {
  .content__nav li {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid #d4a827;
  }
}
.content__nav a {
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding: 20px 0;
}
@media print, screen and (min-width: 1025px) {
  .content__nav a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px 0;
    height: 62px;
    color: #5a3c37;
    font-size: min(1.3vw, 18px);
    padding: 10px 0 0;
    transition: 0.35s all ease;
  }
  .content__nav a::after {
    content: "";
    width: 32px;
    height: 8px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: #5a3c37;
  }
  .content__nav a:hover {
    opacity: 0.6;
  }
}

/* ************************************************
 *	ハンバーガーメニュー関連
 * ************************************************ */
/* メニュートリガー
----------------------------------------*/
.menu-trigger {
  position: fixed;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 75px;
  height: 75px;
  vertical-align: middle;
  cursor: pointer;
  background-color: #fff;
  z-index: 10;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .menu-trigger {
    display: none;
  }
}
.menu-trigger::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #aa7e00;
  box-sizing: border-box;
  transition: 0.3s;
}
.menu-trigger .menu-trigger-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 48px;
  height: 28px;
}
.menu-trigger span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #a47a2c;
  border-radius: 1px;
  transition: all 0.5s;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: calc(50% - 1px);
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active::before {
  border-color: #fff;
}
.menu-trigger.active span:nth-of-type(1) {
  background-color: #5a3c37;
  transform: translateY(12px) rotate(-30deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  background-color: #5a3c37;
  transform: translateY(-13px) rotate(30deg);
}

/* メニュー枠
----------------------------------------*/
@media print, screen and (min-width: 1025px) {
  .global-nav {
    height: 80px;
  }
  .global-nav.thanks {
    display: none;
  }
}

.header__nav {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  background: url(images/bg-sp-menu.webp) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 75px 5% 24px;
  transition: all 0.8s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
}
@media print, screen and (min-width: 1025px) {
  .header__nav {
    position: unset;
    height: auto;
    padding: 0;
    z-index: 2;
    transform: unset;
    transition: unset;
    overflow: unset;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(120, 52, 15, 0.3);
    opacity: 1;
    visibility: visible;
    overflow: hidden;
  }
  .header__nav.fixed {
    position: fixed;
    top: 0;
    left: 50%;
    height: 70px;
    max-width: 100%;
    box-shadow: 0 2px 4px 0 rgba(120, 52, 15, 0.3);
    margin: 0 auto;
    -webkit-animation: fadein 0.8s;
    animation: fadein 0.8s;
    transform: translateX(-50%);
    z-index: 2;
  }
  .header__nav.fixed .header__nav-inner {
    max-width: 1350px;
    box-shadow: none;
  }
}
.header__nav.open {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.header__nav-inner {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .header__nav-inner {
    max-width: 1350px;
    background-color: #fff;
    padding: 5px min(5%, 60px);
    margin: 0 auto;
  }
}

/* ************************************************
 * FV
 * ************************************************ */
.fv img {
  width: 100%;
  margin: 0 auto;
}

/* ************************************************
 * リード
 * ************************************************ */
.top__lead-wrapper {
  max-width: 780px;
  margin: 50px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .top__lead-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1350px;
    height: 584px;
    background: url(images/lead-img.webp) no-repeat;
    background-position: min(95%, 100% - 60px) top;
    background-size: auto 100%;
    padding: 0 min(5%, 60px);
    margin: 120px auto 0;
  }
}

.top__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media print, screen and (min-width: 1025px) {
  .top__lead {
    align-items: flex-start;
    width: 100%;
  }
}
.top__lead h2 {
  width: 100%;
  background: url(images/lead-img.webp) no-repeat;
  background-position: -3vw center;
  background-size: auto 90%;
  cursor: vertical-text;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #6a3906;
  font-size: min(7.4vw, 4.8rem);
  line-height: 1.6;
  margin-right: 5%;
}
@media print, screen and (min-width: 1025px) {
  .top__lead h2 {
    background: none;
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    font-size: 4.8rem;
    margin-right: 0;
  }
}
.top__lead p {
  font-size: min(4.8vw, 3.6rem);
  font-weight: bold;
  margin-top: 1em;
  margin-left: 5%;
  margin-right: auto;
}
@media print, screen and (min-width: 1025px) {
  .top__lead p {
    font-size: 3.6rem;
    margin-top: 50px;
    margin-left: unset;
  }
}
.top__lead p .red {
  display: inline;
  color: #c33828;
  border-bottom: 1px solid #c33828;
}

.top__lead-features {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
  padding-top: 50px;
  margin-top: 50px;
}
@media print, screen and (min-width: 1025px) {
  .top__lead-features {
    flex-direction: row;
    justify-content: space-between;
    gap: 0 45px;
    padding-top: 90px;
    margin-top: 120px;
  }
}
.top__lead-features li {
  color: #5a3c37;
}
@media print, screen and (min-width: 1025px) {
  .top__lead-features li {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
.top__lead-features figure {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media print, screen and (min-width: 1025px) {
  .top__lead-features figure {
    flex-grow: 1;
  }
}
.top__lead-features h3 {
  font-size: 2.8rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 16px;
}
.top__lead-features p {
  text-align: justify;
  padding: 0 32px;
  margin-top: 16px;
}
@media print, screen and (min-width: 1025px) {
  .top__lead-features p {
    padding: 0;
  }
}

/* ************************************************
 * お問い合わせエリア
 * ************************************************ */
.contact-area {
  background: url(images/bg-contact-area.webp) no-repeat;
  background-position: left center;
  background-size: cover;
  color: #fff;
  border-radius: 0 72px 0 0;
  padding: 30px 0;
  margin: 50px 0 0 0;
}
@media print, screen and (min-width: 1025px) {
  .contact-area {
    border-radius: 0 100px 0 0;
    padding: 50px 0 50px min(5%, 60px);
    margin: 100px min(5%, 60px) 0 0;
  }
}
.contact-area.right {
  border-radius: 72px 0 0 0;
}
@media print, screen and (min-width: 1025px) {
  .contact-area.right {
    border-radius: 100px 0 0 0;
    padding: 50px min(5%, 60px) 50px 0;
    margin: 100px 0 0 min(5%, 60px);
  }
}
.contact-area.no-mt {
  margin-top: 0;
}
@media print, screen and (min-width: 1025px) {
  .contact-area.no-mt {
    margin: 100px min(5%, 60px) 0 0;
  }
}
@media print, screen and (min-width: 1025px) {
  .contact-area.no-mt.right {
    margin: 100px 0 0 min(5%, 60px);
  }
}

@media print, screen and (min-width: 1025px) {
  .contact-area-inner {
    max-width: 880px;
    margin: 0 auto;
  }
}

.contact-area-ttl {
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .contact-area-ttl {
    font-size: 3.4rem;
  }
}

.contact-area-link {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
@media print, screen and (min-width: 1025px) {
  .contact-area-link {
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
  }
}
.contact-area-link li {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  text-align: center;
}
.contact-area-link li:first-child {
  border-bottom: 1px solid #fff;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media print, screen and (min-width: 1025px) {
  .contact-area-link li:first-child {
    border-right: 1px solid #fff;
    border-bottom: none;
    padding-right: 100px;
    padding-bottom: 0;
    margin-right: 100px;
    margin-bottom: 0;
  }
}
.contact-area-link p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  flex-grow: 1;
  line-height: 1;
}
.contact-area-link p.contact-area-tel {
  font-size: 4.4rem;
}
.contact-area-link p.contact-area-mail {
  font-size: 3.2rem;
}
.contact-area-link p a {
  color: #fff;
}
.contact-area-link span {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-top: 10px;
}

/* ************************************************
 * 生活を脅かす怖い相続事例
 * ************************************************ */
.content__lead {
  max-width: 632px;
  text-align: justify;
  margin: 30px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .content__lead {
    font-size: 1.8rem;
  }
}

.content__case-list {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
  margin-top: 50px;
}
@media print, screen and (min-width: 1025px) {
  .content__case-list {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
@media print, screen and (min-width: 1025px) {
  .content__case-list li {
    width: calc(50% - 30px);
  }
}
.content__case-list img {
  width: 100%;
}
.content__case-list .content__case-caption {
  background-color: #a47a2c;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .content__case-list .content__case-caption {
    font-size: 3.2rem;
  }
}
.content__case-list .content__case-ttl {
  font-size: 2.4rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}
@media print, screen and (min-width: 1025px) {
  .content__case-list .content__case-ttl {
    font-size: 3.2rem;
  }
}
.content__case-list .content__case-text {
  text-align: justify;
  margin-top: 20px;
}

.lightbrown-box {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 560px;
  margin: 50px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .lightbrown-box {
    max-width: 100%;
  }
}
.lightbrown-box.bg-half {
  max-width: 100%;
  z-index: 1;
  padding-bottom: 8px;
}
.lightbrown-box.bg-half.--beige {
  background: linear-gradient(to top, #fbf5f2 0%, #fbf5f2 50%, transparent 50%);
}
.lightbrown-box.bg-half.--white {
  background: linear-gradient(to top, #fff 0%, #fff 50%, transparent 50%);
}
.lightbrown-box.bg-half .lightbrown-box-large-inner {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 640px;
  padding: 0 min(5%, 32px);
  z-index: 1;
}
@media print, screen and (min-width: 1025px) {
  .lightbrown-box.bg-half .lightbrown-box-large-inner {
    max-width: 1350px;
    padding: 0 min(5%, 60px);
  }
}
.lightbrown-box img {
  -webkit-filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.4));
}
.lightbrown-box .lightbrown-box-text-wrapper {
  position: absolute;
  font-weight: bold;
  padding: 0 min(5%, 60px);
}
.lightbrown-box .lightbrown-box-text-wrapper .lightbrown-box-text {
  font-size: min(6.4vw, 36px);
  line-height: 1.6;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .lightbrown-box .lightbrown-box-text-wrapper .lightbrown-box-text {
    font-size: min(3vw, 36px);
  }
}
.lightbrown-box .lightbrown-box-text-wrapper .lightbrown-box-text.small {
  font-size: min(5.5vw, 36px);
}
@media print, screen and (min-width: 1025px) {
  .lightbrown-box .lightbrown-box-text-wrapper .lightbrown-box-text.small {
    font-size: min(3vw, 36px);
  }
}
.lightbrown-box .lightbrown-box-text-wrapper .lightbrown-box-text-sub {
  max-width: 480px;
  font-size: min(3.7vw, 1.6rem);
  text-align: justify;
  border-top: 1px solid #fff;
  padding-top: 24px;
  margin: 24px 24px 0;
}
@media print, screen and (min-width: 1025px) {
  .lightbrown-box .lightbrown-box-text-wrapper .lightbrown-box-text-sub {
    max-width: 976px;
    padding-top: min(2vw, 30px);
    margin: min(2vw, 30px) 40px 0;
  }
}

/* ************************************************
 * 制度で守る4つの安心
 * ************************************************ */
.four-features {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 1350px;
  margin-top: 10px;
  z-index: 1;
}
@media print, screen and (min-width: 1025px) {
  .four-features {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 0 60px;
    padding: 0 min(5%, 60px);
    margin: 50px auto 0;
  }
}
.four-features li {
  padding: 30px min(10%, 60px);
  background: linear-gradient(to top, #fbf5f2 0%, #fbf5f2 43%, transparent 43%);
}
@media print, screen and (min-width: 1025px) {
  .four-features li {
    flex: 1;
    max-width: 262px;
    background: none;
    padding: 0;
  }
}
.four-features.brown li {
  background: none;
}

.four-features-ttl {
  text-align: center;
}
.four-features-ttl .num {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0 3em;
  background: url(images/bg-four-features.svg) no-repeat;
  background-position: center bottom;
  background-size: min(100%, 250px) auto;
  color: #d4a827;
  font-size: 2.4rem;
  line-height: 1;
  padding-top: 40px;
}
@media print, screen and (min-width: 1025px) {
  .four-features-ttl .num {
    gap: 0 min(4vw, 3em);
  }
}
.four-features-ttl .num i {
  position: absolute;
  bottom: -5px;
  font-size: 4.2rem;
  font-style: normal;
  letter-spacing: 0;
  text-indent: 0;
}
.four-features-ttl .text {
  display: block;
  color: #5a3c37;
  font-size: 2.8rem;
  line-height: 1.5;
  margin-top: 16px;
}
@media print, screen and (min-width: 1025px) {
  .four-features-ttl .text {
    font-size: min(1.8vw, 2.8rem);
  }
}
.four-features-ttl .text.--white {
  color: #fff;
}

.four-features-img {
  margin: 10px auto 0;
}

.four-features-text {
  max-width: 262px;
  text-align: justify;
  margin: 20px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .four-features-text {
    margin: 20px 0 0;
  }
}

/* ************************************************
 * 累計12,000件以上の相談実績
 * ************************************************ */
.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
  max-width: 246px;
  font-weight: bold;
  margin: 20px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .achievements-list {
    flex-direction: row;
    justify-content: space-between;
    gap: 0 48px;
    max-width: 100%;
    margin: 50px 0 0;
  }
}
.achievements-list li {
  position: relative;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .achievements-list li {
    flex: 1;
    max-width: 378px;
  }
}
.achievements-list li::before, .achievements-list li::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 17%;
  height: 100%;
  background: url(images/bg-achievements-list.svg) no-repeat;
  background-size: auto 100%;
}
.achievements-list li::before {
  top: 0;
  left: 0;
}
.achievements-list li::after {
  top: 0;
  right: 0;
  transform: scale(-1, 1);
}
.achievements-list .achievements-list-text-small {
  font-size: 2rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 1025px) {
  .achievements-list .achievements-list-text-small {
    font-size: min(2.2vw, 3rem);
  }
}
.achievements-list .achievements-list-text-large {
  font-size: 3.2rem;
  line-height: 1;
  margin-top: 8px;
}
@media print, screen and (min-width: 1025px) {
  .achievements-list .achievements-list-text-large {
    font-size: min(3.8vw, 5rem);
  }
}
.achievements-list .achievements-list-text-large span {
  font-size: 4.4rem;
}
@media print, screen and (min-width: 1025px) {
  .achievements-list .achievements-list-text-large span {
    font-size: min(5.8vw, 6.8rem);
  }
}

/* ************************************************
 * 相談〜申告までの流れ
 * ************************************************ */
.flow-img {
  max-width: 1020px;
  margin: 30px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .flow-img {
    padding: 0 min(5%, 60px);
    margin: 50px auto 0;
  }
}
.flow-img img {
  margin: 0 auto;
}

.flow-img02 {
  margin: 30px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .flow-img02 {
    margin: 50px auto 0;
  }
}

.point-text {
  text-align: center;
  margin-top: 30px;
}
@media print, screen and (min-width: 1025px) {
  .point-text {
    margin-top: 50px;
  }
}
.point-text p {
  display: inline;
  color: #c33828;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  border-bottom: 1px solid #c33828;
}
@media print, screen and (min-width: 1025px) {
  .point-text p {
    font-size: 3.6rem;
  }
}
.point-text p.small {
  font-size: 2rem;
}
@media print, screen and (min-width: 1025px) {
  .point-text p.small {
    font-size: 2.4rem;
  }
}

/* ************************************************
 * 通常プランと特別プランの特徴
 * ************************************************ */
.features-table {
  margin-top: 30px;
}
@media print, screen and (min-width: 1025px) {
  .features-table {
    margin-top: 50px;
  }
}

/* ************************************************
 * 「配偶者の税額軽減制度」とは
 * ************************************************ */
.tax-reduction-system-text {
  display: flex;
  flex-direction: column;
  gap: 1em 0;
  max-width: 900px;
  font-size: 1.8rem;
  text-align: justify;
  margin: 30px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .tax-reduction-system-text {
    margin: 50px auto 0;
  }
}

/* ************************************************
 * 配偶者の税額軽減制度の注意点
 * ************************************************ */
.important-point-list {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  border-top: 1px solid #d4a827;
  margin: 30px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .important-point-list {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
    margin: 50px auto 0;
  }
}
.important-point-list dt {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu mincho", "MS Mincho", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  padding-top: 30px;
}
@media print, screen and (min-width: 1025px) {
  .important-point-list dt {
    display: grid;
    place-items: center;
    width: 30%;
    font-size: 2.2rem;
    border-bottom: 1px solid #d4a827;
    padding: 0 40px;
  }
}
.important-point-list dd {
  text-align: justify;
  border-bottom: 1px solid #d4a827;
  padding: 20px 0 30px;
}
@media print, screen and (min-width: 1025px) {
  .important-point-list dd {
    width: 70%;
    padding: 60px 0;
  }
}

/* ************************************************
 * プランお申し込みの条件
 * ************************************************ */
.conditions-table {
  max-width: 900px;
  border-top: 1px solid #d4a827;
  border-bottom: 1px solid #d4a827;
  padding: 30px 0;
  margin: 30px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .conditions-table {
    display: flex;
    align-items: center;
    padding: 40px 0;
    margin: 50px auto 0;
  }
}

.conditions-table-heading {
  color: #5a3c37;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .conditions-table-heading {
    width: 30%;
    font-size: 2.2rem;
    padding: 0 20px;
  }
}

.conditions-table-list {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  margin-top: 24px;
}
@media print, screen and (min-width: 1025px) {
  .conditions-table-list {
    gap: 40px 0;
    width: 70%;
    margin-top: 0;
  }
}

.conditions-table-list-ttl {
  color: #5a3c37;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
@media print, screen and (min-width: 1025px) {
  .conditions-table-list-ttl {
    font-size: 2.2rem;
  }
}

.conditions-table-list-text {
  text-align: justify;
  margin-top: 4px;
}

/* ************************************************
 * 無料面談ご予約フォーム
 * ************************************************ */
.form-area {
  padding-top: 50px;
}
@media print, screen and (min-width: 1025px) {
  .form-area {
    padding-top: 120px;
  }
}

.form-container {
  max-width: 900px;
  margin: 30px auto 0;
}
@media print, screen and (min-width: 1025px) {
  .form-container {
    margin: 50px auto 0;
  }
}
.form-container dd {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 1025px) {
  .form-container dd {
    margin-bottom: 50px;
  }
}
.form-container label {
  display: block;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu mincho", "MS Mincho", "MS PMincho", serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 1025px) {
  .form-container label {
    font-size: 2.4rem;
  }
}
.form-container input:not([type=radio]):not([type=checkbox]), .form-container textarea {
  width: 100%;
  color: #000;
  font-size: 2rem;
  border: none;
  padding: 12px 20px;
}
@media print, screen and (min-width: 1025px) {
  .form-container input:not([type=radio]):not([type=checkbox]), .form-container textarea {
    font-size: 2.4rem;
  }
}
.form-container .select-icon {
  position: relative;
}
.form-container .select-icon::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  width: 32px;
  height: 16px;
  background-color: #d4a827;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateY(-50%);
  pointer-events: none;
}
.form-container select {
  width: 100%;
  background-color: #fff;
  color: inherit;
  font-size: 2rem;
  font-family: inherit;
  font-size: inherit;
  border: none;
  padding: 12px 20px;
}
@media print, screen and (min-width: 1025px) {
  .form-container select {
    font-size: 2.4rem;
  }
}
.form-container textarea {
  height: 12em;
}
.form-container .required {
  display: inline-block;
  color: #C30606;
  margin-left: 5px;
}
.form-container button[type=submit] {
  display: inline-block;
  width: 300px;
  background-color: #fff;
  color: #5a3c37;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu mincho", "MS Mincho", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border: 1px solid #5a3c37;
  border-radius: 9999px;
  padding: 17px 0;
  cursor: pointer;
  transition: 0.35s all ease;
}
@media print, screen and (min-width: 1025px) {
  .form-container button[type=submit]:hover {
    opacity: 0.6;
  }
}
.form-container .error {
  background-color: rgba(195, 6, 6, 0.075);
  color: #c33828;
  border: 1px solid #c33828;
  padding: 20px;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 1025px) {
  .form-container .error {
    margin-bottom: 50px;
  }
}

/* ************************************************
 *	入力内容のご確認
 * ************************************************ */
.confirm__wrapper {
  background-color: #fbf5f2;
}
.confirm__wrapper h1 {
  font-size: 2.4rem;
  text-align: center;
  padding-top: 60px;
}
@media print, screen and (min-width: 1025px) {
  .confirm__wrapper h1 {
    font-size: 3.2rem;
  }
}

.value-box {
  background-color: #fff;
  font-size: 2rem;
  padding: 12px 20px;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 1025px) {
  .value-box {
    font-size: 2.4rem;
    margin-bottom: 50px;
  }
}

.confirm__submit-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px 0;
  padding-bottom: 60px;
}
@media print, screen and (min-width: 1025px) {
  .confirm__submit-area {
    flex-direction: row;
    justify-content: center;
    gap: 0 30px;
  }
}
.confirm__submit-area button {
  margin: 0;
}

a.back-btn {
  display: inline-block;
  width: 300px;
  background-color: #5a3c37;
  color: #fff;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu mincho", "MS Mincho", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border: 1px solid #5a3c37;
  border-radius: 9999px;
  padding: 17px 0;
  cursor: pointer;
  transition: 0.35s all ease;
}
@media print, screen and (min-width: 1025px) {
  a.back-btn:hover {
    opacity: 0.6;
  }
}

/* ************************************************
 *	送信完了（サンクスページ）
 * ************************************************ */
.thanks__wrapper {
  height: 515px;
  display: grid;
  place-items: center;
  background: url(images/bg-thanks-sp.webp) no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .thanks__wrapper {
    height: 650px;
    background: url(images/bg-thanks.webp) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.thanks__wrapper h1 {
  background: url(images/mark.svg) no-repeat;
  background-position: center top;
  background-size: 24px auto;
  font-size: 3rem;
  line-height: 1.6;
  padding-top: 50px;
}
@media print, screen and (min-width: 1025px) {
  .thanks__wrapper h1 {
    font-size: 3.6rem;
    padding-top: 80px;
  }
}
.thanks__wrapper .thanks__text {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 40px 0;
}
@media print, screen and (min-width: 1025px) {
  .thanks__wrapper .thanks__text {
    font-size: 2.4rem;
  }
}

/* ************************************************
 *	フッター
 * ************************************************ */
/* トップへ戻るボタン
----------------------------------------*/
.pagetop-btn {
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: block;
  width: 60px;
  z-index: 1;
}
@media print, screen and (min-width: 1025px) {
  .pagetop-btn {
    right: 30px;
    bottom: 30px;
    width: 80px;
    transition: 0.35s all ease;
  }
  .pagetop-btn:hover {
    opacity: 0.6;
  }
}

/* 枠
----------------------------------------*/
footer {
  margin: 0 auto;
  padding: 50px 0 30px;
}
@media print, screen and (min-width: 1025px) {
  footer {
    padding: 50px 0;
  }
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media print, screen and (min-width: 1025px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
  }
}

.footer__info-area {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .footer__info-area {
    gap: 40px 0;
    text-align: left;
  }
}

.footer__info-logo {
  display: block;
  width: 254px;
  margin: 0 auto;
}
@media print, screen and (min-width: 1025px) {
  .footer__info-logo {
    width: 364px;
    margin: 0;
    transition: 0.35s all ease;
  }
  .footer__info-logo:hover {
    opacity: 0.6;
  }
}
.footer__info-logo span {
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
}
@media print, screen and (min-width: 1025px) {
  .footer__info-logo span {
    font-size: 1.9rem;
    text-align: justify;
  }
}

.footer__link-area {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media print, screen and (min-width: 1025px) {
  .footer__link-area {
    gap: 40px 0;
  }
}

.footer__link {
  border-top: 1px solid #000;
}
@media print, screen and (min-width: 1025px) {
  .footer__link {
    display: flex;
    justify-content: flex-end;
    gap: 0 1em;
    border-top: 1px none;
  }
}
.footer__link li {
  border-bottom: 1px solid #000;
}
@media print, screen and (min-width: 1025px) {
  .footer__link li {
    border-bottom: none;
  }
  .footer__link li:not(:last-child) {
    border-right: 1px solid #000;
    padding-right: 1em;
  }
}
.footer__link a {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 20px 0;
}
@media print, screen and (min-width: 1025px) {
  .footer__link a {
    font-size: min(1.5vw, 1.8rem);
    padding: 0;
    transition: 0.35s all ease;
  }
  .footer__link a:hover {
    opacity: 0.6;
  }
}

.footer__policy {
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width: 1025px) {
  .footer__policy {
    text-align: right;
  }
}
@media print, screen and (min-width: 1025px) {
  .footer__policy a {
    transition: 0.35s all ease;
  }
  .footer__policy a:hover {
    opacity: 0.6;
  }
}

/* コピーライト
----------------------------------------*/
.copyright {
  display: block;
  font-size: 1rem;
  text-align: center;
  margin-top: 30px;
}
@media print, screen and (min-width: 1025px) {
  .copyright {
    font-size: 1.6rem;
    text-align: right;
    margin-top: 15px;
  }
}/*# sourceMappingURL=style.css.map */





/* 20251110 CSS
----------------------------------------*/
.form-container dl {
    white-space:nowrap;
}
.form-container dl > dd:nth-child(12),
.form-container dl > dd:nth-child(13),
.form-container dl > dd:nth-child(15),
.form-container dl > dd:nth-child(16),
.form-container dl > dd:nth-child(18),
.form-container dl > dd:nth-child(19) {
    display:inline-block;
    vertical-align:top;
    width:calc((100% - 50px) / 2);
}
.form-container dl > dd:nth-child(13),
.form-container dl > dd:nth-child(16),
.form-container dl > dd:nth-child(19) {
    margin-left:50px;
}
.confirm__wrapper .form-container {
    font-size:0;
}
.form-container > div:nth-child(6),
.form-container > div:nth-child(7),
.form-container > div:nth-child(8),
.form-container > div:nth-child(9),
.form-container > div:nth-child(10),
.form-container > div:nth-child(11) {
    display:inline-block;
    vertical-align:bottom;
    width:calc((100% - 50px) / 2);
}
.form-container > div:nth-child(7),
.form-container > div:nth-child(9),
.form-container > div:nth-child(11) {
    margin-left:50px;
}
.form-container button[type=submit] {
    background-color:#5a3c37;
    color:#ffffff;
}
a.back-btn {
    background-color:#ffffff;
    color:#5a3c37;
}
.content__tel {
    width:100%;
    margin:50px 0 0;
    text-align:center;
}
.content__tel a {
    display:inline-block;
    vertical-align:top;
    width:auto;
    font-size:64px;
    line-height:64px;
    color:#5a3c37;
    font-weight:bold;
    font-family:"Hiragino Mincho ProN","Hiragino Mincho Pro","Yu mincho","MS Mincho","MS PMincho",serif;
}
.content__tel a img {
    display:inline-block;
    vertical-align:top;
    width:auto;
    height:50px;
    margin:7px 5px 0 0;
}
.content__tel span {
    display:block;
    width:100%;
    margin:15px 0 0;
    font-size:24px;
    line-height:24px;
    color:#5a3c37;
    font-weight:bold;
}
.map_list {
    width:100%;
    margin:100px 0 0;
    padding:100px 0 0;
    font-size:0;
    line-height:0;
    border-top:1px solid #5a3c37;
}
.map_list > div {
    display:inline-block;
    vertical-align:top;
    width:calc((100% - 75px) /2);
}
.map_list > div:nth-child(2) {
    margin:0 0 0 75px;
}
.map_list div > p:nth-child(1) {
    font-size:30px;
    line-height:30px;
    text-align:center;
    color:#5a3c37;
    font-weight:bold;
    font-family:"Hiragino Mincho ProN","Hiragino Mincho Pro","Yu mincho","MS Mincho","MS PMincho",serif;
}
.map_list div div {
    width:100%;
    margin:50px 0 0;
    aspect-ratio:7 / 5;
    position:relative;
    overflow:hidden;
}
.map_list div div iframe {
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
}
.map_list div > p:nth-child(3) {
    margin:20px 0 0;
    font-size:16px;
    line-height:32px;
    color:#5a3c37;
}
.confirm__wrapper .inner > p:nth-child(2) {
    width:100%;
    margin:50px 0 0;
    font-size:20px;
    line-height:40px;
    text-align:center;
    color:red;
}
.confirm__wrapper .inner > p:nth-child(2) br {
    display:none;
}
@media print, screen and (max-width:1025px) {
.form-container dl > dd:nth-child(12),
.form-container dl > dd:nth-child(13),
.form-container dl > dd:nth-child(15),
.form-container dl > dd:nth-child(16),
.form-container dl > dd:nth-child(18),
.form-container dl > dd:nth-child(19) {
    display:block;
    width:100%;
}
.form-container dl > dd:nth-child(13),
.form-container dl > dd:nth-child(16),
.form-container dl > dd:nth-child(19) {
    margin-left:0;
}
.form-container dl > dd:nth-child(12),
.form-container dl > dd:nth-child(15),
.form-container dl > dd:nth-child(18) {
    margin-bottom:20px;
}
.form-container > div:nth-child(6),
.form-container > div:nth-child(7),
.form-container > div:nth-child(8),
.form-container > div:nth-child(9),
.form-container > div:nth-child(10),
.form-container > div:nth-child(11) {
    display:block;
    width:100%;
}
.form-container > div:nth-child(7),
.form-container > div:nth-child(9),
.form-container > div:nth-child(11) {
    margin-left:0;
}
.form-container > div:nth-child(6),
.form-container > div:nth-child(8),
.form-container > div:nth-child(10) {
    margin-bottom:20px;
}
.form-container > div:nth-child(6) .value-box,
.form-container > div:nth-child(8) .value-box,
.form-container > div:nth-child(10) .value-box {
    margin-bottom:0;
}
.content__tel {
    margin:40px 0 0;
}
.content__tel a {
    font-size:40px;
    line-height:40px;
}
.content__tel a img {
    height:30px;
    margin:5px 5px 0 0;
}
.content__tel span {
    margin:15px 0 0;
    font-size:14px;
    line-height:14px;
}
.map_list {
    margin:60px 0 0;
    padding:60px 0 0;
}
.map_list > div {
    display:block;
    width:100%;
}
.map_list > div:nth-child(2) {
    margin:50px 0 0 0;
}
.map_list div > p:nth-child(1) {
    font-size:20px;
    line-height:20px;
}
.map_list div div {
    margin:30px 0 0;
    aspect-ratio:1 / 1;
}
.map_list div > p:nth-child(3) {
    margin:10px 0 0;
    font-size:14px;
    line-height:28px;
}
.confirm__wrapper .inner > p:nth-child(2) {
    margin:30px 0 0;
    font-size:16px;
    line-height:32px;
}
.confirm__wrapper .inner > p:nth-child(2) br {
    display:inline-block;
}
}




