@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.75;
  }
}

a,
button {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  text-decoration: none;
}

/* 基本設定
------------------------------------- */
/*使用色*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem; /* =16px */
  font-family: "Noto sans JP", sans-serif;
  color: #231815;
  text-align: justify;
}

main {
  min-height: calc(100vh - 161px);
}
@media screen and (max-width: 960px) {
  main {
    min-height: calc(100vh - 146px);
  }
}
@media screen and (max-width: 768px) {
  main {
    min-height: calc(100vh - 177px);
  }
}

ul {
  list-style: none;
}

a {
  color: #231815;
  font-size: 1.4rem;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

/* ボタン関係 */
.btn {
  position: relative;
}
.btn_nomal {
  position: relative;
  width: 100%;
  max-width: 240px;
  border-radius: 25px;
  padding: 14px;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
  border: 1px solid #bababa;
  color: #231815;
}
@media screen and (max-width: 768px) {
  .btn_nomal {
    max-width: none;
    padding: 10px 5px;
  }
}
.btn_nomal:hover {
  opacity: 1;
}
.btn_nomal .btncircle {
  mix-blend-mode: multiply;
}
.btn_bgblack {
  position: relative;
  width: 100%;
  max-width: 240px;
  border-radius: 25px;
  padding: 14px;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #231815;
  border: 1px solid #231815;
  color: white;
}
@media screen and (max-width: 768px) {
  .btn_bgblack {
    max-width: none;
    padding: 10px 5px;
  }
}
.btn_bgblack:hover {
  opacity: 1;
}
.btn_bgblack:hover .btncircle {
  opacity: 0.9;
}
.btn_bgblack .btncircle {
  mix-blend-mode: normal;
}
.btn_more {
  position: relative;
  width: 100%;
  max-width: 153px;
  border-radius: 22px;
  padding: 10px;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #231815;
  border: 1px solid #bababa;
  color: white;
}
.btn_more:hover {
  opacity: 1;
}
.btn_more:hover .btncircle {
  opacity: 0.9;
}
.btn_more .btncircle {
  mix-blend-mode: normal;
}
.btn:hover {
  opacity: 1;
}

.btncircle {
  mix-blend-mode: multiply;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.btncircle::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("../images/arrow.svg");
}
.btncircle::after {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #eb5c01;
  -webkit-transition: cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.2s;
  transition: cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.2s;
  z-index: 1;
}
.btncircle_nomal {
  top: 50%;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .btncircle_nomal {
    right: 5px;
  }
}
.btncircle_nomal::before {
  width: 8px;
  height: 6px;
}
.btncircle_nomal::after {
  width: 32px;
  height: 32px;
}
.btncircle_small {
  top: 50%;
  right: 10px;
}
.btncircle_small::before {
  width: 8px;
  height: 6px;
}
.btncircle_small::after {
  width: 23px;
  height: 23px;
}
.btncircle_under {
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.btncircle_under::before {
  width: 8px;
  height: 6px;
}
.btncircle_under::after {
  width: 32px;
  height: 32px;
}
.btncircle_left {
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 768px) {
  .btncircle_left {
    left: 5px;
  }
}
.btncircle_left::before {
  width: 8px;
  height: 6px;
}
.btncircle_left::after {
  width: 32px;
  height: 32px;
}

.btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.ham {
  position: relative;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 3px;
  display: none;
}
@media screen and (max-width: 960px) {
  .ham {
    display: block;
    position: relative;
    z-index: 20;
  }
}

.ham01 span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1.5px;
  width: 24px;
  border-radius: 2px;
  background-color: #231815;
}
.ham01 span:nth-child(1) {
  top: 15px;
}
.ham01 span:nth-child(2) {
  top: 23px;
}
.ham01 span:nth-child(3) {
  top: 31px;
}
.ham01.ham-activ span {
  background-color: white;
}
.ham01.ham-activ span:nth-child(1) {
  top: 18px;
  -webkit-transform: translate(-50%, 6px) rotate(-28deg);
          transform: translate(-50%, 6px) rotate(-28deg);
  width: 28px;
}
.ham01.ham-activ span:nth-child(2) {
  opacity: 0;
}
.ham01.ham-activ span:nth-child(3) {
  top: 30px;
  -webkit-transform: translate(-50%, -6px) rotate(28deg);
          transform: translate(-50%, -6px) rotate(28deg);
  width: 28px;
}

button:hover .btncircle::after {
  scale: 2.2;
}
@media screen and (max-width: 768px) {
  button:hover .btncircle::after {
    scale: 1.8;
  }
}
button:hover .btncircle_small::after {
  scale: 2.5;
}

a {
  color: #231815;
}
a:hover {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
a:hover .btncircle::after {
  scale: 2.2;
}
@media screen and (max-width: 768px) {
  a:hover .btncircle::after {
    scale: 1.8;
  }
}
a:hover .btncircle_small::after {
  scale: 2.5;
}
@media screen and (max-width: 768px) {
  a:hover .btncircle_small::after {
    scale: 2.2;
  }
}
a:hover {
  opacity: 1;
}
a:hover .btncircle {
  opacity: 0.9;
}
a .btncircle {
  mix-blend-mode: normal;
}
a.link:hover {
  color: #eb5c01;
}
a.link_line {
  text-decoration: underline;
}
a.link_line:hover {
  opacity: 0.7;
  color: #eb5c01;
}

/*テキスト関係共通*/
.text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
}
.text:not(:last-of-type) {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .text:not(:last-of-type) {
    padding-bottom: 15px;
  }
}
.text_first {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .text_first {
    padding-bottom: 60px;
  }
}

.size_s {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .size_s {
    font-size: 1.2rem;
  }
}
.size_m {
  font-size: 2rem;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .size_m {
    font-size: 1.8rem;
  }
}
.size_l {
  font-size: 2.6rem;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .size_l {
    font-size: 2.2rem;
  }
}

.color_orange {
  color: #eb5c01;
}

.bold {
  font-weight: 700;
}

/*タイトル関係共通*/
.title_lined {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .title_lined {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.title_lined .title_area {
  padding-bottom: 0;
}

.title_area {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .title_area {
    padding-bottom: 25px;
  }
}

.sub_title {
  font-size: 1.4rem;
  text-indent: 0.8em;
  position: relative;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .sub_title {
    font-size: 1.3rem;
  }
}
.sub_title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 0.72em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #eb5c01;
}

.title {
  font-size: 3.4rem;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 2.8rem;
  }
}

/*その他共通*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flex .img-side {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .flex .img-side {
    width: 100%;
    margin: 0 auto;
  }
}
.flex .text-side {
  width: calc(50% + 20px);
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .flex .text-side {
    width: 100%;
    padding-right: 0;
  }
}
.flex .pc02 {
  display: block;
}
@media screen and (max-width: 930px) {
  .flex .pc02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .flex .text.pb {
    padding-bottom: 40px;
  }
}

.inner {
  max-width: 1206px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 15px;
  }
}

.inner02 {
  max-width: 1086px;
  margin: 0 auto;
}

section:not(:last-child) {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  section:not(:last-child) {
    padding-bottom: 80px;
  }
}
section:last-child {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  section:last-child {
    padding-bottom: 80px;
  }
}
section.mv-common {
  padding-bottom: 0;
}

.bg {
  background-color: #f3f3f3;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .bg {
    padding: 80px 0;
  }
}
.bg .memo {
  background-color: white;
}
.bg .line_gray {
  border-bottom: 1px solid #bababa;
}

.line_gray {
  border-bottom: 1px solid #e3e3e3;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .pb20 {
    padding-bottom: 18px;
  }
}

.mb20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .mb20 {
    margin-bottom: 18px;
  }
}

.pb40 {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .pb40 {
    padding-bottom: 30px;
  }
}

.mb40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .mb40 {
    margin-bottom: 30px;
  }
}

.pb60 {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .pb60 {
    padding-bottom: 40px;
  }
}

.mb60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .mb60 {
    margin-bottom: 40px;
  }
}

.mv-common {
  color: #231815;
}
.mv-common .inner:first-of-type {
  padding-top: 190px;
}
@media screen and (max-width: 960px) {
  .mv-common .inner:first-of-type {
    padding-top: 130px;
  }
}
@media screen and (max-width: 768px) {
  .mv-common .inner:first-of-type {
    padding-top: 90px;
  }
}
.mv-common .inner:last-of-type {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .mv-common .inner:last-of-type {
    padding-bottom: 30px;
  }
}
.mv-common:not(.mv-common_img) .inner:last-of-type {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .mv-common:not(.mv-common_img) .inner:last-of-type {
    padding-bottom: 80px;
  }
}
.mv-common_title {
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .mv-common_title {
    font-size: 1.3rem;
  }
}
.mv-common_sub-title {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .mv-common_sub-title {
    font-size: 2.8rem;
    padding-bottom: 15px;
  }
}
.mv-common_img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mv-common_img {
    margin-bottom: 10px;
    height: 60vh;
  }
}
@media screen and (max-width: 400px) {
  .mv-common_img {
    margin-bottom: 10px;
    height: 55vh;
  }
}
.mv-common_path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mv-common_path li {
  position: relative;
  font-size: 1.4rem;
}
.mv-common_path li:not(:first-child) {
  margin-left: 28px;
}
.mv-common_path li:not(:first-child)::after {
  content: ">";
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: -14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mv-common_path li a {
  text-decoration: underline;
}

.common_list li {
  padding-left: 1.5em;
  position: relative;
}
.common_list li:not(:last-child) {
  padding-bottom: 5px;
}
.common_list li::before {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  position: absolute;
  background-color: #eb5c01;
  top: 0.75em;
  left: 0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.memo {
  background-color: #f3f3f3;
  padding: 40px 60px 40px 40px;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .memo {
    padding: 40px 40px 40px 15px;
  }
}
.memo_s {
  padding: 20px 60px 20px 40px;
}
@media screen and (max-width: 768px) {
  .memo_s {
    padding: 20px 40px 20px 15px;
  }
}

.list-style01 > div {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 40px;
}
.list-style01 > div:not(:last-child) {
  margin-bottom: 40px;
}
.list-style01 dt {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .list-style01 dt {
    padding-bottom: 20px;
  }
}
.list-style01 .name {
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .list-style01 .name {
    padding-bottom: 8px;
  }
}
.list-style01 dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .list-style01 dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.list-style01 dd .text.timing {
  margin-bottom: 15px;
  color: white;
  background-color: #231815;
  border-radius: 3px;
  padding: 6px 10px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .list-style01 dd .text.timing {
    width: 100%;
  }
}
.list-style01 dd .common_list {
  padding-bottom: 20px;
}
.list-style01 dd img {
  max-width: 300px;
  aspect-ratio: 15 14;
}
@media screen and (max-width: 768px) {
  .list-style01 dd img {
    width: 100%;
    max-width: none;
    aspect-ratio: unset;
    height: 50vw;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 3px;
  }
}

.list-style02 li {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .list-style02 li {
    padding-bottom: 30px;
  }
}
.list-style02 li:not(:first-child) {
  padding-top: 40px;
}

.list-style03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.list-style03 li {
  color: white;
  max-width: 580px;
  width: 49.65%;
  background-color: #231815;
  padding: 20px 38px;
  border-radius: 3px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .list-style03 li {
    padding: 20px 15px;
    max-width: none;
    width: 100%;
  }
}

.list-style04 div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #e3e3e3;
}
@media screen and (max-width: 768px) {
  .list-style04 div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 30px;
  }
}
.list-style04 div:first-child {
  border-top: 1px solid #e3e3e3;
}
.list-style04 dt {
  min-width: 180px;
}
@media screen and (max-width: 768px) {
  .list-style04 dt {
    min-width: auto;
    padding-bottom: 10px;
    font-weight: 700;
  }
}
.list-style04 dd {
  width: 100%;
  max-width: 796px;
}
@media screen and (max-width: 768px) {
  .list-style04 .pb20 {
    padding-bottom: 30px;
  }
}

.list-style05 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .list-style05 li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.list-style05 li:not(:last-child) {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .list-style05 li:not(:last-child) {
    padding-bottom: 55px;
  }
}
.list-style05 .text-side {
  max-width: 603px;
  width: 56%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .list-style05 .text-side {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-bottom: 25px;
  }
}
.list-style05 .text.timing {
  margin-bottom: 15px;
  color: white;
  background-color: #231815;
  border-radius: 3px;
  padding: 6px 10px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .list-style05 .text.timing {
    width: 100%;
  }
}

.list-style06 dt {
  padding-bottom: 10px;
}
.list-style06 .wrap:not(:last-child) {
  padding-bottom: 40px;
}

.list-style07 {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.list-style07 li {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .list-style07 li {
    border-bottom: 1px solid #231815;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 15px 30px 15px 15px;
  }
}
.list-style07 li:hover img {
  opacity: 1;
}
.list-style07 li p {
  position: relative;
  display: block;
  padding: 20px 60px 20px 40px;
  border-bottom: 1px solid #231815;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .list-style07 li p {
    padding: 20px 30px 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .list-style07 li p {
    padding: 0 0 0 15px;
    border-bottom: none;
    text-align: left;
  }
}
.list-style07 li img {
  position: absolute;
  top: 0;
  right: 10px;
  -webkit-transform: translateY(calc(-50% + 1.5em));
          transform: translateY(calc(-50% + 1.5em));
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  max-width: 500px;
  width: 50vw;
  z-index: 8;
  pointer-events: none;
  border: 10px solid white;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .list-style07 li img {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 25vw;
    min-width: 120px;
    opacity: 1;
    position: unset;
    border: none;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100px;
  }
}

.list-style-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  width: 100%;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .list-style-link {
    padding-bottom: 60px;
  }
}
.list-style-link li {
  display: block;
  color: white;
  max-width: 580px;
  width: 49.65%;
  background-color: #231815;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .list-style-link li {
    max-width: none;
    width: 100%;
  }
}
.list-style-link a {
  width: 100%;
  color: white;
  padding: 20px 90px 20px 40px;
  display: block;
}
@media screen and (max-width: 960px) {
  .list-style-link a {
    padding: 20px 80px 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .list-style-link a {
    padding: 20px 65px 20px 15px;
  }
}
@media screen and (max-width: 960px) {
  .list-style-link .btncircle_under {
    right: 30px;
  }
}
@media screen and (max-width: 960px) {
  .list-style-link .btncircle_under {
    right: 25px;
  }
}

.img_rectangle {
  height: 476px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .img_rectangle {
    height: 50vw;
  }
}
.img_square {
  border-radius: 3px;
  max-width: 483px;
  width: 100% !important;
  height: 483px;
  min-width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .img_square {
    max-width: none;
    height: 100%;
    max-height: 100vw;
    min-width: auto;
  }
}

.ancho-link {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 960px) {
  .ancho-link {
    scroll-margin-top: 81px;
  }
}

/*ヘッダーフッター関係*/
@media screen and (max-width: 768px) {
  header small,
  footer small {
    text-align: right;
  }
}
header nav,
footer nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header ul,
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
header a,
footer a {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  -webkit-transition: all 0.001s ease;
  transition: all 0.001s ease;
}
@media screen and (max-width: 960px) {
  header a,
  footer a {
    font-size: 1.6rem;
  }
}
header a:hover,
footer a:hover {
  text-decoration: underline;
  color: #eb5c01;
}
header a.contact:hover,
footer a.contact:hover {
  color: white;
}
header a.logo:hover,
footer a.logo:hover {
  opacity: 0.7;
}
header a.cv:hover,
footer a.cv:hover {
  color: white;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.6156862745);
}
header .logo {
  max-width: 275px;
}
@media screen and (max-width: 960px) {
  header .logo {
    max-width: 180px;
    position: relative;
    z-index: 20;
  }
}
header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 40px;
  max-width: none;
}
@media screen and (max-width: 960px) {
  header .inner {
    padding: 18px 10px;
  }
}
header .cv {
  color: white;
  background-color: #eb5c01;
  padding: 7px 20px 10px 50px;
  position: relative;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  header .cv {
    text-align: center;
    padding: 7px 20px 10px 20px;
    border: 1px solid #eb5c01;
  }
}
header .cv::before {
  content: "";
  display: block;
  width: 20px;
  height: 14px;
  background-image: url("../images/icon_mail.svg");
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .cv:hover {
  text-decoration: none;
  background-color: #231815;
}
@media screen and (max-width: 960px) {
  header .cv:hover {
    border: 1px solid white;
  }
}
@media screen and (max-width: 960px) {
  header ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 120px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
    gap: 0;
  }
  header ul a {
    display: block;
    width: 100%;
    padding: 18px 0;
    position: relative;
  }
  header ul a:hover {
    text-decoration: none;
  }
}
header ul .btncircle {
  display: none;
}
@media screen and (max-width: 960px) {
  header ul .btncircle {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  header li:not(:last-child) {
    border-bottom: 1px solid white;
  }
  header li:last-child {
    margin-top: 40px;
  }
}
@media screen and (max-width: 960px) {
  header .ham-activ .logo img {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(61deg) brightness(104%) contrast(101%);
            filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(61deg) brightness(104%) contrast(101%);
  }
}
header .nav_sp ul li a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  header .nav_sp {
    display: none;
  }
  header .nav_sp.ham-activ {
    display: block;
    background-color: #231815;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    overflow-y: auto;
  }
  header .nav_sp.ham-activ a {
    color: white;
  }
}

