@charset "utf-8";

/*=========================================================================================*/
/* CSS Variables */
/*=========================================================================================*/
:root {
  --pink-color: #e50038;
}
:root {
  --blue-color: #38b1c4;
}
:root {
  --text-color: #333333;
}
:root {
  --text-font: "Noto Serif JP", serif;
}
:root {
  --sans-font: "Noto Sans JP", sans-serif;
}
:root {
  --yugo-font: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
/*
"Open Sans", sans-serif;
"Noto Serif JP", serif;
"Noto Sans JP", sans-serif;
*/

/*=========================================================================================*/
/* Base Styles - Elements */
/*=========================================================================================*/
section {
  display: block;
  padding: 140px 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.inner {
  width: 86%;
  max-width: 1600px;
  position: relative;
  margin: 0 auto;
}
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #222222;
}
p {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #222222;
}

/*=========================================================================================*/
/* Common Components */
/*=========================================================================================*/
/* Title Styles */
.title {
  position: relative;
}
.title h2 {
  font-size: 36px;
  padding: 85px 0 0;
  position: relative;
  z-index: 1;
}
.title h2 span {
  display: inline-block;
  font-family: var(--yugo-font);
  font-size: 12px;
  color: #666666;
  letter-spacing: 0;
  margin: 0 0 0 30px;
}
.title h2 + span {
  font-family: var(--yugo-font);
  font-size: 57px;
  line-height: 1;
  color: #f0f0f0;
  position: absolute;
  top: 0;
  left: 0;
}
.bg .title h2 + span {
  color: #fff;
}

/* Button Styles */
.btn {
  font-family: var(--sans-font);
  font-size: 23px;
  color: var(--pink-color);
  border-bottom: solid 1px var(--pink-color);
  padding: 0 0 10px 55px;
  position: relative;
  transition: 0.5s;
}
.btn::before {
  display: block;
  content: "";
  width: 54px;
  height: 54px;
  background: center / contain no-repeat url("../img/icon-arrow-pink.svg");
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  transition: 0.5s;
}
.btn:hover {
  color: var(--blue-color);
  border-bottom: solid 1px var(--blue-color);
  padding: 0 55px 10px 0;
}
.btn:hover::before {
  background: center / contain no-repeat url("../img/icon-arrow-blue.svg");
  left: 130px;
}
.btn.white {
  color: #fff;
  border-bottom: solid 1px #fff;
}
.btn.white::before {
  background: center / contain no-repeat url("../img/icon-arrow-blue02.svg");
}

/*=========================================================================================*/
/* Header & Navigation */
/*=========================================================================================*/
header {
  width: 100%;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: linear-gradient(#fff, rgba(255, 255, 255, 0));
  position: fixed;
  z-index: 1000;
}
header h1 {
  width: 420px;
}
nav {
  width: fit-content;
}
.navBox {
  width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px; /* メニュー項目間の間隔を広げる */
}
.navBox li {
  width: fit-content;
}
/* 旧デザインではロゴを非表示にしていたが、新デザインでは不要
.navBox li:nth-child(1){
    display: none;
}
*/
.navBox li a {
  font-family: var(--yugo-font);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none; /* 下線を削除 */
  white-space: nowrap; /* テキストの折り返しを禁止 */
  transition: color 0.5s;
}
.navBox li:hover a {
  color: var(--blue-color);
}
.navBox li.tel a {
  font-size: 25px;
  letter-spacing: 0;
  color: var(--blue-color);
  transition: color 0.5s;
}
.navBox li.tel span {
  display: inline-block;
  font-family: var(--yugo-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-color);
  padding: 0 10px;
  border-radius: 3px;
  border: solid 1px var(--blue-color);
  margin: 0 10px 0 0;
  position: relative;
  bottom: 5px;
  transition: 0.5s;
}
.navBox li.tel:hover a {
  color: var(--pink-color);
}
.navBox li.tel:hover span {
  color: var(--pink-color);
  border: solid 1px var(--pink-color);
}
.navBox li.mail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 5px;
  background: var(--blue-color);
  transition: 0.5s;
}
.navBox li.mail:hover a {
  background: var(--pink-color);
}
.navBox li.mail img {
  width: 22px;
  height: 17px;
}
/* 旧デザインではメールアイコンの次の要素（お問い合わせバナー）を非表示にしていたが、
   新デザインではショップボタンがあるため不要
.navBox li.mail + li{
    display: none;
}
*/
/* ショップボタンのスタイル */
.navBox li.shop a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--blue-color);
  border-radius: 5px;
  transition: 0.5s;
  min-width: 140px;
  height: 46px;
}
.navBox li.shop:hover a {
  background: var(--pink-color);
}
.navBox li.shop img {
  width: 28px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.navBox li.shop span {
  color: white;
  font-size: 14px;
  font-weight: 600;
}
.openbtn1 {
  display: none;
}

/*=========================================================================================*/
/* Main Visual (#fv) */
/*=========================================================================================*/
#fv {
  padding: 0;
}
#fv .inner {
  width: 90%;
  max-width: 1730px;
  height: 100%;
  padding: 190px 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#fv .inner div {
  width: 788px;
}
#fv .inner h2 {
  margin: 0 0 50px;
}
#fv .inner p {
  display: flex;
  align-items: center;
  width: fit-content;
  min-width: 310px;
  height: 70px;
  font-size: 29px;
  letter-spacing: 0.1em;
  padding: 0 30px 0 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  margin: 0 0 15px;
}
#fv .inner p span {
  font-size: 43px;
}
.fvBg {
  width: 84%;
  max-width: 1600px;
  margin: 0 0 0 auto !important;
}
.scroll {
  font-family: var(--sans-font);
  font-size: 12px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  color: var(--blue-color);
  position: absolute;
  bottom: 260px;
  left: -24px;
  z-index: 1;
}
.scroll::before {
  display: block;
  content: "";
  width: 1px;
  height: 166px;
  background: var(--blue-color);
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s linear infinite;
}
@keyframes scroll {
  0% {
    height: 0px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    height: 166px;
    opacity: 0;
  }
}

/* FV Image Below */
#fv + img {
  width: 75%;
  max-width: 1450px;
  margin: -150px auto 110px;
  position: relative;
  z-index: 1;
}
ul.scrollSlider {
  margin-bottom: 60px !important;
}
ul.scrollSlider .img {
  padding-top: 180px;
}

/*=========================================================================================*/
/* Top Page Sections (#front, #business, etc) */
/*=========================================================================================*/
/* Common TextBox and ImgBox Styles */
#front .textBox,
#recruit .textBox {
  width: 630px;
}
#front .imgBox,
#recruit .imgBox {
  width: calc(100% - 670px);
  max-width: 900px;
  position: relative;
}

/* Front Section */
#front .bg {
  width: 86%;
  max-width: 1600px;
  border-radius: 80px;
  padding: 60px 0 90px;
  background: #f0efeb;
  overflow: inherit;
  margin: 0 auto 110px;
}
#front .bg .inner {
  align-items: flex-end;
  width: 90%;
  max-width: 1450px;
}
#front .bg .textBox {
  width: 42%;
  max-width: 570px;
}
#front .bg .imgBox {
  width: 54%;
  max-width: 774px;
}

/* TextBox Styles */
#front .textBox .title,
#recruit .textBox .title {
  margin: 0 0 80px;
}
#front .textBox h3,
#recruit .textBox h3 {
  font-size: 28px;
  color: var(--blue-color);
  margin: 0 0 15px;
  position: relative;
}
#front .textBox h3::before,
#recruit .textBox h3::before {
  display: block;
  content: "";
  width: 20px;
  height: 4px;
  background: var(--pink-color);
  position: absolute;
  top: -10px;
  left: 0;
}
#front .textBox p,
#recruit .textBox p {
  margin: 0 0 40px;
}

