@charset "UTF-8";
/* ==========================================================================
common
========================================================================== */
a, a * {
  text-decoration: none !important;
  transition: opacity 0.75s;
  color: #000;
}

a:hover {
  opacity: 0.7;
  color: inherit;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  a:hover, a:hover p, a:hover img {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
/* フェードイン(初期値) */
.fadein {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.fadein.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0;
  /* フェード開始を0.5秒遅らせる */
}

.c_btn {
  display: block;
  background: #FF000E;
  padding: 15px 0;
  width: 164px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 30px;
}
.c_btn:hover {
  background: #fff;
  color: #FF000E;
  border: 1px solid #FF000E;
}
@media screen and (max-width: 768px) {
  .c_btn {
    margin: 0 auto;
    font-weight: 600;
  }
}

/* ==========================================================================
page
========================================================================== */
.post-name-innovation {
  background-color: #DC000C;
  /* モーダルスタイル */
}
.post-name-innovation .fv {
  height: 100vh;
  text-align: center;
  position: relative;
}
.post-name-innovation .fv .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.post-name-innovation .fv .inner img {
  width: 40%;
}
.post-name-innovation .challenge .inner {
  max-width: 95%;
  margin: 0 auto;
}
.post-name-innovation .challenge .grid-container01 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 15px;
  width: 100%;
}
.post-name-innovation .challenge .grid-container02 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  margin: 15px 0;
}
.post-name-innovation .challenge .grid-container03 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 15px;
  width: 100%;
}
.post-name-innovation .challenge .item {
  aspect-ratio: 1/1; /* 正方形を維持 */
  height: 100%;
  width: 100%;
  color: #fff;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
  z-index: 3;
}
.post-name-innovation .challenge .item .bg {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: transform 0.6s ease;
}
.post-name-innovation .challenge .item .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #DC000C;
  opacity: 0.6;
}
.post-name-innovation .challenge .item .num {
  padding: 3%;
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.post-name-innovation .challenge .item .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
  letter-spacing: 5px;
}
.post-name-innovation .challenge .item_l {
  grid-row: span 2;
  grid-column: span 2;
}
.post-name-innovation .challenge .item_l .num {
  font-size: 7rem;
}
.post-name-innovation .challenge .item_l .title {
  font-size: 6rem;
}
.post-name-innovation .challenge .item_m .num {
  font-size: 5rem;
}
.post-name-innovation .challenge .item_m .title {
  font-size: 3.5rem;
}
.post-name-innovation .challenge .item_s .num {
  font-size: 4rem;
}
.post-name-innovation .challenge .item_s .title {
  font-size: 2.8rem;
}
.post-name-innovation .challenge .item:hover .bg {
  transform: scale(1.1); /* 拡大 */
}
.post-name-innovation .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  justify-content: center;
  align-items: start; /* ← これ重要！startにして上詰めに */
  overflow: auto; /* ← ここ追加：全体スクロールを許可 */
}
.post-name-innovation .modal .modal_content {
  background: #DC000C;
  width: 80%;
  max-width: 1080px;
  margin: 100px auto;
  position: relative;
  padding: 100px 0;
}
.post-name-innovation .modal .slide {
  display: none;
  transition: transform 0.5s ease;
}
.post-name-innovation .modal .slide.active {
  display: block;
}
.post-name-innovation .modal .slide .slide_inner {
  max-width: 830px;
  margin: 0 auto;
}
.post-name-innovation .modal .slide .flex {
  display: flex;
  align-items: center;
  gap: 0 40px;
}
.post-name-innovation .modal .slide .flex .img {
  width: 50%;
}
.post-name-innovation .modal .slide .flex .right .num {
  font-size: 1.5rem;
  color: #fff;
}
.post-name-innovation .modal .slide .flex .right .num span {
  font-size: 2.8rem;
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 600;
  margin-left: 5px;
}
.post-name-innovation .modal .slide .flex .right h2 {
  font-size: 4rem;
  color: #fff;
  margin: 40px 0;
  line-height: 1.7;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
  letter-spacing: 5px;
}
.post-name-innovation .modal .slide .flex .right .comp {
  font-size: 1.7rem;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-innovation .modal .slide .back {
  color: #fff;
  margin: 55px 0;
}
.post-name-innovation .modal .slide .back h3 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
  letter-spacing: 10px;
}
.post-name-innovation .modal .slide .back p {
  font-size: 1.7rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-innovation .modal .slide .effect h3 {
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
  letter-spacing: 10px;
}
.post-name-innovation .modal .slide .effect p {
  font-size: 1.5rem;
  line-height: 2;
  background: #fff;
  padding: 30px 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-innovation .modal .modal-close {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 4rem;
  font-weight: 100;
  color: #fff;
  cursor: pointer;
}
.post-name-innovation .modal .modal-nav button {
  position: absolute;
  top: 50%;
  cursor: pointer;
}
.post-name-innovation .modal .modal-nav button.prev {
  left: -10%;
  transform: rotate(180deg);
}
.post-name-innovation .modal .modal-nav button.next {
  right: -10%;
}
.post-name-innovation .fadein-animation {
  animation: fadein 0.7s ease;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .post-name-innovation {
    /* モーダルスタイル */
  }
  .post-name-innovation .fv .inner img {
    width: 80%;
  }
  .post-name-innovation .challenge .inner {
    max-width: 100%;
  }
  .post-name-innovation .challenge .grid-container01 {
    grid-template-columns: auto;
    gap: 10px;
  }
  .post-name-innovation .challenge .grid-container02 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 10px 0;
  }
  .post-name-innovation .challenge .grid-container02 .item6 {
    grid-column: 1/3;
  }
  .post-name-innovation .challenge .grid-container02 .item6 .num {
    font-size: 45px;
  }
  .post-name-innovation .challenge .grid-container02 .item6 .title {
    font-size: 35px;
  }
  .post-name-innovation .challenge .grid-container03 {
    grid-template-columns: none;
    gap: 10px;
  }
  .post-name-innovation .challenge .item .title {
    width: 90%;
  }
  .post-name-innovation .challenge .item_l .num {
    font-size: 4.5rem;
  }
  .post-name-innovation .challenge .item_l .title {
    font-size: 3.5rem;
  }
  .post-name-innovation .challenge .item_m .num {
    font-size: 2.5rem;
  }
  .post-name-innovation .challenge .item_m .title {
    font-size: 1.5rem;
  }
  .post-name-innovation .challenge .item_s .num {
    font-size: 2.5rem;
  }
  .post-name-innovation .challenge .item_s .title {
    font-size: 1.5rem;
  }
  .post-name-innovation .modal {
    align-items: start;
  }
  .post-name-innovation .modal .modal_content {
    width: 100%;
    margin: 100px auto;
    padding: 60px 0 100px;
  }
  .post-name-innovation .modal .slide .slide_inner {
    max-width: 90%;
  }
  .post-name-innovation .modal .slide .flex {
    flex-direction: column;
  }
  .post-name-innovation .modal .slide .flex .img {
    width: 100%;
  }
  .post-name-innovation .modal .slide .flex .right {
    width: 100%;
  }
  .post-name-innovation .modal .slide .flex .right .num {
    font-size: 1.2rem;
    margin-top: 20px;
  }
  .post-name-innovation .modal .slide .flex .right .num span {
    font-size: 1.8rem;
  }
  .post-name-innovation .modal .slide .flex .right h2 {
    font-size: 2.8rem;
    margin: 27px 0;
  }
  .post-name-innovation .modal .slide .flex .right .comp {
    font-size: 1.1rem;
  }
  .post-name-innovation .modal .slide .back {
    margin: 75px 0;
  }
  .post-name-innovation .modal .slide .back h3 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 30px;
  }
  .post-name-innovation .modal .slide .back p {
    font-size: 1.4rem;
  }
  .post-name-innovation .modal .slide .effect h3 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 20px;
  }
  .post-name-innovation .modal .slide .effect p {
    font-size: 1.3rem;
    padding: 30px;
  }
  .post-name-innovation .modal .modal-nav button {
    top: auto;
    bottom: 20px;
  }
  .post-name-innovation .modal .modal-nav button.prev {
    left: 15px;
  }
  .post-name-innovation .modal .modal-nav button.next {
    right: 15px;
  }
}