footer .logo {
  max-width: 275px;
}
@media screen and (max-width: 960px) {
  footer .logo {
    padding-bottom: 20px;
    max-width: 180px;
  }
}
footer .contact {
  display: inline-block;
  width: 100%;
  background-color: #231815;
  color: white;
  padding: 60px 20px;
  color: white;
  text-align: center;
  font-size: 1.4rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  footer .contact {
    padding: 40px 15px;
  }
}
footer .contact:hover {
  text-decoration: none;
  background-color: #eb5c01;
}
footer .contact .large {
  font-size: 1.6rem;
}
footer .contact .border {
  border: 1px solid white;
  border-radius: 3px;
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 10px;
}
footer .contact .border:not(:last-child) {
  margin-right: 10px;
}
footer .contact .title {
  padding-bottom: 30px;
}
footer nav ul li a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .inner {
  padding: 30px 20px;
  max-width: 1166px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  footer .inner {
    padding: 20px 15px 10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .topside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 960px) {
  footer .topside {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 960px) {
  footer ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 960px) {
  footer li a {
    width: 100%;
  }
}
footer .area_footer {
  background-color: #f3f3f3;
}

/*TOP*/
#top section:not(:last-child) {
  padding-bottom: 0;
}
#top .bottom-space {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #top .bottom-space {
    padding-bottom: 60px;
  }
}
#top .title_lined {
  padding-bottom: 40px;
}
#top .sub_title {
  font-size: 1.4rem;
}
#top .title {
  font-size: 3.4rem;
}
@media screen and (max-width: 768px) {
  #top .title {
    font-size: 2.8rem;
  }
}
#top .mv_area {
  position: relative;
  z-index: 3;
  padding-top: 100px;
}
@media screen and (max-width: 960px) {
  #top .mv_area {
    padding-top: 81px;
  }
}
#top .mv_area > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.3206442167vw;
}
@media screen and (max-width: 768px) {
  #top .mv_area > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 5.3333333333vw;
  }
}
#top .mv_area img {
  width: 44.3631039531vw;
}
@media screen and (max-width: 768px) {
  #top .mv_area img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    width: calc(100vw - 15px);
    height: 60vw;
  }
}
#top .mv_area .title {
  font-weight: 700;
  line-height: 130%;
  font-size: 5.8565153734vw;
  padding-bottom: 0.878477306vw;
}
@media screen and (max-width: 768px) {
  #top .mv_area .title {
    font-size: 11.2vw;
    padding-bottom: 1.6vw;
  }
}
#top .mv_area .title span {
  color: #eb5c01;
}
#top .mv_area .text {
  font-weight: 700;
  font-size: 1.4641288433vw;
  padding-bottom: 0.878477306vw;
}
@media screen and (max-width: 768px) {
  #top .mv_area .text {
    font-size: 4.2666666667vw;
    padding-bottom: 1.6vw;
  }
}
#top .mv_area .border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.7320644217vw;
}
#top .mv_area .border p {
  color: white;
  font-weight: 700;
  background-color: #231815;
  font-size: 1.317715959vw;
  border-radius: 0.2196193265vw;
  padding: 0.5124450952vw 1.0248901903vw;
  -webkit-box-shadow: 0.2928257687vw 0.2928257687vw 0.2928257687vw 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0.2928257687vw 0.2928257687vw 0.2928257687vw 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  #top .mv_area .border p {
    font-size: 2.6666666667vw;
    border-radius: 0.8vw;
    padding: 1.3333333333vw 1.8666666667vw;
    -webkit-box-shadow: 1.0666666667vw 1.0666666667vw 1.0666666667vw 0px rgba(0, 0, 0, 0.25);
            box-shadow: 1.0666666667vw 1.0666666667vw 1.0666666667vw 0px rgba(0, 0, 0, 0.25);
  }
}
#top .mv_area .textside {
  padding: 0 15px;
}
#top .area_lead .bg {
  background-color: #f3f3f3;
  padding-top: 17.5695461201vw;
  padding-bottom: 100px;
  position: relative;
  top: -7.3206442167vw;
  margin-bottom: calc(-7.3206442167vw + 100px);
}
@media screen and (max-width: 768px) {
  #top .area_lead .bg {
    top: 0;
    padding: 60px 0;
    margin: 60px 0;
  }
}
#top .area_lead .right-side {
  max-width: 493px;
  width: 100%;
  -ms-flex-negative: 2;
      flex-shrink: 2;
}
@media screen and (max-width: 960px) {
  #top .area_lead .right-side {
    max-width: 960px;
  }
}
#top .area_lead .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  #top .area_lead .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#top .area_lead .left-side {
  max-width: 570px;
  padding-right: 40px;
}
@media screen and (max-width: 960px) {
  #top .area_lead .left-side {
    max-width: none;
    padding-right: 0;
  }
}
#top .area_lead .lead-text {
  font-size: 3.6rem;
  font-weight: 700;
  padding-bottom: 60px;
  text-indent: -0.55em;
  line-height: 150%;
}
@media screen and (max-width: 960px) {
  #top .area_lead .lead-text {
    padding: 30px 0 20px;
    font-size: clamp(2.2rem, 5.8666666667vw, 3.2rem);
  }
}
#top .area_lead .text {
  line-height: 200%;
}
#top .area_lead .text:not(:last-of-type) {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #top .area_lead .text:not(:last-of-type) {
    padding-bottom: 15px;
  }
}
#top .area_lead .text:last-of-type {
  padding-bottom: 40px;
}
#top .area_lead img {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media screen and (max-width: 960px) {
  #top .area_lead img {
    width: 800%;
    height: 40vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 768px) {
  #top .area_lead img {
    width: 100%;
    height: 50vw;
  }
}
#top .reason_area .selected_list .selected_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #top .reason_area .selected_list .selected_item {
    gap: 20px;
  }
}
#top .reason_area .selected_list .selected_item:not(:last-child) {
  padding-bottom: 30px;
}
#top .reason_area .selected_list .selected_item:nth-child(2n-1) .en {
  color: #eb5c01;
}
#top .reason_area .selected_list .selected_item:nth-child(2) {
  padding-left: 100px;
}
@media screen and (max-width: 768px) {
  #top .reason_area .selected_list .selected_item:nth-child(2) {
    padding-left: 0;
  }
}
#top .reason_area .selected_list .selected_item:nth-child(3) {
  padding-left: 200px;
}
@media screen and (max-width: 768px) {
  #top .reason_area .selected_list .selected_item:nth-child(3) {
    padding-left: 0;
  }
}
#top .reason_area .selected_list .selected_item > div {
  padding-top: 39px;
}
@media screen and (max-width: 768px) {
  #top .reason_area .selected_list .selected_item > div {
    padding-top: 6vw;
  }
}
#top .reason_area .selected_list .en {
  font-family: "Hanuman", serif;
  font-size: 14rem;
}
@media screen and (max-width: 768px) {
  #top .reason_area .selected_list .en {
    font-size: clamp(6.5rem, 16vw, 14rem);
  }
}
#top .reason_area .selected_list .size_l {
  padding-bottom: 10px;
}
#top .reason_area .selected_list .text {
  line-height: 164%;
}
#top .services_area {
  position: relative;
}
#top .services_area .inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  #top .services_area .inner {
    padding-top: 60px;
  }
}
#top .services_area .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #f3f3f3;
  height: 509px;
  width: 100%;
  max-width: calc(50% + 582px);
}
#top .services_area .services_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow-x: auto;
}
#top .services_area .services_item {
  border-right: 1px solid white;
}
#top .services_area .services_item a {
  color: white;
  background-color: #231815;
  border-right: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 290px;
  padding: 40px 18px;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
@media screen and (max-width: 768px) {
  #top .services_area .services_item a {
    padding: 40px 15px;
  }
}
#top .services_area .services_item a:hover {
  opacity: 1;
}
#top .services_area .services_item:nth-child(1) a:hover {
  background: url("../images/servicelist_bg01.jpg");
  background-size: cover;
  background-color: #231815;
}
#top .services_area .services_item:nth-child(2) a:hover {
  background: url("../images/servicelist_bg02.jpg");
  background-size: cover;
  background-color: #231815;
}
#top .services_area .services_item:nth-child(3) a:hover {
  background: url("../images/servicelist_bg03.jpg");
  background-size: cover;
  background-color: #231815;
}
#top .services_area .services_item:nth-child(4) a:hover {
  background: url("../images/servicelist_bg04.jpg");
  background-size: cover;
  background-color: #231815;
}
#top .services_area .services_item .text {
  height: 96px;
  font-size: 1.6rem;
  margin-bottom: 40px;
}
#top .services_area .services_item .text.bold {
  text-align: center;
  line-height: 150%;
  margin-bottom: 46px;
  height: auto;
}
#top .services_area .services_item img {
  max-width: 71px;
  padding-bottom: 20px;
  margin: 0 auto;
}
#top .voice_area .voice_list {
  background-color: #231815;
  padding: 60px 40px 60px 20px;
  color: white;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  #top .voice_area .voice_list {
    padding: 40px 30px 40px 15px;
  }
}
#top .voice_area .voice_item {
  max-width: 1066px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #top .voice_area .voice_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: unset;
  }
}
#top .voice_area .voice_item:not(:last-child) {
  padding-bottom: 37px;
}
#top .voice_area .voice_item > div {
  border-bottom: 1px solid white;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  max-width: 836px;
}
#top .voice_area .voice_item > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  padding-bottom: 20px;
}
#top .voice_area .voice_item img {
  max-width: 200px;
  min-width: 120px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top .voice_area .voice_item img {
    max-width: 120px;
    min-width: 80px;
  }
}
#top .voice_area .voice_item a {
  color: white;
  padding-right: 40px;
  max-width: 110px;
  margin-right: 0;
}
#top .voice_area .voice_thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
#top .voice_area .voice_thumb picture {
  display: none;
}
@media screen and (max-width: 768px) {
  #top .voice_area .voice_thumb picture {
    display: block;
  }
}
#top .flow_area dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  #top .flow_area dl div {
    gap: 30px;
  }
}
#top .flow_area dl div:not(:last-of-type) dd {
  padding-bottom: 78px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .flow_area dl div:not(:last-of-type) dd {
    padding-bottom: 20px;
  }
}
#top .flow_area dl div:not(:last-of-type) dd::after {
  content: "";
  width: 1px;
  height: 100px;
  background-color: #e3e3e3;
  position: absolute;
  top: 58px;
  left: -117px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #top .flow_area dl div:not(:last-of-type) dd::after {
    height: 50%;
    top: 56px;
    left: -43px;
  }
}
#top .flow_area dt {
  border-bottom: 2px solid #eb5c01;
  height: 40px;
}
#top .flow_area dd {
  min-height: 107px;
}
@media screen and (max-width: 768px) {
  #top .flow_area dd {
    padding-top: 2px;
    min-height: auto;
  }
}
#top .flow_area dd .size_l {
  padding-bottom: 15px;
}