/* ImgBox Styles */
#front .imgBox img,
#recruit .imgBox img {
  border-radius: 20px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.16);
}
#front .bg .imgBox img {
  width: 70%;
  max-width: 475px;
}
#front .bg .imgBox img:nth-child(1) {
  width: 50%;
  max-width: 388px;
  position: absolute;
  top: -220px;
  right: 0;
}

/* Business Section - 事業紹介 */
.business .inner {
  flex-direction: row-reverse;
}

/* Proposal Section - 私たちの強み */
/* (Styles remain as in style.css) */

/* Sales Section - 課題解決型営業 */
.sales .inner {
  flex-direction: row-reverse;
}
#front .sales.bg .imgBox img:nth-child(1) {
  right: auto;
  left: 0;
}
#front .sales.bg .imgBox img {
  margin: 0 0 0 auto;
}

/* News Section - お知らせ */
#front .news {
  width: 97%;
  max-width: 1522px;
  padding: 60px 0;
  border-radius: 30px 0 0 30px;
  background: var(--blue-color);
  margin: 0 0 0 auto;
}
#front .news .inner {
  justify-content: flex-start;
}
#front .news h2,
#front .news h3,
#front .news p,
#front .news .title h2 span {
  color: #fff;
}
#front .news .title h2 + span {
  opacity: 0.7;
}
.news .title {
  width: fit-content;
  margin: 0 100px 0 0;
}
.news .title h2 {
  padding: 50px 0 0;
}
.news .title + div {
  width: calc(100% - px);
  max-width: 852px;
}
.news ul li {
  border-bottom: solid 1px #cccccc;
}
.news ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 0;
  transition: opacity 0.5s;
  text-decoration: none;
}
.news ul li:hover a {
  opacity: 0.8;
}
.news ul li .day {
  width: 260px;
  font-size: 20px;
  color: #878787;
}
.news ul li h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: calc(100% - 260px);
  font-size: 20px;
}
#front .news ul {
  margin: 0 0 40px;
}
#front .news ul li {
  border-bottom: solid 1px #aff4ff;
}
#front .news ul li .day {
  color: #aff4ff;
}

/* Recruit Section - 採用情報 */
#recruit {
  padding: 200px 0 100px;
  background: #c8c8c8;
}
#recruit .inner {
  z-index: 1;
}
#recruit .inner + span {
  width: max-content;
  font-family: var(--yugo-font);
  font-size: 8.4vw;
  font-weight: bold;
  line-height: 1;
  color: #f0f0f0;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}
#recruit .title h2 {
  padding: 0;
}
#recruit .title h2 span {
  display: block;
  margin: 0;
}
#recruit .textBox h3 {
  color: #2f2f2f !important;
}
#recruit ul {
  display: flex;
}
#recruit ul li {
  width: 45%;
  max-width: 206px;
  margin: 0 30px 0 0;
  transition: opacity 0.5s;
}
#recruit ul li:hover {
  opacity: 0.8;
}
#recruit .imgBox h3 {
  font-size: 47px;
  font-weight: bold;
  line-height: 1.4;
  position: absolute;
  top: -110px;
  left: -60px;
}
#front #recruit .imgBox {
  position: relative;
  top: 80px;
}
#recruit .imgBox img {
  box-shadow: 25px 25px 0 #e6e6e6;
}

/*=========================================================================================*/
/* Sub Pages (.fvPage, #company, #news, etc) */
/*=========================================================================================*/
/* Sub Page FV */
.fvPage {
  padding: 200px 0 0;
}
.fvPage .title h2 {
  font-size: 70px;
  padding: 170px 0 0;
}
.fvPage .title h2 span {
  font-size: 24px;
  margin: 0 0 0 30px;
}
.fvPage .title h2 + span {
  font-size: 112px;
}
.fvPage .title + p {
  width: fit-content;
  font-size: 28px;
  color: #838383;
  position: absolute;
  bottom: 20px;
  right: 0;
}
#company .fvPage .title h2 + span,
#news .fvPage .title h2 + span,
#faq .fvPage .title h2 + span,
#contact .fvPage .title h2 + span {
  top: 120px;
}

/* Business Page - 事業紹介 */
#business .wrap01 img {
  width: 50%;
  max-width: 700px;
  margin: 0 auto 40px;
}
#business .wrap01 p {
  max-width: fit-content;
  font-size: 28px;
  margin: 0 auto;
}
#business .wrap02 {
  background: #f0efeb;
}
#business .wrap02 ul li {
  width: 48%;
  max-width: 750px;
}
#business .wrap02 ul li div {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
}
#business .wrap02 ul li div span {
  font-family: "Yu Gothic UI";
  font-size: 67px;
  line-height: 1;
  color: #f0f0f0;
  position: absolute;
  bottom: -15px;
  right: 0;
}
#business .wrap02 ul li h3 {
  font-size: 36px;
  margin: 0 0 25px;
  position: relative;
}
#business .wrap02 ul li h3::before {
  display: block;
  content: "";
  width: 20px;
  height: 4px;
  background: var(--pink-color);
  position: absolute;
  bottom: -15px;
  left: 0;
}
#business .wrap03 ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 40px 3%;
}
#business .wrap03 ul li {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
#business .wrap03 ul li img {
  width: 100%;
  border-radius: 20px;
  margin: 0 0 10px;
}
#business .wrap03 ul li h4 {
  font-size: 18px;
  line-height: 1.4;
}
#business .wrap03 ul li.wrap03-banner {
  grid-column: 1 / -1;
  align-items: center;
  text-align: center;
}
#business .wrap03 ul li.wrap03-banner a {
  display: inline-block;
}
#business .wrap03 ul li.wrap03-banner img {
  max-width: 600px;
  margin: 0;
}
#business .wrap03 ul li.wrap03-banner h4 {
  margin-top: 15px;
  font-size: 20px;
}