.post-name-business {
  background-color: #DC000C;
}
.post-name-business .fv {
  height: 100vh;
  text-align: center;
  position: relative;
}
.post-name-business .fv h2 {
  font-size: 1.4rem;
  color: #fff;
  padding-top: 15%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-business .fv h2 span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.post-name-business .fv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6.4rem;
  color: #fff;
  width: 100%;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
  letter-spacing: 10px;
}
.post-name-business .group {
  text-align: center;
}
.post-name-business .group p {
  font-size: 1.7rem;
  color: #fff;
  padding: 80px 0 100px;
  line-height: 2.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-business .box_area {
  background: #fff;
  padding: 20px 0;
}
.post-name-business .box_area .inner {
  width: 97%;
  margin: 0 auto;
}
.post-name-business .box_area .box {
  margin-bottom: 20px;
}
.post-name-business .box_area .box.box01 {
  background: url(../img/business/box01.jpg) no-repeat left center/cover;
}
.post-name-business .box_area .box.box01 .box_content .c_btn {
  border: 1px solid #fff;
}
.post-name-business .box_area .box.box02 {
  background: url(../img/business/box02.jpg) no-repeat right center/cover;
}
.post-name-business .box_area .box.box03 {
  background: url(../img/business/box03.jpg) no-repeat left center/cover;
}
.post-name-business .box_area .box.box04 {
  background: url(../img/business/box04.jpg) no-repeat right center/cover;
}
.post-name-business .box_area .box.box05 {
  background: url(../img/business/box05.jpg) no-repeat left center/cover;
}
.post-name-business .box_area .box.box06 {
  background: url(../img/business/box06.jpg) no-repeat right center/cover;
}
.post-name-business .box_area .box.box07 {
  background: url(../img/business/box07.jpg) no-repeat left center/cover;
}
.post-name-business .box_area .box .box_content {
  width: 33%;
  padding: 200px 0 130px;
  margin: 0 auto 0 90px;
}
.post-name-business .box_area .box .box_content_even {
  margin: 0 90px 0 auto;
}
.post-name-business .box_area .box .box_content h3 {
  font-size: 5.6rem;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
  letter-spacing: 10px;
}
.post-name-business .box_area .box .box_content p {
  font-size: 1.7rem;
  line-height: 2.3;
  margin: 40px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-business .box_area .box .box_content .btn_area {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.post-name-business .box_area .box .box_content .c_btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  border: none;
}
.post-name-business .box_area .box .box_content .c_btn img {
  margin-left: 5px;
}
.post-name-business .box_area .box .box_content .c_btn:hover img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(91%) saturate(7483%) hue-rotate(1deg) brightness(91%) contrast(120%);
}
.post-name-business .box_area .box .box_content .break {
  flex-basis: 100%;
  height: 0;
}
@media screen and (max-width: 768px) {
  .post-name-business .fv {
    height: auto;
  }
  .post-name-business .fv h2 {
    font-size: 1.3rem;
    padding-top: 23%;
  }
  .post-name-business .fv h2 span {
    font-size: 2rem;
  }
  .post-name-business .fv h1 {
    font-size: 3rem;
    line-height: 1.8;
    letter-spacing: 5px;
    position: unset;
    transform: translate(0);
    margin: 50px 0 30px;
  }
  .post-name-business .group .inner {
    max-width: 95%;
    margin: 0 auto;
  }
  .post-name-business .group p {
    font-size: 1.4rem;
    padding: 45px 0 80px;
  }
  .post-name-business .box_area {
    padding: 0;
  }
  .post-name-business .box_area .inner {
    width: 100%;
  }
  .post-name-business .box_area .box {
    margin-bottom: 20px;
  }
  .post-name-business .box_area .box.box01 {
    background: none;
  }
  .post-name-business .box_area .box.box02 {
    background: none;
  }
  .post-name-business .box_area .box.box03 {
    background: none;
  }
  .post-name-business .box_area .box.box04 {
    background: none;
  }
  .post-name-business .box_area .box.box05 {
    background: none;
  }
  .post-name-business .box_area .box.box06 {
    background: none;
  }
  .post-name-business .box_area .box.box07 {
    background: none;
  }
  .post-name-business .box_area .box .box_content {
    width: 100%;
    padding: 75px 0 50px;
    margin: -50px auto 0;
  }
  .post-name-business .box_area .box .box_content_even {
    margin: -50px auto 0;
  }
  .post-name-business .box_area .box .box_content h3 {
    font-size: 2.4rem;
    text-align: center;
    letter-spacing: 5px;
  }
  .post-name-business .box_area .box .box_content p {
    font-size: 1.4rem;
    margin: 25px auto 40px;
    text-align: center;
    width: 90%;
  }
  .post-name-business .box_area .box .box_content .scroll {
    overflow-x: scroll;
  }
  .post-name-business .box_area .box .box_content .btn_area {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 0 20px;
  }
  .post-name-business .box_area .box .box_content .break {
    display: none;
  }
}

.post-name-service .fv {
  text-align: center;
  padding-top: 121px;
}
.post-name-service .fv h1 {
  font-size: 1.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-service .fv h1 span {
  display: block;
  font-size: 4rem;
  margin-bottom: 10px;
}
.post-name-service .service_conte {
  padding: 55px 0;
  text-align: center;
}
.post-name-service .service_conte .inner {
  max-width: 1030px;
  margin: 0 auto;
}
.post-name-service .service_conte h2 {
  font-size: 3.9rem;
  margin: 115px 0 40px;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
  letter-spacing: 10px;
}
.post-name-service .service_conte .red {
  font-size: 2.4rem;
  font-weight: bold;
  color: #FF000E;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-service .service_conte .text {
  font-size: 1.7rem;
  line-height: 2.3;
  color: #272727;
  margin: 50px 0 70px;
}
.post-name-service .service_conte .img {
  width: 70%;
  margin: 0 auto;
}
.post-name-service .service_conte .c_btn {
  margin: 73px auto 30px;
}
@media screen and (max-width: 768px) {
  .post-name-service .fv {
    padding-top: 100px;
  }
  .post-name-service .fv h1 {
    font-size: 1.4rem;
  }
  .post-name-service .fv h1 span {
    font-size: 3.5rem;
  }
  .post-name-service .service_conte {
    padding: 55px 0;
  }
  .post-name-service .service_conte .inner {
    max-width: 90%;
  }
  .post-name-service .service_conte h2 {
    font-size: 2.3rem;
    line-height: 2;
    margin: 55px 0 50px;
    letter-spacing: 1px;
  }
  .post-name-service .service_conte .red {
    font-size: 1.7rem;
  }
  .post-name-service .service_conte .text {
    font-size: 1.4rem;
    margin: 10px 0 40px;
    text-align: left;
  }
  .post-name-service .service_conte .js-scrollable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .post-name-service .service_conte .img {
    width: 550px;
  }
  .post-name-service .service_conte .c_btn {
    margin: 55px auto 30px;
  }
}

.post-name-company .fv {
  text-align: center;
  padding-top: 121px;
}
.post-name-company .fv h1 {
  font-size: 1.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-company .fv h1 span {
  display: block;
  font-size: 4rem;
  margin-bottom: 10px;
}
.post-name-company .fv .btn_area {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 55px;
}
.post-name-company .message {
  text-align: center;
  padding: 55px 0 200px;
}
.post-name-company .message .inner {
  max-width: 1030px;
  margin: 0 auto;
}
.post-name-company .message h2 {
  font-size: 3.9rem;
  color: #FF000E;
  line-height: 2.3;
  margin: 165px 0 70px;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
  letter-spacing: 10px;
}
.post-name-company .message p {
  font-size: 1.7rem;
  color: #272727;
  line-height: 2.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-company .profile .profile_fv {
  position: relative;
  margin-bottom: 165px;
}
.post-name-company .profile .profile_fv h2 {
  font-size: 1.7rem;
  color: #FF000E;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-company .profile .profile_fv h2 span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.post-name-company .profile .inner {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 85px;
}
.post-name-company .profile .logo_area {
  position: sticky;
  top: 15%;
  width: 50%;
}
.post-name-company .profile .right_content {
  width: 50%;
  margin-right: 40px;
}
.post-name-company .profile .right_content .profile_section {
  margin-bottom: 200px;
}
.post-name-company .profile .right_content h3 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
}
.post-name-company .profile .right_content dl {
  display: flex;
  padding: 40px 0;
  border-top: 1px solid #B2B2B2;
  margin: 0;
}
.post-name-company .profile .right_content dl dt {
  font-size: 1.7rem;
  color: #FF000E;
  width: 20%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-company .profile .right_content dl dd {
  font-size: 1.4rem;
  color: #272727;
  line-height: 2;
  width: 80%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-company .profile .right_content dl dd iframe {
  margin: 20px 0;
}
.post-name-company .history {
  padding-bottom: 150px;
}
.post-name-company .history .history_fv {
  position: relative;
  margin-bottom: 165px;
}
.post-name-company .history .history_fv h2 {
  font-size: 1.7rem;
  color: #FF000E;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-company .history .history_fv h2 span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.post-name-company .history .inner {
  max-width: 800px;
  margin: 0 auto;
}
.post-name-company .history dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 50px;
  position: relative;
  margin: 0;
  padding: 20px 0;
}
.post-name-company .history dl dt {
  font-size: 4rem;
  color: #FF000E;
  font-family: "gill-sans-nova", sans-serif;
  position: relative;
  margin-bottom: 5px;
  background: #fff;
  font-weight: 600;
}
.post-name-company .history dl dt::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: -180px;
  width: 1px;
  background: #FCBFC2;
  z-index: -1;
}
.post-name-company .history dl dd {
  font-size: 1.7rem;
  line-height: 2.5;
  color: #272727;
  margin-top: 0.5em;
}
.post-name-company .history dl.last dt::before {
  bottom: 40px;
}
@media screen and (max-width: 768px) {
  .post-name-company .fv {
    padding-top: 100px;
  }
  .post-name-company .fv h1 {
    font-size: 1.4rem;
  }
  .post-name-company .fv h1 span {
    font-size: 3.5rem;
  }
  .post-name-company .fv .scroll {
    overflow-x: scroll;
  }
  .post-name-company .fv .btn_area {
    width: -moz-max-content;
    width: max-content;
  }
  .post-name-company .message {
    text-align: center;
    padding: 50px 0 100px;
  }
  .post-name-company .message .inner {
    max-width: 90%;
  }
  .post-name-company .message h3 {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.3;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #FF000E;
    margin-bottom: 20px;
  }
  .post-name-company .message h3 span {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .post-name-company .message h2 {
    font-size: 2.2rem;
    color: #FF000E;
    line-height: 2.3;
    margin: 80px 0 40px;
    letter-spacing: 3px;
  }
  .post-name-company .message p {
    font-size: 1.4rem;
    text-align: left;
    text-align: justify;
    line-height: 2;
  }
  .post-name-company .profile .profile_fv {
    margin-bottom: 70px;
  }
  .post-name-company .profile .profile_fv h2 {
    font-size: 1.4rem;
  }
  .post-name-company .profile .profile_fv h2 span {
    font-size: 2rem;
  }
  .post-name-company .profile .inner {
    max-width: 90%;
    display: block;
  }
  .post-name-company .profile .right_content {
    width: 100%;
    margin-right: 0;
  }
  .post-name-company .profile .right_content .profile_section {
    margin-bottom: 200px;
  }
  .post-name-company .profile .right_content h3 {
    font-size: 2.1rem;
    margin: 40px 0;
    text-align: center;
  }
  .post-name-company .profile .right_content dl {
    flex-direction: column;
    padding: 25px 0;
  }
  .post-name-company .profile .right_content dl dt {
    font-size: 1.6rem;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .post-name-company .profile .right_content dl dd {
    width: 100%;
    text-align: center;
  }
  .post-name-company .profile .right_content dl dd iframe {
    margin: 15px 0 35px;
  }
  .post-name-company .profile .right_content dl.last {
    border-bottom: 1px solid #B2B2B2;
  }
  .post-name-company .history {
    padding-bottom: 150px;
  }
  .post-name-company .history .history_fv {
    margin-bottom: 70px;
  }
  .post-name-company .history .history_fv h2 {
    font-size: 1.4rem;
  }
  .post-name-company .history .history_fv h2 span {
    font-size: 2rem;
  }
  .post-name-company .history .inner {
    max-width: 90%;
  }
  .post-name-company .history dl {
    gap: 0 20px;
    padding: 10px 0;
  }
  .post-name-company .history dl dt {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  .post-name-company .history dl dt::before {
    bottom: -210px;
  }
  .post-name-company .history dl dd {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 0;
    text-align: justify;
  }
}

.post-name-kojintakuhai .fv {
  text-align: center;
  padding-top: 121px;
}
.post-name-kojintakuhai .fv h1 {
  font-size: 1.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-kojintakuhai .fv h1 span {
  display: block;
  font-size: 4rem;
  margin-bottom: 10px;
}
.post-name-kojintakuhai .deli {
  padding-top: 75px;
}
.post-name-kojintakuhai .deli .inner {
  max-width: 850px;
  margin: 0 auto;
}
.post-name-kojintakuhai .deli h2 {
  font-size: 2.4rem;
  color: #FF000E;
  margin-bottom: 35px;
  text-align: center;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
  letter-spacing: 5px;
}
.post-name-kojintakuhai .deli p {
  font-size: 1.7rem;
  color: #272727;
  line-height: 2.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-kojintakuhai .coop {
  padding: 95px 0 170px;
}
.post-name-kojintakuhai .coop .inner {
  max-width: 850px;
  margin: 0 auto;
}
.post-name-kojintakuhai .coop h2 {
  font-size: 2.4rem;
  color: #FF000E;
  margin-bottom: 35px;
  text-align: center;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
  letter-spacing: 5px;
}
.post-name-kojintakuhai .coop p {
  font-size: 1.7rem;
  color: #272727;
  line-height: 2.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-kojintakuhai .coop .img {
  width: 75%;
  margin: 70px auto 50px;
}
.post-name-kojintakuhai .coop .c_btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 20px;
}
.post-name-kojintakuhai .coop .c_btn img {
  margin-left: 5px;
}
.post-name-kojintakuhai .coop .c_btn:hover img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(91%) saturate(7483%) hue-rotate(1deg) brightness(91%) contrast(120%);
}
@media screen and (max-width: 768px) {
  .post-name-kojintakuhai .fv {
    padding-top: 100px;
  }
  .post-name-kojintakuhai .fv h1 {
    font-size: 1.4rem;
  }
  .post-name-kojintakuhai .fv h1 span {
    font-size: 3.5rem;
  }
  .post-name-kojintakuhai .deli {
    padding-top: 70px;
  }
  .post-name-kojintakuhai .deli .inner {
    max-width: 90%;
  }
  .post-name-kojintakuhai .deli h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  .post-name-kojintakuhai .deli p {
    font-size: 1.4rem;
    line-height: 2;
    text-align: justify;
  }
  .post-name-kojintakuhai .coop {
    padding: 85px 0;
  }
  .post-name-kojintakuhai .coop .inner {
    max-width: 90%;
  }
  .post-name-kojintakuhai .coop h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 2;
  }
  .post-name-kojintakuhai .coop p {
    font-size: 1.4rem;
    line-height: 2;
    text-align: justify;
  }
  .post-name-kojintakuhai .coop .img {
    margin: 55px auto 40px;
  }
}

.post-name-weeklymenu .content {
  display: flex;
}
.post-name-weeklymenu .left {
  width: 40%;
  position: sticky;
  top: 0;
  height: 100vh; /* 画面全体の高さ */
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #DC000C;
  text-align: center;
}
.post-name-weeklymenu .left h1 {
  font-size: 1.7rem;
  color: #fff;
  padding-top: 121px;
  margin-bottom: 35%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-weeklymenu .left h1 span {
  display: block;
  font-size: 4rem;
  margin-bottom: 10px;
}
.post-name-weeklymenu .left .left_text {
  font-size: 6.2rem;
  color: #fff;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
}
.post-name-weeklymenu .right {
  width: 60%;
  max-width: 520px;
  margin: 0 auto;
}
.post-name-weeklymenu .right .right_content {
  padding-top: 121px;
}
.post-name-weeklymenu .right .box {
  padding-bottom: 90px;
}
.post-name-weeklymenu .right h2 {
  font-size: 2.4rem;
  color: #FF000E;
}
.post-name-weeklymenu .right .acd {
  padding: 20px 40px;
  background: #F0F0F0;
  margin: 40px 0 30px;
}
.post-name-weeklymenu .right .acd .acd_header {
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
}
.post-name-weeklymenu .right .acd .acd_header p {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-weeklymenu .right .acd .acd_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.post-name-weeklymenu .right .acd .acd_header .i_box .one_i {
  display: block;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.post-name-weeklymenu .right .acd .acd_header .i_box .one_i::before, .post-name-weeklymenu .right .acd .acd_header .i_box .one_i::after {
  display: flex;
  content: "";
  background-color: #000;
  width: 15px;
  height: 2px;
  position: absolute;
  top: 6px;
  left: 1px;
  transform: rotate(0deg);
  transform-origin: center center;
}
.post-name-weeklymenu .right .acd .acd_header .i_box .one_i::before {
  width: 2px;
  height: 15px;
  top: 0;
  left: 8px;
}
.post-name-weeklymenu .right .acd .acd_header.open .i_box {
  transform: rotate(-360deg);
}
.post-name-weeklymenu .right .acd .acd_header.open .i_box .one_i::before {
  content: none;
}
.post-name-weeklymenu .right .acd .acd_header.open .i_box .one_i::after {
  transform: rotate(-45deg);
}
.post-name-weeklymenu .right .acd .acd_inner {
  display: none;
  padding: 20px 0;
  box-sizing: border-box;
}
.post-name-weeklymenu .right .acd .acd_inner p {
  font-size: 1.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-weeklymenu .right .c_btn {
  width: 213px;
}
@media screen and (max-width: 768px) {
  .post-name-weeklymenu .left {
    display: none;
  }
  .post-name-weeklymenu .right {
    width: 100%;
    max-width: 100%;
  }
  .post-name-weeklymenu .right h1 {
    font-size: 1.4rem;
    color: #fff;
    padding-top: 110px;
    text-align: center;
    background: #DC000C;
    margin: 0;
  }
  .post-name-weeklymenu .right h1 span {
    display: block;
    font-size: 3.5rem;
    margin-bottom: 10px;
  }
  .post-name-weeklymenu .right .sp_title {
    font-size: 3rem;
    color: #fff;
    text-align: center;
    background: #DC000C;
    padding: 50px 25px;
    font-family: "A1 Mincho", serif;
    font-weight: 100;
  }
  .post-name-weeklymenu .right .right_content {
    padding-top: 50px;
    max-width: 85%;
    margin: 0 auto;
  }
  .post-name-weeklymenu .right .box {
    padding-bottom: 70px;
  }
  .post-name-weeklymenu .right h2 {
    font-size: 2rem;
    text-align: center;
  }
  .post-name-weeklymenu .right .acd {
    padding: 15px 20px;
    margin: 20px 0;
  }
  .post-name-weeklymenu .right .acd .acd_header p {
    font-size: 1.5rem;
  }
  .post-name-weeklymenu .right .acd .acd_header .i_box {
    margin-top: -23px;
  }
  .post-name-weeklymenu .right .acd .acd_inner p {
    font-size: 1.4rem;
  }
}

.post-name-convenienttool .fv {
  text-align: center;
  padding: 121px 0 45px;
}
.post-name-convenienttool .fv h1 {
  font-size: 1.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-convenienttool .fv h1 span {
  display: block;
  font-size: 4rem;
  margin-bottom: 10px;
}
.post-name-convenienttool .tool_content {
  position: relative;
  margin-bottom: 20px;
}
.post-name-convenienttool .tool_content .text_area {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translate(-50%, -50%);
}
.post-name-convenienttool .tool_content .text_area h2 {
  font-size: 4rem;
  font-weight: bold;
  font-family: "A1 Mincho", serif;
  font-weight: 100;
  letter-spacing: 5px;
}
.post-name-convenienttool .tool_content .text_area h2 span {
  display: block;
  font-size: 1.7rem;
  color: #272727;
  margin-top: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
  font-weight: bold;
}
.post-name-convenienttool .tool_content .text_area p {
  font-size: 1.4rem;
  color: #272727;
  line-height: 2;
  margin: 30px 0 45px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-convenienttool .tool_content_02 .text_area {
  left: 23%;
  right: auto;
}
@media screen and (max-width: 768px) {
  .post-name-convenienttool .fv {
    padding-top: 100px;
  }
  .post-name-convenienttool .fv h1 {
    font-size: 1.4rem;
  }
  .post-name-convenienttool .fv h1 span {
    font-size: 3.5rem;
  }
  .post-name-convenienttool .tool_content .text_area {
    position: absolute;
    top: auto;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%);
    width: 90%;
  }
  .post-name-convenienttool .tool_content .text_area h2 {
    font-size: 2.8rem;
    text-align: center;
  }
  .post-name-convenienttool .tool_content .text_area h2 span {
    font-size: 1.5rem;
  }
  .post-name-convenienttool .tool_content .text_area p {
    font-size: 1.4rem;
    margin: 20px 0 40px;
  }
  .post-name-convenienttool .tool_content_02 .text_area {
    left: 50%;
  }
}

.archive_content {
  display: flex;
}
.archive_content .left {
  width: 30%;
  position: sticky;
  top: 0;
  height: 100vh; /* 画面全体の高さ */
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #DC000C;
  padding-left: 8%;
}
.archive_content .left h1 {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 60px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.archive_content .left h1 span {
  display: block;
  font-size: 5rem;
  margin-bottom: 20px;
}
.archive_content .left ul li {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 20px;
}
.archive_content .left ul li a {
  font-size: 1.7rem;
  color: #fff;
  opacity: 0.6;
}
.archive_content .left ul li.current-cat a {
  opacity: 1;
  position: relative;
}
.archive_content .left ul li.current-cat a::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}
.archive_content .right {
  width: 70%;
  max-width: 890px;
  margin: 0 auto;
  padding: 121px 20px 0;
}
.archive_content .right img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive_content .right .post_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 70px;
}
.archive_content .right .post_info {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin: 20px 0 10px;
}
.archive_content .right .post_info .date {
  font-size: 1.4rem;
  color: #000;
}
.archive_content .right .post_info .cat {
  font-size: 1.1rem;
  color: #fff;
  background: #FF000E;
  border-radius: 10px;
  padding: 0 5px;
}
.archive_content .right h2 {
  font-size: 1.5rem;
  line-height: 2;
  color: #272727;
}
.archive_content #load-more {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  background: #FF000E;
  padding: 10px;
  border-radius: 24px;
  width: 170px;
  margin: 70px auto 160px;
}
@media screen and (max-width: 768px) {
  .archive_content {
    flex-direction: column;
  }
  .archive_content .left {
    width: 100%;
    position: unset;
    height: auto; /* 画面全体の高さ */
    display: block;
    padding: 110px 0 40px;
  }
  .archive_content .left h1 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-align: center;
  }
  .archive_content .left h1 span {
    font-size: 3.5rem;
    margin-bottom: 10px;
  }
  .archive_content .left ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    width: 80%;
    margin: 0 auto;
  }
  .archive_content .left ul li {
    margin: 0;
    width: 47%;
  }
  .archive_content .left ul li a {
    display: block;
    font-size: 1.3rem;
    opacity: 1;
    border-radius: 24px;
    background: #DC000C;
    border: 1px solid #fff;
    padding: 10px;
    text-align: center;
  }
  .archive_content .left ul li a:hover {
    color: #DC000C;
    background: #fff;
  }
  .archive_content .left ul li.current-cat a {
    color: #DC000C;
    background: #fff;
  }
  .archive_content .left ul li.current-cat a::before {
    display: none;
  }
  .archive_content .right {
    width: 100%;
    max-width: 90%;
    padding: 50px 0 0;
  }
  .archive_content .right img {
    height: 220px;
  }
  .archive_content .right .post_grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  .archive_content #load-more {
    margin: 70px auto;
  }
}

.single_content {
  display: flex;
}
.single_content .left {
  width: 30%;
  position: sticky;
  top: 0;
  height: 100vh; /* 画面全体の高さ */
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #DC000C;
  padding-left: 8%;
}
.single_content .left h2 {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 60px;
}
.single_content .left h2 span {
  display: block;
  font-size: 5rem;
  margin-bottom: 20px;
}
.single_content .left ul li {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 20px;
}
.single_content .left ul li a {
  font-size: 1.7rem;
  color: #fff;
  opacity: 0.6;
}
.single_content .left ul li.current-cat a {
  opacity: 1;
}
.single_content .right {
  width: 70%;
  max-width: 890px;
  margin: 0 auto;
  padding: 121px 20px 130px;
}
.single_content .right .main_content .post_info {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin: 20px 0 10px;
}
.single_content .right .main_content .post_info .date {
  font-size: 1.6rem;
  color: #000;
}
.single_content .right .main_content .post_info .cat {
  font-size: 1.2rem;
  color: #fff;
  background: #FF000E;
  border-radius: 10px;
  padding: 0 5px;
}
.single_content .right .main_content h1 {
  font-size: 2.4rem;
  line-height: 2;
  color: #000;
}
.single_content .right .main_content img {
  width: 100%;
  margin: 20px 0 40px;
}
.single_content .right .main_content .content p {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 0.7em;
}
.single_content .right .c_btn {
  margin: 60px auto 90px;
}
.single_content .right .related_posts h2 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}
.single_content .right .related_posts ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 30px;
}
.single_content .right .related_posts img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_content .right .related_posts .post_info {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin: 20px 0 10px;
}
.single_content .right .related_posts .post_info .date {
  font-size: 1.5rem;
  color: #000;
}
.single_content .right .related_posts .post_info .cat {
  font-size: 1.1rem;
  color: #fff;
  background: #FF000E;
  border-radius: 10px;
  padding: 0 5px;
}
.single_content .right .related_posts h3 {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #272727;
}
@media screen and (max-width: 768px) {
  .single_content .left {
    display: none;
  }
  .single_content .right {
    width: 100%;
    max-width: 90%;
    padding: 90px 0 40px;
  }
  .single_content .right .main_content .post_info {
    margin: 0 0 10px;
  }
  .single_content .right .main_content .post_info .date {
    font-size: 1.5rem;
  }
  .single_content .right .main_content .post_info .cat {
    font-size: 1.1rem;
  }
  .single_content .right .main_content h1 {
    font-size: 1.8rem;
    line-height: 1.7;
  }
  .single_content .right .main_content img {
    width: 100%;
    margin: 15px 0 25px;
  }
  .single_content .right .main_content .content p {
    font-size: 1.4rem;
  }
  .single_content .right .c_btn {
    margin: 50px auto 90px;
  }
  .single_content .right .related_posts ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 0;
  }
  .single_content .right .related_posts img {
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.post-name-contact .contact_content {
  text-align: center;
  padding: 121px 0 45px;
  text-align: center;
}
.post-name-contact .contact_content .inner {
  max-width: 820px;
  margin: 0 auto;
}
.post-name-contact .contact_content h1 {
  font-size: 1.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post-name-contact .contact_content h1 span {
  display: block;
  font-size: 4rem;
  margin-bottom: 10px;
}
.post-name-contact .contact_content .info {
  font-size: 1.4rem;
  color: #272727;
  margin: 55px 0 10px;
}
.post-name-contact .contact_content .red {
  font-size: 1.4rem;
  color: #FF000E !important;
}
.post-name-contact .contact_content .red a {
  color: #FF000E !important;
}
.post-name-contact .contact_content .bold {
  font-size: 1.3rem;
  font-weight: bold;
  color: #272727;
  margin: 25px 0 45px;
}
.post-name-contact .contact_content .form .bg {
  background: #F0F0F0;
  padding: 55px 10% 75px;
}
.post-name-contact .contact_content .form dl {
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding: 15px 0;
}
.post-name-contact .contact_content .form dl dt {
  font-size: 1.5rem;
  width: 30%;
  margin-top: 5px;
}
.post-name-contact .contact_content .form dl dt span {
  font-size: 0.5em;
  vertical-align: top;
}
.post-name-contact .contact_content .form dl dd {
  width: 70%;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.post-name-contact .contact_content .form input,
.post-name-contact .contact_content .form select,
.post-name-contact .contact_content .form textarea {
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 3px;
  height: auto;
  border: none;
}
.post-name-contact .contact_content .form .mwform-select {
  position: relative;
}
.post-name-contact .contact_content .form .mwform-select::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  pointer-events: none;
}
.post-name-contact .contact_content .form .mwform-radio-field label {
  display: inline-flex;
  align-items: center;
  gap: 4px; /* ラジオボタンとテキストの隙間 */
}
.post-name-contact .contact_content .form .mwform-zip-field {
  display: block;
}
.post-name-contact .contact_content .form .c_btn {
  background: #FF000E;
  border-radius: 24px;
  margin: 70px 0 0;
  border: 1px solid #fff;
  padding: 10px;
}
.post-name-contact .contact_content .form .c_btn:hover {
  background: #fff;
  color: #FF000E;
  border: 1px solid #FF000E;
}
.post-name-contact .contact_content .form .btn_flex {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.post-name-contact .contact_content .form .back {
  background: #D2D2D2;
}
.post-name-contact .contact_content .form .back:hover {
  background: #fff;
  color: #D2D2D2;
  border: 1px solid #D2D2D2;
}
.post-name-contact .contact_content .mw_wp_form_complete {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(178, 178, 178, 0.7);
  width: 100%;
  height: 100%;
}
.post-name-contact .contact_content .thanks {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  text-align: center;
  padding: 130px 0 80px;
  width: 70%;
}
.post-name-contact .contact_content .thanks h3 {
  font-size: 8.3rem;
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 600;
  font-style: italic;
  color: #FF000E;
}
.post-name-contact .contact_content .thanks h3 span {
  font-size: 1.6rem;
  font-family: "Yu Gothic", sans-serif;
  font-style: normal;
  display: block;
  margin-top: 10px;
}
.post-name-contact .contact_content .thanks p {
  font-size: 1.4rem;
  color: #5A5A5A;
  font-family: "Yu Gothic", sans-serif;
  margin: 40px 0 50px;
  line-height: 2;
}
.post-name-contact .contact_content .thanks .c_btn {
  width: 280px;
  border-radius: 47px;
  font-size: 1.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .post-name-contact .contact_content {
    padding: 100px 0;
  }
  .post-name-contact .contact_content .inner {
    max-width: 100%;
  }
  .post-name-contact .contact_content h1 {
    font-size: 1.4rem;
  }
  .post-name-contact .contact_content h1 span {
    font-size: 3.5rem;
  }
  .post-name-contact .contact_content .info {
    font-size: 1.4rem;
    line-height: 2;
    margin: 55px 0 25px;
  }
  .post-name-contact .contact_content .red {
    font-size: 1.3rem;
    line-height: 2;
  }
  .post-name-contact .contact_content .bold {
    margin: 60px 0 45px;
  }
  .post-name-contact .contact_content .form .bg {
    padding: 45px 5% 70px;
  }
  .post-name-contact .contact_content .form dl {
    flex-direction: column;
    padding: 5px 0;
  }
  .post-name-contact .contact_content .form dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .post-name-contact .contact_content .form dl dd {
    width: 100%;
  }
  .post-name-contact .contact_content .form .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
  }
  .post-name-contact .contact_content .form .radio-group .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
  .post-name-contact .contact_content .form .btn_flex {
    gap: 10px;
  }
  .post-name-contact .contact_content .thanks {
    padding: 100px 0;
    width: 100%;
  }
  .post-name-contact .contact_content .thanks h3 {
    font-size: 4.8rem;
  }
  .post-name-contact .contact_content .thanks h3 span {
    font-size: 1.4rem;
  }
  .post-name-contact .contact_content .thanks p {
    font-size: 1.4rem;
  }
  .post-name-contact .contact_content .thanks .c_btn {
    width: 240px;
    border-radius: 24px;
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */