@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap");
/* ルート（rem の基準）。必要に応じてメディアクエリで上書き */
:root {
  color-scheme: light dark;
  /* ブラウザのフォーム色やスクロール等を自動調整 */ }

/* レイアウト扱いやすくする */
*,
*::before,
*::after {
  box-sizing: border-box; }

/*-----------------------------------
    ブレイクポイント
-----------------------------------*/
/* 基本 */
html {
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  height: 100%; }

body {
  margin: 0;
  min-height: 100%;
  font-size: 16px;
  line-height: 1.87;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f9f8f3 url("../img/back_header.png") repeat-x left top;
  color: inherit;
  text-rendering: optimizeLegibility; }
  @media only screen and (max-width: 599px) {
    body {
      font-size: 14px; } }

/* メディア要素の扱い */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto; }

/* フォーム要素のフォント揃え */
input, button, textarea, select {
  font: inherit;
  color: inherit; }

/* リンク・ボタンの最低限の扱い（必要に応じて調整） */
a {
  color: inherit;
  text-decoration: none; }

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer; }

/* アニメーション/スクロールを抑える設定（ユーザーの設定を尊重） */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important; } }
li {
  list-style: none;
  padding-left: 0;
  margin-left: 0; }

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, input, textarea, p, th, td {
  margin: 0;
  padding: 0; }

/*address, caption, em, strong, th {font-style:normal;}
table {border-collapse:collapse;border-spacing:0;}
caption, th {text-align:left;}
q:before ,q:after {content:'';}
object, embed {vertical-align:top;}
h1, h2, h3, h4, h5, h6 {font-size:100%;}
img, abbr {border:0;vertical-align:bottom;}
sup {line-height:100%;}
*/
/*スマホだけ*/
.sp {
  display: none; }

.pc {
  display: block; }

/*スマホだけ改行*/
@media screen and (max-width: 959px) {
  .pc {
    display: none; }

  .sp {
    display: block; } }
.spOnly {
  display: none; }
  @media only screen and (max-width: 599px) {
    .spOnly {
      display: block; } }

@media only screen and (max-width: 599px) {
  .spNone {
    display: none; } }

@media only screen and (max-width: 959px) {
  .pcOnly {
    display: none; } }

@media only screen and (min-width: 960px) {
  .pcNone {
    display: none; } }

br .spOnly {
  display: none; }
  @media only screen and (max-width: 599px) {
    br .spOnly {
      display: inline-block; } }
@media only screen and (max-width: 599px) {
  br .spNone {
    display: none; } }

.logo_choei {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 100px;
  height: auto;
  z-index: 99; }
  @media only screen and (max-width: 599px) {
    .logo_choei {
      top: 20px;
      right: 20px;
      width: 60px; } }