/* Proposal Page - 私たちの強み */
#proposal .wrap01 ul {
  align-items: normal;
}
#proposal .wrap01 ul li {
  width: 48%;
  max-width: 750px;
  border-radius: 20px;
  background: #f0efeb;
  margin-bottom: 80px;
  position: relative;
}
#proposal .wrap01 ul li::before {
  display: block;
  content: "";
  width: 100px;
  height: 140px;
  position: absolute;
  top: -20px;
  right: 15px;
}
#proposal .wrap01 ul li:nth-child(1)::before {
  background: center / contain no-repeat url("../img/no1.jpg");
}
#proposal .wrap01 ul li:nth-child(2)::before {
  background: center / contain no-repeat url("../img/no2.jpg");
}
#proposal .wrap01 ul li:nth-child(3)::before {
  background: center / contain no-repeat url("../img/no3.jpg");
}
#proposal .wrap01 ul li:nth-child(4)::before {
  background: center / contain no-repeat url("../img/no4.jpg");
}
#proposal .wrap01 ul li:nth-child(5)::before {
  background: center / contain no-repeat url("../img/no5.jpg");
}
#proposal .wrap01 ul li:nth-child(6)::before {
  background: center / contain no-repeat url("../img/no6.jpg");
}
#proposal .wrap01 ul li:nth-child(3n) {
  width: 100%;
  max-width: 100%;
}
#proposal .wrap01 ul li div {
  padding: 20px 30px;
}
#proposal .wrap01 ul li img {
  border-radius: 20px 20px 0 0;
}
#proposal .wrap01 ul li div h3 {
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 0;
  margin: 0 0 25px;
  position: relative;
}
#proposal .wrap01 ul li:nth-child(4) div h3 {
  font-size: 29px;
}
#proposal .wrap01 ul li div h3 span {
  display: block;
  font-size: 30px;
  margin: 0 0 10px;
}
#proposal .wrap01 ul li div h3::before {
  display: block;
  content: "";
  width: 20px;
  height: 4px;
  background: var(--pink-color);
  position: absolute;
  bottom: -15px;
  left: 0;
}
#proposal .wrap01 ul li:nth-child(3n) {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0 0 0 60px;
}
#proposal .wrap01 ul li:nth-child(3n) img {
  width: 48%;
  max-width: 750px;
  border-radius: 0 20px 20px 0;
}
#proposal .wrap01 ul li:nth-child(3n) div {
  width: 48%;
  max-width: 760px;
  padding: 40px 0;
}
#proposal .wrap01 ul li:nth-child(3) ol {
  padding: 0 0 0 15px;
  border-left: solid 5px var(--blue-color);
  margin: 40px 0 0;
}
#proposal .wrap01 ul li:nth-child(3) ol li {
  flex-direction: row;
  width: 100%;
  max-width: 100%;
  font-size: 20px;
  padding: 0;
  margin: 0 0 10px;
}
#proposal .wrap01 ul li:nth-child(3) ol li::before {
  display: none;
}
#proposal .wrap01 ul li:nth-child(6) {
  flex-direction: row;
  position: relative;
  margin-top: 90px;
}
#proposal .wrap01 ul li:nth-child(6) img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.gallery li {
  width: 25%;
}

/* Sales Page - 課題解決型営業 */
#sales .wrap01 {
  padding: 140px 0 0;
}
#sales .wrap01 .inner {
  max-width: 820px;
}
#sales .wrap01 .inner h2 {
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.06em;
  margin: 0 0 40px;
}
#sales .wrap02 .inner {
  width: 100%;
  max-width: 1980px;
}
#sales .wrap02 li {
  position: relative;
  margin: 0 0 60px;
}
#sales .wrap02 .imgBox {
  max-width: 1260px;
  position: relative;
  margin: 0 auto 0 0;
}
#sales .wrap02 li:nth-child(even) .imgBox {
  margin: 0 0 0 auto;
}
#sales .wrap02 .imgBox span {
  font-family: "Yu Gothic UI";
  font-size: 70px;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 30px;
  left: 40px;
}
#sales .wrap02 li:nth-child(even) .imgBox span {
  text-align: right;
  left: auto;
  right: 40px;
}
#sales .wrap02 .textBox {
  width: fit-content;
  min-width: 600px;
  padding: 40px 60px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 40px;
  left: 940px;
}
#sales .wrap02 li:nth-child(even) .textBox {
  left: auto;
  right: 940px;
}
#sales .wrap02 .textBox h3 {
  font-size: 36px;
  line-height: 1.4;
}
#sales .wrap02 .textBox p {
  font-size: 23px;
}
#sales .wrap03 {
  padding: 140px 0 0;
}
#sales .wrap03 h2 {
  font-size: 36px;
  text-align: center;
  position: relative;
  margin: 0 0 40px;
}
#sales .wrap03 h2 span {
  display: block;
  font-size: 12px;
  margin: 15px 0 0;
}
#sales .wrap03 h2::before {
  width: 1280px;
  display: block;
  content: "PREPARATION FOR CLIMATE CHANGE";
  font-family: "Yu Gothic UI";
  font-size: 70px;
  text-align: center;
  color: #f0f0f0;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#sales .wrap03 p {
  font-size: 23px;
  text-align: center;
  margin: 0 0 60px;
}

/* News Page - お知らせ */
#news .news .inner {
  max-width: 850px;
}
#pagination {
  width: fit-content;
  display: flex;
  justify-content: center;
  margin: 60px auto 0;
}
.news #pagination li {
  border-bottom: none;
}
#pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  border-radius: 7px;
  margin: 0 7px 0 0;
}
#pagination li:last-child a {
  margin: 0;
}
#pagination span {
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1;
}
#pagination a.active {
  background: var(--blue-color);
}
#pagination a.active span {
  color: #fff;
}
#pagination li.pre a span,
#pagination li.next a span {
  position: relative;
  top: -2px;
}

/* Company Page - 会社概要 */
#company .wrap {
  padding: 50px 0;
}
#company .wrap01 {
  padding: 140px 0 50px;
}
#company .wrap .title {
  width: 490px;
}
#company .wrap .title + div {
  width: calc(100% - 490px);
}
#company .wrap p {
  margin: 0 0 60px;
}
#company .wrap img {
  width: 50%;
}
#company .wrap02 .title h2 {
  padding: 30px 0 0;
}
#company .wrap03 dl {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: solid 1px #cccccc;
}
#company .wrap03 dl dt {
  width: 280px;
  font-size: 20px;
}
#company .wrap03 dl dd {
  width: calc(100% - 280px);
  font-size: 20px;
}
#company .wrap03 dd ul li {
  display: flex;
  align-items: center;
  font-size: 20px;
}
#company .wrap03 dd ul li p {
  width: 168px;
  font-size: 20px;
  margin: 0;
}
#company .wrap03 dl:nth-child(8) dd ul li p {
  width: 367px;
  font-size: 20px;
  color: #191919;
}
#company .wrap03 dl:nth-child(8) li {
  font-size: 16px;
  color: #808080;
}

/* Access */
.access .inner {
  position: relative;
  z-index: 10;
}
.access .inner .accessBox {
  max-width: 410px;
  padding: 50px 40px;
  border-radius: 10px;
  background: var(--blue-color);
}
.accessBox .title h2 {
  color: #fff;
  padding: 25px 0 0;
}
.accessBox .title h2 span {
  color: #aff4ff;
}
.accessBox .title h2 + span {
  color: #aff4ff;
}
.accessBox img {
  margin: 0 0 12px;
}
.accessBox p,
.accessBox a {
  letter-spacing: 0.02em;
  color: #fff;
}
.accessBox p:nth-child(3) {
  font-size: 20px;
}
.accessBox p:nth-child(3) span {
  display: block;
  font-size: 14px;
}
.accessBox p:nth-child(4),
.accessBox p a {
  display: inline-block;
  font-size: 16px;
}
.access iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#company #recruit {
  padding: 250px 0 100px;
  background: #c8c8c8;
}
#company #recruit .imgBox img {
  border-radius: 0;
  box-shadow: none;
}

/* SDGs */
.sdgs {
  width: 90%;
  max-width: 1450px;
  padding: 80px 0;
  border-radius: 30px;
  background: var(--blue-color);
  margin: 320px auto 100px;
  overflow: inherit;
}
.sdgs .inner {
  align-items: flex-end;
  max-width: 1180px;
  border-radius: 30px;
  background: var(--blue-color);
}
.sdgs .title h2 {
  line-height: 1.2;
  color: #fff;
  padding: 70px 0 0;
  margin: 0 0 40px;
}
.sdgs .title h2 + span {
  font-size: 37px;
  color: #aff4ff;
}
.sdgs .titleBox,
.sdgs .imgBox {
  width: 50%;
  position: relative;
}
.sdgs .imgBox img {
  box-shadow: 0 20px 24px rgba(0, 0, 0, 0.16);
  position: absolute;
  bottom: -80px;
}

/* FAQ Page - よくあるご質問 */
#faq .wrap01 .inner {
  max-width: 1130px;
}
#faq .wrap01 h2 {
  font-size: 28px;
  text-align: center;
  margin: 0 0 60px;
}
.toggle {
  display: none;
}
.accordion {
  border: solid 1px var(--blue-color);
  border-radius: 10px;
  margin: 0 0 40px;
  overflow: hidden;
}
.Label {
  display: flex;
  width: 100%;
  padding: 10px 20px;
  background: var(--blue-color);
  position: relative;
}
.Label::before {
  display: inline-block;
  content: "";
  width: 70px;
  height: 90px;
  background: center / contain no-repeat url("../img/icon-q.svg");
  margin: 0 20px 0 0;
  position: relative;
  top: -8px;
}
.Label::after {
  display: block;
  content: "";
  width: 46px;
  height: 46px;
  background: center / contain no-repeat url("../img/icon-arrow02.svg");
  transform: rotate(90deg);
  transition: 0.5s;
  position: absolute;
  top: 30px;
  right: 20px;
}
.toggle:checked + .Label::after {
  transform: rotate(-90deg);
}
.Label p {
  display: flex;
  align-items: center;
  width: calc(100% - 160px);
  max-width: 830px;
  font-size: 16px;
  color: #fff;
}
.Label:hover {
  cursor: pointer;
}
.box {
  display: flex;
  height: 0;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}
.toggle:checked + .Label + .box {
  height: auto;
  padding: 10px 20px;
  transition: all 0.3s;
}
.box::before {
  display: inline-block;
  content: "";
  width: 70px;
  height: 90px;
  background: center / contain no-repeat url("../img/icon-a.svg");
  margin: 0 20px 0 0;
  position: relative;
  top: -8px;
}
.box p {
  max-width: 830px;
  font-size: 16px;
  line-height: 2.4;
}
.Label01::after {
  transform: rotate(-90deg);
}
.toggle:checked + .Label01::after {
  transform: rotate(90deg);
}
.box01 {
  height: auto;
  padding: 10px 20px;
  transition: all 0.3s;
}
.toggle:checked + .Label01 + .box01 {
  height: 0;
  padding: 0 20px;
  overflow: hidden;
}

/*=========================================================================================*/
/* Footer */
/*=========================================================================================*/
/* Top Footer */
.topFooter {
  padding: 60px 0;
  background: center / cover no-repeat url("../img/frontFooter.jpg");
}
.topFooter .inner {
  max-width: 1540px;
}
.topFooter h2 {
  font-size: 60px;
  line-height: 1.6;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.54);
  color: #fff;
  margin: 370px 0 150px;
}
.topFooter ul li {
  width: 49%;
  max-width: 755px;
  transition: opacity 0.5s;
}
.topFooter ul li:hover {
  opacity: 0.8;
}

/* Main Footer */
footer {
  padding: 60px 0;
  background: #d86464;
  position: relative;
}
footer a {
  transition: opacity 0.5s; /* FIXED: was "transform: opacity .5s;" */
}
footer a:hover {
  opacity: 0.5;
}
footer .inner {
  margin: 0 auto 60px;
}
footer p,
footer a {
  color: #fff;
}
/* フッター左側エリア（ロゴとバナー） */
footer .footer-left {
  width: 50%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 会社ロゴ - 独立して管理 */
footer .footer-logo {
  width: 100%;
  max-width: 350px;
  margin: 0;
}
footer .footer-logo a {
  display: block;
  width: 100%;
}
footer .footer-logo img {
  width: 100%;
  height: auto;
}

/* Packmarcheバナー - 独立して管理 */
.packmarche-banner {
  width: 100%;
  max-width: 200px;
  height: auto;
  overflow: hidden;
}
.packmarche-banner a {
  display: block;
  width: 100%;
}
.packmarche-banner img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain; /* アスペクト比を維持 */
  display: block;
}

footer .ftBox {
  width: 50%;
  justify-content: flex-start;
}
footer .ftBox div {
  width: fit-content;
  padding: 0 50px 0 0;
  border-right: solid 1px #fff;
}
footer .ftBox div p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;
}
footer .ftBox div p:nth-child(2) {
  margin: 0 0 5px;
}
footer .ftBox div p:nth-child(3) {
  margin: 0 0 30px;
}
footer .ftBox div ul {
  width: 100%;
}
footer .ftBox div ul li {
  width: 100%;
  max-width: 180px;
}
footer .ftBox div ul li:nth-child(1) {
  margin: 0 0 20px;
}
footer .ftBox div + ul {
  width: fit-content;
  padding: 0 0 0 50px;
}
footer .ftBox ul li {
  margin: 0 0 10px;
}
footer .ftBox ul li a {
  font-size: 16px;
  color: #fff;
}
footer small {
  width: 100%;
  display: block;
  font-size: 10px;
  text-align: center;
  color: #fff;
  background: var(--pink-color);
  padding: 10px 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/*=========================================================================================*/
/* Forms */
/*=========================================================================================*/
.contactForm {
  padding: 100px 0;
}
.contactForm .inner {
  width: 90%;
  max-width: 1082px;
  padding: 80px 0;
  border-radius: 10px;
  background: #efefef;
}
.form {
  width: 90%;
  max-width: 883px;
  margin: 0 auto;
}
.form dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 50px;
}
.form dl dt {
  width: 190px;
}
.form dl dt p {
  font-family: var(--sans-font);
  font-size: 16px;
  font-weight: bold;
}
.form dl dt p span {
  font-size: 10px;
  font-weight: normal;
}
.form dl dd {
  width: calc(100% - 190px);
}
.form dl dd p {
  font-family: var(--sans-font);
  font-size: 20px;
}
.form dl dd input,
.form dl dd select {
  height: 50px;
  display: flex;
  align-items: center;
  font-size: 20px;
  padding: 0 20px;
  border: solid 1px #707070;
  border-radius: 5px;
  background: #fff;
}
.form dl:nth-child(2) dd input,
.form dl:nth-child(5) dd input,
.form dl:nth-child(6) dd select {
  max-width: 365px;
}
.form dl:nth-child(3) dd input,
.form dl:nth-child(4) dd input {
  max-width: 490px;
}
.form dl dd.select span {
  position: relative;
}
.form dl dd.select span::before {
  display: block;
  content: "▼";
  font-size: 10px;
  position: absolute;
  top: 18px;
  right: 20px;
}
.form dl.radio label {
  position: relative;
}
.form dl.radio .wpcf7-list-item {
  margin: 0 15px 0 0;
}
.form dl.radio label input {
  width: 18px;
  height: 18px;
  opacity: 0;
  position: absolute;
  left: 0;
}
.form dl.radio .wpcf7-list-item-label:before {
  display: inline-block;
  border: 1px solid #ececec;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  position: relative;
  top: 5px;
  margin-right: 8px;
}
.form dl.radio .wpcf7-list-item-label:after {
  background: #a997b7;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0.5px;
  left: 3px;
  margin-right: 8px;
  opacity: 0;
}
input[type="radio"]:checked ~ .wpcf7-list-item-label:after {
  opacity: 1;
}
p.check {
  font-size: 12px;
  text-align: center;
  margin: 0 auto 40px;
}
.check label {
  display: flex;
  align-items: center;
}
.check label input {
  width: fit-content;
  margin: 0 10px 0 0;
  opacity: 0;
  position: relative;
  left: 21px;
}
.check .wpcf7-list-item-label:before {
  display: inline-block;
  border: 1px solid #222;
  border-radius: 0;
  width: 10px;
  height: 10px;
  position: relative;
  top: 1px;
  margin-right: 8px;
}
input[type="checkbox"]:checked ~ .wpcf7-list-item-label:before {
  background: center / contain no-repeat url("../img/icon-check.svg");
}
span.wpcf7-list-item-label {
  font-size: 13px;
}
.form dl.textarea {
  height: auto;
}
.form dl.textarea dd textarea {
  font-size: 20px;
  padding: 15px 20px;
  border: solid 1px #707070;
  border-radius: 5px;
  background: #fff;
}
.form dl dd .privacy p {
  font-size: 14px;
  margin: 20px 0 10px;
}
.privacy div {
  height: 200px;
  padding: 20px 30px;
  border-radius: 10px;
  border: solid 1px #989898;
  background: #eaeaea;
  overflow: scroll;
}
.privacy h3 {
  font-size: 20px;
  letter-spacing: 0;
  color: #707070;
  margin: 0 0 5px;
}
.privacy h4 {
  font-size: 13px;
  color: #797979;
}
.form dl dd .privacy h4 + p {
  font-size: 13px;
  color: #797979;
  margin: 0;
}
.form dt.required p::after {
  display: inline-block;
  content: "*";
  color: #e70000;
  margin: 0 0 0 3px;
}
input[type="text"].p-postal-code {
  width: auto;
}
::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.2);
}
:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.2) !important;
}
::-moz-placeholder {
  color: rgba(34, 34, 34, 0.2);
  opacity: 1;
}
::placeholder {
  color: rgba(34, 34, 34, 0.2);
  opacity: 1;
}
:focus::-webkit-input-placeholder {
  color: transparent;
}
:focus:-ms-input-placeholder {
  color: transparent;
}
:focus::-moz-placeholder {
  color: transparent;
}
:focus::placeholder {
  color: transparent;
}
.wpcf7-response-output {
  max-width: 500px;
  width: 90%;
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 12px;
  margin: -20px auto 30px !important;
}
.form [type="button"],
.form [type="reset"],
.form [type="submit"] {
  display: block;
  max-width: 465px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  padding: 20px 10px;
  background: var(--blue-color);
  border-radius: 30px;
  position: relative;
  transition: 0.5s;
  margin: 0 auto 20px;
}
.form [type="button"] {
  background: #999;
}
span.wpcf7-not-valid-tip {
  font-size: 11px;
}
form.custom-wpcf7c-confirmed dl dd input,
form.custom-wpcf7c-confirmed dl dd select,
form.custom-wpcf7c-confirmed dl.textarea dd textarea {
  border: none;
  background: #eee;
  border-radius: 0;
}
.form dl dd.select span.wpcf7-not-valid-tip::before {
  display: none;
}
.wpcf7 input[type="file"] {
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
}