/*contact*/
.contact-page {
  /*
  &#thanks {
  	.mv-common .inner:last-of-type {
  		@media screen and (max-width:768px){
  			padding-bottom: 80px;
  		}
  	}
  }*/
}
.contact-page .form {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .contact-page .form {
    padding-bottom: 80px;
  }
}
.contact-page .form .form-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #bababa;
}
@media screen and (max-width: 768px) {
  .contact-page .form .form-cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: unset;
  }
}
.contact-page .form .form-cont:first-child {
  border-top: 1px solid #bababa;
}
@media screen and (max-width: 768px) {
  .contact-page .form .form-cont:first-child {
    border-top: unset;
  }
}
.contact-page .form .left-side {
  background-color: #231815;
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  width: 26%;
  height: auto;
  padding: 26px 20px 20px 20px;
}
@media screen and (max-width: 768px) {
  .contact-page .form .left-side {
    width: 100%;
    padding: 15px;
    font-weight: 500;
    border-radius: 3px;
  }
}
.contact-page .form .left-side.low {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .contact-page .form .left-side.low {
    padding: 15px;
  }
}
.contact-page .form .input-side {
  padding: 20px;
  width: 74%;
}
@media screen and (max-width: 768px) {
  .contact-page .form .input-side {
    width: 100%;
    padding: 20px 0 40px;
  }
}
.contact-page .form .input-side input,
.contact-page .form .input-side select,
.contact-page .form .input-side textarea {
  border: 1px solid #bababa;
  background-color: #f3f3f3;
  color: #231815;
}
.contact-page .form .input-side input.text-area,
.contact-page .form .input-side select.text-area,
.contact-page .form .input-side textarea.text-area {
  max-width: 280px;
  padding: 8px 10px;
  border-radius: 3px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-page .form .input-side input.text-area,
  .contact-page .form .input-side select.text-area,
  .contact-page .form .input-side textarea.text-area {
    max-width: none;
    padding: 15px;
  }
}
.contact-page .form .input-side textarea.text-area {
  max-width: none;
  min-height: 260px;
  padding: 8px 10px;
}
@media screen and (max-width: 768px) {
  .contact-page .form .input-side textarea.text-area {
    min-height: 5em;
  }
}
.contact-page .form .input-side select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトの矢印を非表示 */
  background-image: url("../images/select.svg");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 10px 5px;
}
.contact-page .form .input-side select::-ms-expand {
  display: none;
}
.contact-page .form .input-side.check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .contact-page .form .input-side.check {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 10px;
  }
}
.contact-page .form .input-side.check input[type=checkbox] {
  visibility: hidden;
}
.contact-page .form .input-side.check input#checkbox01,
.contact-page .form .input-side.check input#checkbox02 {
  visibility: hidden;
}
.contact-page .form .input-side.check input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.75em;
  left: -0.75em;
  width: 14px;
  height: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #eb5c01;
}
@media screen and (max-width: 768px) {
  .contact-page .form .input-side.check input:checked + label::after {
    left: 0.55em;
  }
}
.contact-page .form .input-side.check .label {
  position: relative;
  padding-left: 1.2em;
}
@media screen and (max-width: 768px) {
  .contact-page .form .input-side.check .label {
    padding-left: 2.3em;
  }
}
.contact-page .form .input-side.check .label:not(:last-child) {
  margin-right: 88px;
}
@media screen and (max-width: 768px) {
  .contact-page .form .input-side.check .label:not(:last-child) {
    margin-right: 40px;
  }
}
.contact-page .form .input-side.check .label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75em;
  left: -1em;
  width: 22px;
  height: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #bababa;
  background-color: #f3f3f3;
}
@media screen and (max-width: 768px) {
  .contact-page .form .input-side.check .label::before {
    left: 0.3em;
  }
}
.contact-page .form .btn_bgblack {
  margin: 0 auto;
  display: block;
}
.contact-page#confilm .form .left-side {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .contact-page#confilm .form .left-side {
    padding: 15px;
  }
}
.contact-page#confilm .form .mb40 {
  margin-bottom: 60px;
}
.contact-page#confilm .form .btn_bgblack {
  margin: unset;
  display: block;
}