a.btn_black {
  display: block;
  color: #fff;
  font-family: "Shippori Mincho";
  font-size: 32px;
  line-height: 1em;
  background: #000;
  border-radius: 5px;
  text-align: center;
  padding: 8px 0 16px;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s; }
  @media only screen and (max-width: 959px) {
    a.btn_black {
      font-size: 28px; } }
  @media only screen and (max-width: 599px) {
    a.btn_black {
      font-size: 22px; } }
  a.btn_black:hover {
    box-shadow: 0 0 0;
    transition: 0.5s; }
  a.btn_black img {
    width: 243px;
    height: auto;
    margin: 0 auto; }
    @media only screen and (max-width: 599px) {
      a.btn_black img {
        width: 180px; } }
  a.btn_black span.arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px; }
    a.btn_black span.arrow::after {
      content: "";
      display: inline-block;
      width: 30px;
      height: 30px;
      background-image: url("../img/btn_arrow.svg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      flex: 0 0 30px;
      transform: translateY(2px); }
      @media only screen and (max-width: 599px) {
        a.btn_black span.arrow::after {
          width: 24px;
          height: 24px;
          flex: 0 0 24px; } }

header {
  width: 880px;
  margin: 60px auto 0;
  position: relative; }
  @media only screen and (max-width: 959px) {
    header {
      width: auto;
      margin: 50px 30px 0; } }
  @media only screen and (max-width: 599px) {
    header {
      margin: 40px 25px 0; } }
  header .back_town1 {
    background: url("../img/back_town1.png") no-repeat right top;
    background-size: cover;
    width: 432px;
    height: 291px;
    position: absolute;
    right: -40px;
    top: -60px;
    z-index: 1; }
    @media only screen and (max-width: 959px) {
      header .back_town1 {
        right: 0;
        top: -20px; } }
    @media only screen and (max-width: 599px) {
      header .back_town1 {
        width: 280px;
        height: 189px; } }
  header .back_person {
    background: url("../img/back_person.png") no-repeat left top;
    background-size: cover;
    width: 857px;
    height: 480px;
    position: absolute;
    left: -170px;
    bottom: 0;
    z-index: 1; }
    @media only screen and (max-width: 959px) {
      header .back_person {
        width: 700px;
        height: 480px;
        left: -80px; } }
    @media only screen and (max-width: 599px) {
      header .back_person {
        width: 380px;
        height: 261px;
        left: -30px; } }
  header .for {
    font-size: 28px;
    line-height: 1.71;
    color: #ed7146;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    z-index: 99; }
    @media only screen and (max-width: 959px) {
      header .for {
        font-size: 22.4px;
        line-height: 1.71; } }
    @media only screen and (max-width: 599px) {
      header .for {
        font-size: 15.4px;
        line-height: 1.71; } }
  header h1 {
    font-size: 60px;
    line-height: 1.33;
    font-family: "Shippori Mincho";
    font-weight: 400;
    margin: 0 0 60px;
    position: relative;
    letter-spacing: -2px;
    z-index: 99; }
    @media only screen and (max-width: 959px) {
      header h1 {
        font-size: 48px;
        line-height: 1.33; } }
    @media only screen and (max-width: 599px) {
      header h1 {
        font-size: 33px;
        line-height: 1.33; } }
    header h1 span {
      background-image: linear-gradient(0deg, transparent 0.1em, #fff 0.1em, #fff 1.15em, transparent 1.15em); }
  header .information {
    margin: 0 0 0 auto;
    bottom: 30px;
    width: 540px;
    padding: 30px 30px 30px 100px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.9) 100%);
    background-repeat: no-repeat;
    position: relative;
    z-index: 99; }
    @media only screen and (max-width: 959px) {
      header .information {
        padding: 20px 20px 20px 150px; } }
    @media only screen and (max-width: 599px) {
      header .information {
        width: 100%;
        padding: 20px;
        background: rgba(255, 255, 255, 0.7); } }

section .wrap_600 {
  width: 600px;
  margin: 0 auto;
  padding: 60px 0; }
  @media only screen and (max-width: 959px) {
    section .wrap_600 {
      width: auto;
      margin: 0 30px;
      padding: 40px 0; } }
  @media only screen and (max-width: 599px) {
    section .wrap_600 {
      width: auto;
      margin: 0 20px;
      padding: 20px 0; } }
section .white_box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  position: relative; }
  @media only screen and (max-width: 959px) {
    section .white_box {
      border-radius: 10px;
      padding: 20px; } }
section .title_kakko {
  font-size: 38px;
  line-height: 1.22;
  text-align: center;
  margin: 60px 0;
  font-family: "Shippori Mincho"; }
  @media only screen and (max-width: 959px) {
    section .title_kakko {
      font-size: 30.4px;
      line-height: 1.22; } }
  @media only screen and (max-width: 599px) {
    section .title_kakko {
      font-size: 20.9px;
      line-height: 1.22; } }
  @media only screen and (max-width: 959px) {
    section .title_kakko {
      margin: 30px 0; } }
  section .title_kakko span {
    position: relative;
    padding: 0 1em;
    display: inline-block;
    top: 0; }
    section .title_kakko span:before {
      position: absolute;
      top: 0;
      content: '';
      width: 8px;
      height: 100%;
      display: inline-block;
      border-left: solid 1px #807355;
      border-top: solid 1px #807355;
      border-bottom: solid 1px #807355;
      left: 0; }
    section .title_kakko span:after {
      position: absolute;
      top: 0;
      width: 8px;
      height: 100%;
      display: inline-block;
      content: '';
      border-top: solid 1px #807355;
      border-right: solid 1px #807355;
      border-bottom: solid 1px #807355;
      right: 0; }
section .line_tate:before {
  content: "";
  border-left: 1px solid #000;
  width: 0;
  height: 70px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%); }