/*=========================================================================================*/
/* Post Pages */
/*=========================================================================================*/
.otherPost {
  margin: 100px auto 0;
}
.otherPost p {
  width: 49%;
  max-width: 353px;
}
.otherPost a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 78px;
  font-size: 20px;
  color: #fff !important;
  padding: 0 0 0 90px;
  border-radius: 7px;
  background: var(--blue-color);
  position: relative;
  transition: 0.5s;
  opacity: 1;
}
.otherPost p.next a {
  justify-content: flex-end;
  padding: 0 90px 0 0;
}
.otherPost a:hover {
  opacity: 0.8;
}
.otherPost a::before {
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  background: center / contain no-repeat url("../img/icon-arrow02.svg");
  position: absolute;
  top: 14px;
}
.otherPost p.prev a::before {
  transform: rotate(180deg);
  left: 15px;
}
.otherPost p.next a::before {
  right: 15px;
}
.single .inner {
  max-width: 850px;
}
.single .day {
  font-size: 14px;
  color: #878787;
}
.single h2 {
  font-size: 30px;
  font-weight: bold;
  margin: 40px 0 0;
}
.single h2.singleTitle {
  margin: 0 0 40px;
}
.single h3 {
  font-size: 20px;
  background: var(--pink-color);
  padding: 0.3em 0.7em;
  color: #fff;
  margin: 30px 0 0;
}
.single h4 {
  font-size: 18px;
  font-weight: bold;
  border-left: 5px solid var(--pink-color);
  padding: 0.1em 0.7em;
  color: var(--pink-color);
  margin: 30px 0 0;
}
.single h5 {
  font-size: 16px;
  font-weight: bold;
  color: var(--pink-color);
  margin: 30px 0 0;
}
.single p {
  margin: 10px 0 0;
}
.single a {
  color: #5fd0d6;
}
.wp-block-columns,
.wp-block-gallery {
  margin: 30px 0 0 !important;
  margin-bottom: 0;
}
.wp-block-image {
  margin: 30px 0 0 !important;
}
.wp-block-column h2:nth-child(1),
.wp-block-column h3:nth-child(1),
.wp-block-column h4:nth-child(1),
.wp-block-column h5:nth-child(1),
.wp-block-column p:nth-child(1),
.wp-block-image:nth-child(1) {
  margin: 0;
}

/*=========================================================================================*/
/* Responsive - Media Queries */
/*=========================================================================================*/
@media screen and (max-width: 1600px) {
  p {
    font-size: 15px;
  }
  /* Title */
  .title h2 {
    font-size: 26px;
    padding: 60px 0 0;
  }
  .title h2 span {
    margin: 0 0 0 20px;
  }
  .title h2 + span {
    font-size: 38px;
  }
  /* Button */
  .btn {
    font-size: 16px;
    padding: 0 0 5px 35px;
  }
  .btn::before {
    width: 40px;
    height: 40px;
  }
  .btn:hover {
    padding: 0 35px 5px 0;
  }
  .btn:hover::before {
    left: 90px;
  }
  /* Header */
  header {
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    height: 150px;
  }
  nav {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  /* FV */
  #fv .inner div {
    width: 580px;
  }
  #fv .inner p {
    min-width: 250px;
    height: 50px;
    font-size: 22px;
    padding: 0 20px 0 0;
  }
  #fv .inner p span {
    font-size: 30px;
  }
  #fv + img {
    margin: -100px auto 90px;
  }
  /* Front */
  #front .imgBox,
  #recruit .imgBox {
    width: 55%;
  }
  #front .textBox,
  #recruit .textBox {
    width: 40%;
  }
  #front .textBox .title,
  #recruit .textBox .title {
    margin: 0 0 50px;
  }
  #front .textBox h3,
  #recruit .textBox h3 {
    font-size: 21px;
  }
  #front .textBox h3::before,
  #recruit .textBox h3::before {
    width: 15px;
    height: 3px;
    top: -7px;
  }
  #front .bg .imgBox img:nth-child(1) {
    top: -120px;
  }
  /* Sub Pages */
  .fvPage .title h2 {
    font-size: 60px;
    padding: 130px 0 0;
  }
  .fvPage .title h2 span {
    font-size: 20px;
  }
  .fvPage .title h2 + span {
    font-size: 90px;
  }
  .fvPage .title + p {
    font-size: 24px;
  }
  #company .fvPage .title h2 + span,
  #news .fvPage .title h2 + span,
  #faq .fvPage .title h2 + span,
  #contact .fvPage .title h2 + span {
    top: 90px;
  }
  /* Proposal */
  #proposal .wrap01 ul li div h3 {
    font-size: 32px;
  }
  #proposal .wrap01 ul li div h3 span {
    font-size: 26px;
  }
  #proposal .wrap01 ul li:nth-child(3) ol li {
    font-size: 15px;
  }
  /* Sales */
  #sales .wrap02 .textBox h3 {
    font-size: 30px;
  }
}