/*voice*/
@media screen and (max-width: 768px) {
  #voice .obj-top {
    -o-object-position: top;
       object-position: top;
  }
}

/*company*/
#company .comic-area {
  margin-top: 60px;
  padding: 60px 0 0;
  border-top: 1px solid #bababa;
}
#company .comic-area .inner {
  background-color: white;
  padding: 20px 0;
  max-width: 1300px;
}
#company .comic-area .mv {
  height: 250px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  #company .comic-area .mv {
    height: auto;
  }
}
#company .comic-area .lead-btn {
  background-color: #231815;
  color: white;
  width: 100%;
  padding: 20px 40px;
  border-radius: 3px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #company .comic-area .lead-btn {
    margin-top: 20px;
  }
}
#company .comic-area .lead-btn:hover {
  opacity: 1;
  background-color: #eb5c01;
}
#company .comic-area .read-bg {
  display: none;
}
#company .comic-area .read-bg {
  background-color: rgba(35, 24, 21, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  overflow-y: auto;
}
#company .comic-area .read-inner {
  margin: 0 auto;
  padding: 80px 20px 80px;
  max-width: 800px;
}
#company .comic-area .read-inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #company .comic-area .read-inner ul {
    gap: 15px;
    padding-bottom: 30px;
  }
}
#company .comic-area .close-btn {
  width: 100%;
  border-radius: 3px;
  background-color: #eb5c01;
  border: 1px solid #eb5c01;
  color: #fff;
  padding: 20px;
}
#company .comic-area .close-btn:hover {
  background-color: white;
  opacity: 1;
  color: #eb5c01;
}

.with-asterisk::after {
  content: "※";
  font-size: 0.5em;
  vertical-align: baseline;
  position: relative;
  bottom: -0.2em;
  left: 0.2em;
}
.name.size_l.with-asterisk {
  padding-bottom: 0;
}

.asterisk-text {
  font-size: 0.8em;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .asterisk-text {
    font-size: 0.8em;
    padding-bottom: 10px;
    padding-top: 2px;
  }
}

/* レスポンシブ設定
------------------------------------- */
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.area_sushi {
  width: 300px;
  height: 200px;
  background-image: url("../images/sushi.jpg");
}

.webp .area_sushi {
  background-image: url("../images/sushi.webp");
}