section .title_yellow {
  font-size: 38px;
  line-height: 1.22;
  font-family: "Shippori Mincho";
  font-weight: 400;
  margin: 30px 0;
  position: relative;
  text-align: center;
  z-index: 99; }
  @media only screen and (max-width: 959px) {
    section .title_yellow {
      font-size: 30.4px;
      line-height: 1.22; } }
  @media only screen and (max-width: 599px) {
    section .title_yellow {
      font-size: 20.9px;
      line-height: 1.22; } }
  section .title_yellow span {
    background-image: linear-gradient(0deg, transparent 0.1em, #f6fb81 0.1em, #f6fb81 1.15em, transparent 1.15em); }
  @media only screen and (max-width: 959px) {
    section .title_yellow {
      margin: 0; } }
  @media only screen and (max-width: 959px) {
    section .title_yellow {
      margin: 10px; } }

#problem {
  background: url("../img/back_section1.png") top center;
  font-family: "Shippori Mincho"; }
  #problem h2.problem {
    font-size: 38px;
    line-height: 1.22;
    text-align: center;
    font-weight: 400;
    margin: 0;
    padding: 60px 0 0; }
    @media only screen and (max-width: 959px) {
      #problem h2.problem {
        font-size: 30.4px;
        line-height: 1.22; } }
    @media only screen and (max-width: 599px) {
      #problem h2.problem {
        font-size: 20.9px;
        line-height: 1.22; } }
    @media only screen and (max-width: 959px) {
      #problem h2.problem {
        padding: 40px 0 0; } }
    @media only screen and (max-width: 599px) {
      #problem h2.problem {
        padding: 30px 0 0; } }
  #problem .image_1 {
    background: url("../img/image_1.svg") no-repeat right top;
    background-size: cover;
    width: 200px;
    height: 200px;
    position: absolute;
    right: -140px;
    bottom: -40px; }
    @media only screen and (max-width: 959px) {
      #problem .image_1 {
        width: 150px;
        height: 150px;
        right: -20px; } }
    @media only screen and (max-width: 599px) {
      #problem .image_1 {
        width: 120px;
        height: 120px;
        right: -10px;
        bottom: inherit;
        top: -20px; } }
  #problem .image_2 {
    background: url("../img/image_2.svg") no-repeat right top;
    background-size: cover;
    width: 200px;
    height: 200px;
    position: absolute;
    left: -140px;
    bottom: -40px; }
    @media only screen and (max-width: 959px) {
      #problem .image_2 {
        width: 150px;
        height: 150px;
        left: -20px; } }
    @media only screen and (max-width: 599px) {
      #problem .image_2 {
        width: 120px;
        height: 120px;
        left: -10px;
        bottom: inherit;
        top: -90px; } }
  #problem .btn_black {
    width: 420px;
    margin: 40px auto 0; }
    @media only screen and (max-width: 599px) {
      #problem .btn_black {
        width: 80%;
        margin: 20px auto 0; } }
  #problem .list_pro ul li {
    position: relative;
    padding-left: 45px;
    font-size: 22px;
    line-height: 2.08; }
    @media only screen and (max-width: 959px) {
      #problem .list_pro ul li {
        font-size: 17.6px;
        line-height: 2.08; } }
    @media only screen and (max-width: 599px) {
      #problem .list_pro ul li {
        font-size: 12.1px;
        line-height: 2.08; } }
    @media only screen and (max-width: 959px) {
      #problem .list_pro ul li {
        padding-left: 30px; } }
    @media only screen and (max-width: 599px) {
      #problem .list_pro ul li {
        font-size: 16px; } }
    #problem .list_pro ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      background-image: url("../img/icon_li_pro.png");
      background-size: cover;
      width: 31px;
      height: 31px;
      background-repeat: no-repeat;
      background-position: center; }
      @media only screen and (max-width: 959px) {
        #problem .list_pro ul li::before {
          width: 24px;
          height: 24px; } }
      @media only screen and (max-width: 599px) {
        #problem .list_pro ul li::before {
          width: 18px;
          height: 18px; } }
  #problem h3 {
    font-size: 22px;
    line-height: 2.08;
    font-weight: 400;
    text-align: center; }
    @media only screen and (max-width: 959px) {
      #problem h3 {
        font-size: 17.6px;
        line-height: 2.08; } }
    @media only screen and (max-width: 599px) {
      #problem h3 {
        font-size: 12.1px;
        line-height: 2.08; } }
    #problem h3 span {
      background-image: linear-gradient(0deg, transparent 0.1em, #f6fb81 0.1em, #f6fb81 1.15em, transparent 1.15em); }
    @media only screen and (max-width: 599px) {
      #problem h3 {
        font-size: 16px; } }
  #problem .hikaku {
    padding: 0 0 40px; }
    #problem .hikaku img.table_hikaku {
      width: auto;
      margin: 10px auto;
      padding: 0 10px; }
      @media only screen and (max-width: 599px) {
        #problem .hikaku img.table_hikaku {
          width: 100%; } }
  #problem .rei {
    padding: 0 0 80px; }
  #problem dl.owned {
    display: flex;
    margin: 40px auto 0;
    width: 880px;
    background: #fff;
    border-radius: 10px; }
    @media only screen and (max-width: 959px) {
      #problem dl.owned {
        width: auto;
        margin: 40px 20px 0; } }
    @media only screen and (max-width: 599px) {
      #problem dl.owned {
        flex-direction: column; } }
    #problem dl.owned dt {
      width: 45%;
      position: relative; }
      @media only screen and (max-width: 599px) {
        #problem dl.owned dt {
          width: 100%; } }
      #problem dl.owned dt::after {
        content: "";
        position: absolute;
        top: 10px;
        left: 10px;
        display: block;
        background: url("../img/icon_owned.svg") no-repeat left top;
        background-size: cover;
        width: 60px;
        height: 60px; }
      #problem dl.owned dt .photo {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 10px 0 0 10px;
        /* 左上、右上、右下、左下 */ }
        @media only screen and (max-width: 599px) {
          #problem dl.owned dt .photo {
            border-radius: 10px 10px 0 0;
            /* 左上、右上、右下、左下 */ } }
    #problem dl.owned dd {
      width: 55%;
      padding: 10px 20px 20px;
      font-family: "Noto Sans JP";
      text-align: justify; }
      @media only screen and (max-width: 599px) {
        #problem dl.owned dd {
          width: 100%;
          padding: 10px; } }
      #problem dl.owned dd .owned_title {
        font-size: 22px;
        line-height: 2.08;
        font-family: "Shippori Mincho";
        line-height: 1.1;
        padding: 10px 0;
        border-bottom: 3px double #807355;
        margin: 0 0 5px; }
        @media only screen and (max-width: 959px) {
          #problem dl.owned dd .owned_title {
            font-size: 17.6px;
            line-height: 2.08; } }
        @media only screen and (max-width: 599px) {
          #problem dl.owned dd .owned_title {
            font-size: 12.1px;
            line-height: 2.08; } }
        @media only screen and (max-width: 599px) {
          #problem dl.owned dd .owned_title {
            font-size: 16px;
            padding: 0 0 10px;
            line-height: 1.2em; } }
        #problem dl.owned dd .owned_title span {
          font-family: "Noto Sans JP"; }
          #problem dl.owned dd .owned_title span.address {
            color: #807355;
            font-size: 12px;
            display: block; }
            @media only screen and (max-width: 599px) {
              #problem dl.owned dd .owned_title span.address {
                font-size: 10px;
                margin: 0; } }
          #problem dl.owned dd .owned_title span.red_box {
            font-size: 18px;
            margin: 0 0 0 10px;
            color: #DF0003;
            text-align: center; }
            @media only screen and (max-width: 599px) {
              #problem dl.owned dd .owned_title span.red_box {
                font-size: 14px;
                margin: 0 0 0 5px; } }
      #problem dl.owned dd .kaizen {
        border-top: #efece4 3px solid;
        margin: 10px 0 0;
        padding: 5px 0 0; }
        #problem dl.owned dd .kaizen span {
          color: #807355;
          font-weight: 600;
          display: block;
          margin: 0 0 5px; }
      #problem dl.owned dd span.yellow {
        background-image: linear-gradient(0deg, transparent 0.1em, #f6fb81 0.1em, #f6fb81 1.15em, transparent 1.15em); }
  #problem .problem_end {
    text-align: center;
    margin: 60px auto;
    background: #fff;
    border-radius: 20px;
    width: 850px;
    padding: 40px 20px;
    width: 880px;
    position: relative; }
    @media only screen and (max-width: 959px) {
      #problem .problem_end {
        width: auto;
        margin: 60px 20px 0; } }
    #problem .problem_end h3 {
      font-weight: 400; }
      @media only screen and (max-width: 599px) {
        #problem .problem_end h3 {
          text-align: left; } }
    #problem .problem_end .image_3 {
      background: url("../img/image_3.svg") no-repeat right top;
      background-size: cover;
      width: 200px;
      height: 200px;
      position: absolute;
      left: -60px;
      top: -50px; }
      @media only screen and (max-width: 959px) {
        #problem .problem_end .image_3 {
          width: 150px;
          height: 150px;
          left: -35px;
          top: -40px; } }
      @media only screen and (max-width: 599px) {
        #problem .problem_end .image_3 {
          width: 120px;
          height: 120px;
          top: -63px; } }
    @media only screen and (max-width: 599px) {
      #problem .problem_end .btn_black {
        width: 100%; } }