@media screen and (max-width: 1366px) {
  section {
    padding: 80px 0;
  }
  p {
    font-size: 13px; /* NOTE: フォントサイズが1000pxで14pxに増えます。意図的な増加か確認が必要です。 */
  }
  /* Title */
  .title h2 {
    font-size: 20px;
    padding: 50px 0 0;
  }
  .title h2 span {
    font-size: 10px;
    margin: 0 0 0 10px;
  }
  .title h2 + span {
    font-size: 30px;
  }
  /* Header */
  .navBox {
    width: 910px;
    gap: 8px;
  }
  .navBox li a {
    font-size: 13px;
  }
  /* 電話ボタン: アイコンのみ表示（1366px以下で適用） */
  .navBox li.tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 0;
    border-radius: 5px;
    background: var(--blue-color);
    transition: 0.5s;
    position: relative;
  }
  .navBox li.tel span {
    display: none;
  }
  /* 電話アイコン（疑似要素） */
  .navBox li.tel a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 00-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E") center / contain no-repeat;
    font-size: initial;
  }
  .navBox li.tel:hover a {
    background: var(--pink-color);
  }
  .navBox li.mail a {
    width: 40px;
    height: 40px;
  }
  /* ショップボタンの最適化 */
  .navBox li.shop a {
    min-width: 120px;
    padding: 6px 12px;
    height: 40px;
    gap: 6px;
  }
  .navBox li.shop span {
    font-size: 13px;
  }
  .navBox li.shop img {
    width: 24px;
    height: 20px;
  }
  /* FV */
  #fv .inner {
    padding: 100px 0;
  }
  #fv .inner div {
    width: 420px;
  }
  #fv .inner h2 {
    margin: 0 0 30px;
  }
  #fv .inner p {
    min-width: 160px;
    height: 35px;
    font-size: 15px;
    border-radius: 5px;
    padding: 0 15px 0 0;
    margin: 0 0 10px;
  }
  #fv .inner p span {
    font-size: 24px;
  }
  /* Front */
  #front .bg {
    padding: 40px 0 60px;
  }
  #front .textBox .title,
  #recruit .textBox .title {
    margin: 0 0 40px;
  }
  #front .textBox h3,
  #recruit .textBox h3 {
    font-size: 16px;
  }
  #front .textBox p,
  #recruit .textBox p {
    margin: 0 0 20px;
  }
  #front .bg .imgBox img:nth-child(1) {
    top: -90px;
  }
  /* Recruit */
  #recruit .imgBox h3 {
    font-size: 33px;
    top: -80px;
  }
  /* Sub Pages */
  .fvPage .inner {
    max-width: 980px;
  }
  .fvPage .title h2 {
    font-size: 40px;
    padding: 110px 0 0;
  }
  .fvPage .title h2 span {
    font-size: 18px;
  }
  .fvPage .title h2 + span {
    font-size: 70px;
  }
  .fvPage .title + p {
    font-size: 20px;
    position: relative;
    bottom: 0;
    right: auto;
    left: 0;
  }
  #company .fvPage .title h2 + span,
  #news .fvPage .title h2 + span,
  #faq .fvPage .title h2 + span,
  #contact .fvPage .title h2 + span {
    top: 70px;
  }
  /* Business */
  #business .wrap02 ul li div span {
    font-size: 60px;
    bottom: -13px;
  }
  #business .wrap02 ul li h3 {
    font-size: 26px;
  }
  /* Proposal */
  #proposal .wrap01 ul li::before {
    width: 70px;
    height: 100px;
  }
  #proposal .wrap01 ul li div h3,
  #proposal .wrap01 ul li:nth-child(4) div h3 {
    font-size: 26px;
  }
  #proposal .wrap01 ul li div h3 span {
    font-size: 20px;
    margin: 0;
  }
  #proposal .wrap01 ul li:nth-child(3) ol li {
    font-size: 13px;
  }
  /* Sales */
  #sales .wrap01 {
    padding: 80px 0 0;
  }
  #sales .wrap02 .inner {
    max-width: 1000px;
  }
  #sales .wrap02 .imgBox {
    max-width: 740px;
  }
  #sales .wrap02 .imgBox span {
    font-size: 50px;
  }
  #sales .wrap02 .textBox {
    min-width: 400px;
    padding: 30px 40px;
  }
  #sales .wrap02 .textBox h3 {
    font-size: 24px;
  }
  /* Company */
  #company .wrap .title {
    width: 300px;
  }
  #company .wrap .title + div {
    width: calc(100% - 300px);
  }
  /* Contact Form */
  .contactForm {
    padding: 80px 0;
  }
}