#tokuchou {
  position: relative;
  margin: 0 0 40px; }
  #tokuchou .back_town2 {
    background: url("../img/back_town2.png") no-repeat right top;
    background-size: cover;
    width: 432px;
    height: 289px;
    position: absolute;
    left: 200px;
    top: 300px;
    z-index: 1; }
    @media only screen and (max-width: 959px) {
      #tokuchou .back_town2 {
        left: 0;
        width: 300px;
        height: 201px;
        top: 150px; } }
  #tokuchou .photo_tokucho {
    background: url("../img/photo_tokucho.png") no-repeat right top;
    background-size: cover;
    width: 282px;
    height: 282px;
    position: absolute;
    right: -50px;
    top: -50px;
    z-index: 1; }
    @media only screen and (max-width: 959px) {
      #tokuchou .photo_tokucho {
        width: 200px;
        height: 200px;
        right: 30px;
        top: 30px; } }
    @media only screen and (max-width: 599px) {
      #tokuchou .photo_tokucho {
        width: 150px;
        height: 150px;
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        top: -60px; } }
  @media only screen and (max-width: 599px) {
    #tokuchou .white_box {
      margin: 50px 0 0 0;
      padding: 100px 20px 20px 20px; } }
  #tokuchou h2.tokuchou {
    position: relative;
    font-size: 40px;
    line-height: 1.2em;
    text-align: center;
    font-weight: 600;
    margin: 80px auto 30px;
    width: 600px; }
    @media only screen and (max-width: 959px) {
      #tokuchou h2.tokuchou {
        margin: 60px auto 30px;
        font-size: 32px; } }
    @media only screen and (max-width: 599px) {
      #tokuchou h2.tokuchou {
        width: auto; } }
    #tokuchou h2.tokuchou span {
      font-size: 60px;
      color: #c1bdab; }
      @media only screen and (max-width: 959px) {
        #tokuchou h2.tokuchou span {
          font-size: 40px; } }
    #tokuchou h2.tokuchou .icon_tokucho {
      background: url("../img/icon_tokucho.png") no-repeat left top;
      background-size: cover;
      width: 196px;
      height: 158px;
      position: absolute;
      left: -100px;
      top: -50px; }
      @media only screen and (max-width: 959px) {
        #tokuchou h2.tokuchou .icon_tokucho {
          width: 120px;
          height: 97px;
          left: 50px;
          top: -30px; } }
      @media only screen and (max-width: 599px) {
        #tokuchou h2.tokuchou .icon_tokucho {
          width: 100px;
          height: 81px;
          left: 20px;
          top: -70px; } }
  #tokuchou p {
    text-align: center;
    margin: 0 0 30px; }
    @media only screen and (max-width: 959px) {
      #tokuchou p {
        margin: 0 30px 30px; } }
    @media only screen and (max-width: 599px) {
      #tokuchou p {
        margin: 0 20px 20px;
        position: inherit;
        z-index: 99; } }
  #tokuchou .set_point {
    position: inherit;
    z-index: 99;
    width: 600px;
    margin: 0 auto; }
    @media only screen and (max-width: 599px) {
      #tokuchou .set_point {
        width: auto;
        margin: 0 20px; } }
    #tokuchou .set_point .row {
      display: flex;
      justify-content: space-between;
      margin: 0 0 30px; }
      @media only screen and (max-width: 599px) {
        #tokuchou .set_point .row {
          flex-direction: column;
          margin: 0; } }
      #tokuchou .set_point .row li {
        width: 30%;
        text-align: center;
        font-size: 18px;
        line-height: 1.4em;
        background: #fff url("../img/back_point.png") no-repeat center 5px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        font-weight: 600;
        padding: 20px 0; }
        #tokuchou .set_point .row li span {
          display: block;
          color: #807355;
          margin: 0 0 10px; }
          @media only screen and (max-width: 599px) {
            #tokuchou .set_point .row li span {
              font-size: 12px;
              margin: 0; } }
        @media only screen and (max-width: 599px) {
          #tokuchou .set_point .row li {
            width: 100%;
            margin: 0 0 10px;
            padding: 10px 0;
            background: #fff url("../img/back_point.png") no-repeat center 5px;
            background-size: 50px 40px; } }
    #tokuchou .set_point .row-2 {
      display: flex;
      justify-content: center; }
      @media only screen and (max-width: 599px) {
        #tokuchou .set_point .row-2 {
          flex-direction: column; } }
      #tokuchou .set_point .row-2 li {
        width: 30%;
        margin: 0 15px; }
        @media only screen and (max-width: 599px) {
          #tokuchou .set_point .row-2 li {
            width: 100%;
            margin: 0 0 20px; } }
  #tokuchou h4 {
    position: relative;
    width: 320px;
    border-top: 3px double #807355;
    border-bottom: 1px solid #807355;
    font-size: 28px;
    line-height: 1.71;
    font-family: "Shippori Mincho";
    color: #807355;
    font-weight: 400;
    padding: 5px 10px; }
    @media only screen and (max-width: 959px) {
      #tokuchou h4 {
        font-size: 22.4px;
        line-height: 1.71; } }
    @media only screen and (max-width: 599px) {
      #tokuchou h4 {
        font-size: 15.4px;
        line-height: 1.71; } }
    @media only screen and (max-width: 959px) {
      #tokuchou h4 {
        width: 50%; } }
    @media only screen and (max-width: 599px) {
      #tokuchou h4 {
        width: auto; } }
    #tokuchou h4 span {
      font-family: "Noto Sans JP";
      background: #807355;
      color: #fff;
      font-weight: bold;
      font-size: 14px;
      position: absolute;
      right: 5px;
      top: 18px;
      padding: 1px 6px;
      border-radius: 5px; }
      @media only screen and (max-width: 959px) {
        #tokuchou h4 span {
          top: 14px;
          font-size: 12px; } }
      @media only screen and (max-width: 599px) {
        #tokuchou h4 span {
          top: 8px;
          font-size: 10px; } }
  #tokuchou .txt_left {
    text-align: left;
    margin: 15px 0;
    padding: 0; }
  #tokuchou ul.two_column {
    width: 300px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 30px; }
    @media only screen and (max-width: 959px) {
      #tokuchou ul.two_column {
        width: 70%; } }
    @media only screen and (max-width: 599px) {
      #tokuchou ul.two_column {
        width: 100%; } }
    #tokuchou ul.two_column li:nth-child(odd) {
      width: 60%;
      padding: 0.25re; }
    #tokuchou ul.two_column li:nth-child(even) {
      width: 40%;
      padding: 0.25re; }
  #tokuchou .box_jisseki {
    background: #efece4;
    border-radius: 10px;
    padding: 20px 30px; }
    @media only screen and (max-width: 599px) {
      #tokuchou .box_jisseki {
        padding: 15px; } }
    #tokuchou .box_jisseki dl {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      font-size: 20px; }
      @media only screen and (max-width: 599px) {
        #tokuchou .box_jisseki dl {
          font-size: 16px;
          align-items: baseline; } }
      #tokuchou .box_jisseki dl dt {
        width: 27%;
        color: #9c7f3d;
        font-weight: 500; }
        @media only screen and (min-width: 960px) {
          #tokuchou .box_jisseki dl dt {
            text-align: justify;
            text-justify: inter-character;
            text-align-last: justify; } }
        @media only screen and (max-width: 599px) {
          #tokuchou .box_jisseki dl dt {
            width: 23%; } }
      #tokuchou .box_jisseki dl dd {
        width: 67%; }
        @media only screen and (max-width: 599px) {
          #tokuchou .box_jisseki dl dd {
            width: 73%;
            line-height: 1.2em; } }
  #tokuchou .small {
    font-size: 12px;
    text-align: right;
    padding: 0;
    margin: 0; }