@media screen and (max-width: 1200px) {
  footer .footer-left {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
    align-items: center;
  }
  footer .footer-logo {
    max-width: 350px;
  }
  footer .ftBox {
    width: 100%;
    justify-content: center;
  }
  footer .ftBox ul li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1000px) {
  section {
    padding: 60px 0;
  }
  .inner {
    max-width: 600px;
  }
  p {
    font-size: 14px;
  }
  /* Title */
  .title h2 {
    font-size: 20px;
    padding: 50px 0 0;
  }
  /* Header */
  header {
    height: 65px;
    padding: 0 20px;
  }
  header h1 {
    width: 330px;
  }
  nav {
    display: block;
    width: 100%;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: -100vh;
    left: 0;
    overflow: scroll;
    opacity: 0;
    transition: 1s;
  }
  .pcNav nav {
    top: 0;
    opacity: 1;
  }
  .navBox {
    width: 85%;
    max-width: 500px;
    flex-wrap: wrap;
    padding: 80px 0;
    margin: 0 auto;
  }
  .navBox li {
    width: 100%;
  }
  /* モバイルメニューでは全項目を表示 */
  .navBox li.mail {
    display: none; /* メールアイコンはモバイルでは非表示 */
  }
  .navBox li.shop {
    display: block; /* ショップボタンはモバイルでも表示 */
    margin: 20px 0 0;
  }
  .navBox li.shop a {
    padding: 15px 10px;
    border-bottom: solid 1px var(--blue-color);
    background: #ff6b35;
    color: white;
    gap: 8px;
  }
  .navBox li.shop:hover a {
    background: var(--pink-color);
  }
  .navBox li a {
    display: block;
    padding: 15px 10px;
    border-bottom: solid 1px var(--blue-color);
  }
  /* モバイルメニューの最初のアイテム（ロゴ）用 */
  .navBox li.menu-item-logo a {
    border-bottom: none;
    margin: 0 0 20px;
  }
  .openbtn1 {
    display: block;
    cursor: pointer;
    width: 65px;
    height: 65px;
    background: var(--blue-color);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
  }
  .openbtn1 span {
    display: block;
    transition: all 0.4s;
    position: relative;
    top: 24px;
    width: 40px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 29px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 34px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 24px;
    transform: translateY(6px) rotate(-30deg);
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 32px;
    transform: translateY(-6px) rotate(30deg);
  }
  /* FV */
  #fv .inner div {
    width: 330px;
  }
  #fv .inner h2 {
    margin: 0 0 20px;
  }
  #fv .inner p {
    min-width: 140px;
    font-size: 13px;
  }
  #fv .inner p span {
    font-size: 18px;
  }
  /* Front */
  #front .bg .inner {
    max-width: 600px;
  }
  #front .textBox,
  #recruit .textBox,
  #front .bg .textBox {
    width: 100%;
    max-width: 100%;
    margin: 0 0 40px;
  }
  #front .imgBox,
  #recruit .imgBox,
  #front .bg .imgBox {
    width: 100%;
    max-width: 100%;
  }
  #front .bg .imgBox img {
    width: 80%;
    max-width: 400px;
  }
  #front .bg .imgBox img:nth-child(1) {
    width: 45%;
    max-width: 270px;
    top: -90px;
  }
  #front .sales.bg .imgBox img:nth-child(1) {
    left: auto;
    right: 0;
  }
  #front .sales.bg .imgBox img {
    margin: 0 auto 0 0;
  }
  /* News */
  .news {
    width: 100%;
    border-radius: 0;
  }
  .news ul li h3 {
    width: 100%;
  }
  /* Recruit */
  #recruit .textBox {
    margin: 0 0 120px;
  }
  #recruit .imgBox h3 {
    font-size: 28px;
  }
  #recruit .imgBox {
    width: calc(100% - 50px);
    max-width: calc(100% - 50px);
    margin: 0 0 0 auto;
  }
  /* Top Footer */
  .topFooter h2 {
    font-size: 40px;
    margin: 80px 0;
  }
  /* Footer */
  footer .footer-left {
    width: fit-content;
  }
  footer .footer-logo {
    max-width: 300px;
  }
  footer .ftBox {
    width: fit-content;
  }
  /* Sub Pages */
  #business .wrap01 img {
    width: 70%;
  }
  #business .wrap01 p {
    font-size: 22px;
  }
  #business .wrap01 p br {
    display: none;
  }
  #business .wrap02 ul li {
    width: 100%;
    margin: 0 0 40px;
  }
  #business .wrap03 ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
  #business .wrap03 ul li.wrap03-banner {
    grid-column: 1 / -1;
  }
  /* Proposal */
  #proposal .wrap01 ul li {
    width: 100%;
    margin-bottom: 50px;
  }
  #proposal .wrap01 ul li:nth-child(3n) {
    flex-wrap: wrap;
    padding: 0;
  }
  #proposal .wrap01 ul li:nth-child(3n) img {
    width: 100%;
    border-radius: 20px 20px 0 0;
  }
  #proposal .wrap01 ul li:nth-child(3n) div {
    width: 100%;
    padding: 20px 30px;
  }
  #proposal .wrap01 ul li:nth-child(3) ol {
    margin: 20px 0 0;
  }
  #proposal .wrap01 ul li:nth-child(6) {
    margin-top: 0;
    margin-bottom: 100px;
    padding: 0 0 550px;
  }
  #proposal .wrap01 ul li:nth-child(6) img {
    width: 540px;
    position: absolute;
    top: auto;
    bottom: 20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  /* Sales */
  #sales .wrap01 {
    padding: 60px 0 0;
  }
  #sales .wrap02 .textBox {
    padding: 15px 20px;
  }
  #sales .wrap02 .textBox h3 {
    font-size: 20px;
  }
  #sales .wrap02 .textBox p {
    font-size: 15px;
  }
  #sales .wrap03 h2 {
    font-size: 30px;
  }
  #sales .wrap03 p {
    font-size: 20px;
  }
  /* News */
  #news .news .inner {
    max-width: 850px;
  }
  /* Company */
  #company .wrap .title {
    width: 100%;
    margin: 0 0 20px;
  }
  #company .wrap .title + div {
    width: 100%;
  }
  #company .wrap03 dl dt {
    width: 130px;
    font-size: 16px;
  }
  #company .wrap03 dl dd {
    width: calc(100% - 130px);
    font-size: 16px;
  }
  #company .wrap03 dl:nth-child(8) dd ul li p {
    font-size: 16px;
  }
  #company .wrap03 dd ul li {
    flex-wrap: wrap;
  }
  #company .wrap03 dd ul li,
  #company .wrap03 dd ul li p,
  #company .wrap03 dl:nth-child(8) dd ul li {
    font-size: 16px;
  }
  #company .wrap03 dl:nth-child(8) dd ul li p {
    width: 100%;
  }
  /* FAQ */
  #faq .wrap01 h2 {
    font-size: 24px;
    margin: 0 0 25px;
  }
  /* Contact Form */
  .contactForm {
    padding: 60px 0;
  }
}

@media screen and (max-width: 820px) {
  ul.scrollSlider .img {
    padding-top: 120px;
  }
  /* Button */
  .btn:hover {
    color: var(--pink-color);
    border-bottom: solid 1px var(--pink-color);
    padding: 0 0 5px 35px;
  }
  .btn:hover::before {
    background: center / contain no-repeat url("../img/icon-arrow-pink.svg");
    left: -10px;
  }
  /* Front */
  #front .bg {
    width: 90%;
    padding: 30px 0 40px;
    border-radius: 30px;
    margin: 0 auto 30px;
  }
  #business .wrap03 ul {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  #business .wrap03 ul li.wrap03-banner img {
    max-width: 100%;
  }
  /* FAQ */
  #faq .wrap01 h2 {
    font-size: 16px;
    margin: 0 0 20px;
  }
  .Label::before {
    width: 40px;
    height: 55px;
    margin: 0 10px 0 0;
  }
  .Label p {
    width: calc(100% - 100px);
    font-size: 14px;
    line-height: 1.6;
  }
  .Label::after {
    width: 40px;
    height: 40px;
    top: 13px;
  }
  .box::before {
    width: 40px;
    height: 55px;
    margin: 0 10px 0 0;
  }
  .box p {
    font-size: 14px;
    line-height: 1.6;
  }
  /* Other Post */
  .otherPost p {
    max-width: 275px;
  }
  .otherPost a {
    height: 60px;
  }
  .otherPost a::before {
    width: 40px;
    height: 40px;
    top: 10px;
  }
  /* Single */
  .single h2.singleTitle {
    margin: 0 0 20px;
  }
  .single h2 {
    font-size: 20px;
    margin: 20px 0 0;
  }
  .single h3 {
    font-size: 18px;
    margin: 20px 0 0;
  }
  .single h4 {
    font-size: 16px;
    margin: 20px 0 0;
  }
  .single h5 {
    font-size: 15px;
    margin: 20px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .sdgs {
    padding: 40px 0;
    margin: 50px auto;
  }
  .sdgs .titleBox,
  .sdgs .imgBox {
    width: 100%;
  }
  .sdgs .imgBox {
    height: 200px;
    overflow: hidden;
    bottom: -40px;
  }
  .sdgs .imgBox img {
    width: 100%;
    max-width: 420px;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    top: 0;
  }
}

@media screen and (max-width: 620px) {
  footer .inner {
    margin: 0 auto;
  }
  footer .ftBox div,
  footer .ftBox div + ul {
    width: 100%;
    border-right: none;
    padding: 0;
    margin: 0 0 20px;
  }
  footer .ftBox div p {
    font-size: 14px;
    margin: 0 0 10px;
  }
  footer .ftBox div p:nth-child(2) {
    margin: 0;
  }
  footer .ftBox div p:nth-child(3) {
    margin: 0 0 15px;
  }
  footer .ftBox div ul li:nth-child(1) {
    margin: 0 0 10px;
  }
}