#soudan {
  position: relative;
  background: #efece4;
  padding: 80px 0;
  text-align: center; }
  @media only screen and (max-width: 599px) {
    #soudan {
      padding: 60px 20px;
      text-align: left; } }
  #soudan .title_kakko {
    margin: 0 0 30px;
    font-weight: 400; }
  #soudan img {
    display: block;
    margin: 30px auto; }
    @media only screen and (max-width: 959px) {
      #soudan img {
        width: 60%;
        height: auto; } }
    @media only screen and (max-width: 599px) {
      #soudan img {
        width: 100%; } }

#contact {
  position: relative;
  padding: 80px 0 0; }
  @media only screen and (max-width: 599px) {
    #contact {
      padding: 60px 0; } }
  @media only screen and (max-width: 599px) {
    #contact .white_box {
      padding: 15px; } }
  #contact h3 {
    font-size: 38px;
    line-height: 1.22;
    font-family: "Shippori Mincho";
    text-align: center;
    font-weight: 400; }
    @media only screen and (max-width: 959px) {
      #contact h3 {
        font-size: 30.4px;
        line-height: 1.22; } }
    @media only screen and (max-width: 599px) {
      #contact h3 {
        font-size: 20.9px;
        line-height: 1.22; } }
    #contact h3 span {
      position: relative;
      display: inline-block;
      margin: 0 auto;
      display: block;
      font-size: 18px;
      width: 13em; }
      @media only screen and (max-width: 599px) {
        #contact h3 span {
          font-size: 14px; } }
      #contact h3 span:before {
        content: '';
        position: absolute;
        top: 50%;
        display: inline-block;
        width: 26px;
        height: 1px;
        background-color: black;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        left: 0; }
        @media only screen and (max-width: 599px) {
          #contact h3 span:before {
            width: 18px; } }
      #contact h3 span:after {
        content: '';
        position: absolute;
        top: 50%;
        display: inline-block;
        width: 26px;
        height: 1px;
        background-color: black;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        right: 0; }
        @media only screen and (max-width: 599px) {
          #contact h3 span:after {
            width: 18px; } }
  #contact .form_box {
    width: 600px;
    margin: 30px auto;
    font-size: 18px; }
    @media only screen and (max-width: 959px) {
      #contact .form_box {
        width: auto;
        margin: 30px; } }
    @media only screen and (max-width: 959px) {
      #contact .form_box {
        width: auto;
        margin: 10px;
        font-size: 16px; } }
    #contact .form_box .error {
      color: #ff0000;
      font-size: 16px; }
      @media only screen and (max-width: 599px) {
        #contact .form_box .error {
          font-size: 14px; } }
    #contact .form_box dl {
      display: flex;
      flex-wrap: wrap; }
      #contact .form_box dl dt {
        width: 35%;
        position: relative;
        padding: 0 0 0 45px;
        font-weight: 600;
        margin: 0 0 15px; }
        @media only screen and (max-width: 599px) {
          #contact .form_box dl dt {
            width: 100%;
            padding: 0 0 0 35px;
            line-height: 1.2em;
            margin: 0 0 5px; } }
        #contact .form_box dl dt span {
          position: absolute;
          left: 0px;
          top: 5px;
          color: #fff;
          font-size: 14px;
          padding: 4px 4px;
          line-height: 14px;
          font-weight: 600px; }
          #contact .form_box dl dt span.hissu {
            background: #ed7146; }
          #contact .form_box dl dt span.nini {
            background: #999999; }
          @media only screen and (max-width: 599px) {
            #contact .form_box dl dt span {
              top: 2px;
              font-size: 10px;
              line-height: 12px;
              padding: 2px 4px 4px; } }
      #contact .form_box dl dd {
        width: 65%;
        margin: 0 0 15px; }
        @media only screen and (max-width: 599px) {
          #contact .form_box dl dd {
            width: 100%; } }
        #contact .form_box dl dd input {
          width: 100%;
          border: 1px solid #999;
          background: #fff;
          padding: 0 4px; }
        #contact .form_box dl dd .select {
          background: #ffffff;
          height: 40px;
          width: 100%;
          position: relative;
          z-index: 1; }
          #contact .form_box dl dd .select::after {
            position: absolute;
            content: '';
            width: 10px;
            height: 10px;
            right: 15px;
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            border-bottom: 2px solid #999;
            border-right: 2px solid #999;
            z-index: -1; }
          #contact .form_box dl dd .select select {
            appearance: none;
            background: none;
            border: none;
            color: #333;
            width: 100%;
            height: 100%;
            border: 1px solid #999; }
        #contact .form_box dl dd textarea {
          width: 100%;
          height: 150px;
          border: 1px solid #999;
          background: #fff;
          padding: 0 4px; }
    #contact .form_box .privacy {
      text-align: center; }
      #contact .form_box .privacy a {
        color: #006bcf;
        text-decoration: underline; }
      #contact .form_box .privacy input[type="checkbox"] {
        position: relative;
        width: 24px;
        height: 24px;
        border: 1px solid #999;
        vertical-align: -5px;
        appearance: none;
        margin: 0 5px 0 0;
        background: #eee; }
        #contact .form_box .privacy input[type="checkbox"]:checked:before {
          position: absolute;
          top: -1px;
          left: 5px;
          transform: rotate(50deg);
          width: 11px;
          height: 19px;
          border-right: 3px solid #006bcf;
          border-bottom: 3px solid #006bcf;
          content: ''; }
    #contact .form_box .send_btn a.send_first {
      width: 50%;
      display: block;
      color: #fff;
      font-family: "Shippori Mincho";
      font-size: 18px;
      line-height: 1em;
      background: #666;
      border-radius: 5px;
      text-align: center;
      padding: 15px 20px;
      letter-spacing: 1px;
      box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
      transition: 0.5s;
      margin: 20px auto; }
      @media only screen and (max-width: 599px) {
        #contact .form_box .send_btn a.send_first {
          width: 80%;
          font-size: 14px; } }
      #contact .form_box .send_btn a.send_first:hover {
        box-shadow: 0 0 0;
        transition: 0.5s; }
    #contact .form_box .send_btn button.send_back {
      display: block;
      color: #fff;
      font-family: "Shippori Mincho";
      font-size: 18px;
      line-height: 1em;
      background: #666;
      border-radius: 5px;
      text-align: center;
      padding: 15px 20px;
      letter-spacing: 1px;
      box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
      transition: 0.5s;
      margin: 20px auto; }
      @media only screen and (max-width: 599px) {
        #contact .form_box .send_btn button.send_back {
          font-size: 14px; } }
      #contact .form_box .send_btn button.send_back:hover {
        box-shadow: 0 0 0;
        transition: 0.5s; }
    #contact .form_box .send_btn button.send {
      display: block;
      color: #fff;
      font-family: "Shippori Mincho";
      font-size: 28px;
      line-height: 1em;
      background: #000;
      border-radius: 5px;
      text-align: center;
      padding: 20px 40px;
      letter-spacing: 1px;
      box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
      transition: 0.5s;
      margin: 20px auto; }
      @media only screen and (max-width: 599px) {
        #contact .form_box .send_btn button.send {
          font-size: 22px; } }
      #contact .form_box .send_btn button.send:hover {
        box-shadow: 0 0 0;
        transition: 0.5s; }
      #contact .form_box .send_btn button.send img {
        width: 243px;
        height: auto;
        margin: 0 auto; }
      #contact .form_box .send_btn button.send span.arrow {
        display: inline-flex;
        align-items: center;
        gap: 8px; }
        #contact .form_box .send_btn button.send span.arrow::after {
          content: "";
          display: inline-block;
          width: 30px;
          height: 30px;
          background-image: url("../img/btn_arrow.svg");
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          flex: 0 0 30px;
          transform: translateY(2px); }
          @media only screen and (max-width: 599px) {
            #contact .form_box .send_btn button.send span.arrow::after {
              width: 25px;
              height: 25px;
              flex: 0 0 25px; } }

footer {
  text-align: center; }
  @media only screen and (max-width: 599px) {
    footer p {
      margin: 0 20px; } }
  footer img.logo_footer {
    display: block;
    margin: 0 auto 20px; }
    @media only screen and (max-width: 599px) {
      footer img.logo_footer {
        width: 60%;
        height: auto; } }
  footer .telinfo {
    margin: 15px 0;
    font-weight: 600;
    color: #ed7146; }
    footer .telinfo span {
      font-size: 32px;
      display: block;
      line-height: 1em; }
  footer .gray {
    color: #999999;
    font-size: 14px;
    line-height: 1.4em; }
    @media only screen and (max-width: 599px) {
      footer .gray {
        margin: 0 20px;
        font-size: 10px;
        line-height: 1.4em; } }
  footer .popolato {
    font-size: 14px;
    text-align: center;
    margin: 20px 0; }
    @media only screen and (max-width: 599px) {
      footer .popolato {
        margin: 20px 20px; } }
    footer .popolato img {
      margin: 0 auto; }
      @media only screen and (max-width: 599px) {
        footer .popolato img {
          width: 100%; } }
  footer .copyright {
    background: #efece4;
    text-align: center;
    color: #807355; }