@media screen and (max-width: 520px) {
  .inner {
    width: 90%;
  }
  /* Title */
  .title h2 {
    font-size: 26px;
    padding: 65px 0 0;
  }
  .title h2 + span {
    font-size: 40px;
  }
  /* Header */
  header {
    justify-content: flex-start;
    padding: 0 10px;
  }
  header h1 {
    width: 280px;
  }
  .navBox {
    padding: 100px 0;
  }
  /* FV */
  #fv {
    overflow: inherit;
  }
  #fv .fvSlider img {
    height: 600px;
  }
  #fv .inner {
    padding: 320px 0 0;
  }
  #fv .inner div {
    width: 250px;
  }
  .scroll {
    bottom: auto;
    top: 30px;
  }
  #fv + img {
    width: 90%;
    margin: 40px auto;
  }
  ul.scrollSlider {
    margin-bottom: 0px !important;
  }
  ul.scrollSlider .img {
    padding-top: 110px;
  }
  /* Front */
  #front .news {
    width: 100%;
    border-radius: 0;
  }
  .news .title h2 {
    padding: 30px 0 0;
  }
  .news ul li .day {
    font-size: 15px;
  }
  .news ul li h3 {
    width: 100%;
    font-size: 15px;
  }
  #front .textBox h3,
  #recruit .textBox h3 {
    font-size: 18px;
  }
  #front .textBox p,
  #recruit .textBox p {
    margin: 0 0 40px;
  }
  .sales .title h2 {
    font-size: 26px;
    padding: 50px 0 0;
  }
  .sales .title h2 span {
    display: block;
    margin: 0;
  }
  .sales .title h2 + span {
    font-size: 28px;
    top: 8px;
  }
  /* Recruit */
  #recruit {
    padding: 60px 0;
  }
  #recruit .title h2 {
    padding: 0;
  }
  #recruit .title h2 span {
    display: inline-block;
    margin: 0 0 0 10px;
  }
  #recruit .inner + span {
    height: max-content;
    font-size: 80px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    top: 0;
    left: auto;
    right: -17px;
    transform: none;
  }
  #recruit ul {
    justify-content: space-between;
    align-items: center;
  }
  #recruit ul li {
    width: 47%;
    margin: 0;
  }
  #recruit .textBox {
    margin: 0 0 20px;
  }
  #recruit .imgBox h3 {
    font-size: 24px;
    top: -50px;
    left: 0;
  }
  #recruit .imgBox {
    width: 100%;
    max-width: 100%;
  }
  #front #recruit .imgBox {
    top: 0;
  }
  #recruit .imgBox img {
    box-shadow: 10px 10px 0 #e6e6e6;
  }
  #company #recruit .imgBox {
    margin: 100px 0 0;
  }
  #company #recruit .imgBox h3 {
    top: -90px;
  }
  /* Top Footer */
  .topFooter h2 {
    font-size: 24px;
    margin: 40px 0;
  }
  .topFooter ul li {
    width: 100%;
    margin: 0 0 20px;
  }
  /* Sub Pages */
  .fvPage {
    padding: 60px 0 0;
  }
  .fvPage .title h2 {
    font-size: 28px;
    padding: 50px 0 0;
  }
  .fvPage .title h2 span {
    font-size: 13px;
    margin: 0 0 0 15px;
  }
  .fvPage .title h2 + span {
    font-size: 34px;
  }
  .fvPage .title + p {
    font-size: 16px;
  }
  #company .fvPage .title h2 + span,
  #news .fvPage .title h2 + span,
  #faq .fvPage .title h2 + span,
  #contact .fvPage .title h2 + span {
    top: 34px;
  }
  /* Business */
  #business .wrap01 img {
    margin: 0 auto 20px;
  }
  #business .wrap01 p {
    font-size: 15px;
  }
  #business .wrap02 ul li div span {
    font-size: 45px;
    bottom: -10px;
  }
  #business .wrap02 ul li h3 {
    font-size: 18px;
  }
  #business .wrap03 ul li img {
    border-radius: 10px;
  }
  #business .wrap03 ul li h4 {
    font-size: 13px;
  }
  /* Proposal */
  #proposal .wrap01 ul li::before {
    width: 50px;
    height: 70px;
  }
  #proposal .wrap01 ul li div h3 {
    font-size: 22px;
  }
  #proposal .wrap01 ul li:nth-child(4) div h3 {
    font-size: 20px;
  }
  #proposal .wrap01 ul li div h3 span {
    font-size: 15px;
    margin: 0;
  }
  #proposal .wrap01 ul li div,
  #proposal .wrap01 ul li:nth-child(3n) div {
    padding: 10px 15px;
  }
  #proposal .wrap01 ul li:nth-child(3) ol li {
    font-size: 14px;
  }
  #proposal .wrap01 ul li:nth-child(6) {
    padding: 0 0 370px;
    margin: 0;
  }
  #proposal .wrap01 ul li:nth-child(6) img {
    width: 360px;
  }
  .gallery li {
    width: 50%;
  }
  /* Sales */
  #sales .wrap01 .inner h2 {
    font-size: 18px;
    margin: 0 0 15px;
  }
  #sales .fvPage .title h2 span {
    margin: 0;
  }
  #sales .fvPage .title h2 + span {
    font-size: 34px;
    top: 13px;
  }
  #sales .wrap01 .inner p {
    font-size: 15px;
  }
  #sales .wrap02 .inner {
    width: 90%;
  }
  #sales .wrap02 li {
    margin: 0 0 20px;
  }
  #sales .wrap02 .imgBox span {
    font-size: 26px;
    top: 5px;
    left: 10px;
  }
  #sales .wrap02 li:nth-child(even) .imgBox span {
    right: 10px;
  }
  #sales .wrap02 .textBox {
    position: relative;
    bottom: 0;
  }
  #sales .wrap02 li .textBox,
  #sales .wrap02 li:nth-child(even) .textBox {
    padding: 15px 0;
    left: 0;
  }
  #sales .wrap02 .textBox h3 {
    font-size: 18px;
  }
  #sales .wrap03 {
    padding: 30px 0 0;
  }
  #sales .wrap03 h2 {
    font-size: 20px;
    margin: 0 0 20px;
  }
  #sales .wrap03 h2 span {
    font-size: 10px;
  }
  #sales .wrap03 p {
    font-size: 15px;
    margin: 0 0 30px;
  }
  /* Company */
  #company .wrap,
  #company .wrap01 {
    padding: 50px 0 0;
  }
  #company .wrap03 {
    padding: 50px 0;
  }
  #company .wrap p {
    margin: 0 0 30px;
  }
  #company .wrap03 dl dt {
    width: 100%;
    font-weight: 600;
  }
  #company .wrap03 dl dd {
    width: 100%;
    font-size: 14px;
  }
  #company .wrap03 dd ul li,
  #company .wrap03 dd ul li p {
    width: 100%;
    font-size: 14px;
  }
  #company .wrap03 dl:nth-child(8) dd ul li,
  #company .wrap03 dl:nth-child(8) dd ul li p {
    font-size: 14px;
  }
  .accessBox p:nth-child(3) {
    font-size: 18px;
  }
  #company #recruit {
    padding: 50px 0 80px;
  }
  #recruit .imgBox {
    margin: 70px 0 0;
  }
  .sdgs .title h2 {
    font-size: 24px;
  }
  /* FAQ */
  .accordion {
    margin: 0 0 20px;
  }
  /* Contact Form */
  .contactForm .inner {
    padding: 40px 0;
  }
  .form dl {
    margin: 0 auto 20px;
  }
  .form dl dt {
    width: 100%;
    margin: 0 0 5px;
  }
  .form dl dd {
    width: 100%;
  }
  .form dl dd input,
  .form dl dd select {
    font-size: 18px;
  }
  .form dl.textarea dd textarea {
    font-size: 18px;
  }
  .privacy div {
    padding: 10px 15px;
  }
  .privacy h3 {
    font-size: 18px;
  }
  /* Other Post */
  .otherPost a {
    font-size: 16px;
    padding: 0 0 0 60px;
  }
  .otherPost p.next a {
    padding: 0 60px 0 0;
  }
  .otherPost p.prev a::before {
    left: 10px;
  }
  .otherPost p.next a::before {
    right: 10px;
  }
}

@media screen and (max-width: 1730px) {
  #sales .wrap02 .textBox {
    left: auto;
    right: 0;
  }
  #sales .wrap02 li:nth-child(even) .textBox {
    left: 0;
    right: auto;
  }
}
