/*****************************************
*
* メイン
*
******************************************/


/*------------------------------------------*/
/* 見出し
/*------------------------------------------*/

.submain-heading {
  text-align: left;
  margin-top: 60px;
}

.submain-heading h1 {
  font-size: 1rem;
  font-weight: bold;
}

.submain-heading h2 {
  font-size: 2.4rem;
  font-weight: bold;
}

.submain-heading h2 .min {
  font-size: 1.4rem;
}

/*------------------------------------------*/
/* メイン
/*------------------------------------------*/

.page-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  margin-top: 40px;
}

/* 画像 --------------------------------*/
.page-main figure img {
  width: 100%;
}

/* ボタン --------------------------------*/
.page-main .main-btn {
  position: relative;
  display: inline-block;
  background: var(--color-main);
  border-radius: 0 0 40px 40px;
  width: 100%;
  text-align: left;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6;
  padding: 30px 40px 40px;
  margin-top: -10px;
  transition: all .5s ease;
}

.page-main .main-btn:hover {
  text-decoration: none;
  transform: translateY(5px);
}

.page-main .main-btn::before {
  content: '';
  display: inline-block;
  background: url('../img/common/arrow.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 48/18;
  width: 50px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  transition: all .5s ease;
}

.page-main .main-btn .heading {
  font-size: 2.6rem;
}



/*****************************************
*
* コンテンツ
*
******************************************/

/*------------------------------------------*/
/* メイン
/*------------------------------------------*/

.page-submain {
  width: calc(100% - 80px);
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 160px;
}

.page-submain figure img {
  width: 100%;
}

/*------------------------------------------*/
/* アンカーリンク
/*------------------------------------------*/

.page-subbtn {
  width: calc(100% - 80px);
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 10px;
}

.page-subbtn figure img {
  width: 100%;
}

.page-subbtn figure.bottom {
  margin-top: -200px;
}

.page-subbtn .inner {
  background: var(--color-main);
  padding: 60px;
}

/* ボタン --------------------------------*/
.subbtn-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
}

.subbtn-links a {
  display: inline-block;
  background: white;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  transition: all .5s ease;
}

.subbtn-links a:hover {
  text-decoration: none;
  transform: translateY(5px);
}

.subbtn-links .catchcopy,
.subbtn-links .heading {
  position: relative;
  padding: 20px;
}

.subbtn-links .catchcopy {
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: bold;
  padding-top: 90px;
}

.subbtn-links .catchcopy::before {
  content: '';
  display: inline-block;
  aspect-ratio: 1/1;
  width: 50px;
  height: auto;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .5s ease;
}

.subbtn-links .express .catchcopy::before {
  background: url('../img/common/icon_clock.svg') no-repeat;
  background-size: 100%;
}

.subbtn-links .report .catchcopy::before {
  background: url('../img/common/icon_doc.svg') no-repeat;
  background-size: 100%;
}

.subbtn-links .price .catchcopy::before {
  background: url('../img/common/icon_mony.svg') no-repeat;
  background-size: 100%;
}

.subbtn-links .faq .catchcopy::before {
  background: url('../img/common/icon_question.svg') no-repeat;
  background-size: 100%;
}

.subbtn-links .heading {
  background: var(--color-pink);
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  padding-bottom: 60px;
}

.subbtn-links .heading::before {
  content: '';
  display: inline-block;
  background: url('../img/common/arrow.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 48/18;
  width: 50px;
  height: auto;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .5s ease;
}

/* テキスト --------------------------------*/
.page-subbtn .largecatch {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  margin-top: 80px;
}

.page-subbtn .text {
  position: relative;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 60px;
  z-index: 5;
}

.page-subbtn .text+.text {
  margin-top: 2em;
}

/*------------------------------------------*/
/* about
/*------------------------------------------*/

.page-about {
  margin-top: 100px;
}


/* box --------------------------------*/
.page-about .box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
}

.page-about .box .cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: white;
  border: solid 3px var(--color-pink);
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 50px 50px 70px 50px;
}

.page-about .box .cont .subheading {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}

.page-about .box .cont .subheading .color {
  color: var(--color-pink);
}

.page-about .box .cont .text {
  font-weight: 500;
}


/*------------------------------------------*/
/* express
/*------------------------------------------*/

.page-express {
  background: var(--color-main);
  margin-top: 160px;
}

.page-express .inner {
  position: relative;
  background: var(--color-back);
  width: calc(100% - 120px);
  max-width: 1100px;
  padding: 100px 200px;
  margin: 0 auto;
  z-index: 2;
}

.page-express .inner::before,
.page-express .inner::after {
  content: '';
  display: inline-block;
  background: url('../img/common/express_back.svg') repeat-y;
  background-size: 100%;
  aspect-ratio: 80/179;
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
}

.page-express .inner::before {
  left: 0;
}

.page-express .inner::after {
  transform: scale(-1, 1);
  right: 0;
}

/* 見出し --------------------------------*/
.page-express .heading-wrap {
  color: var(--color-main);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 100px;
}

.page-express .heading-wrap .heading {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  height: auto;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-foreign .page-express .heading-wrap .heading {
  background: url('../img/foreign/foreign_express.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 324/60;
  width: 324px;
}

.page-odors .page-express .heading-wrap .heading {
  background: url('../img/odors/odors_express.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 461/61;
  width: 461px;
}

/* 吹き出し --------------------------------*/
.page-express .balloon {
  display: inline-block;
  background: url('../img/common/balloon.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 36/25;
  width: 360px;
  height: auto;
  margin-bottom: 40px;
}

.page-express .balloon p {
  font-size: 1.4rem;
  font-weight: bold;
  padding-top: 40px;
}

.page-odors .page-express .balloon p {
  padding-top: 50px;
}

.page-express .balloon p .large {
  color: var(--color-main);
  font-size: 2.4rem;
}

.page-odors .page-express .balloon p .large {
  font-size: 1.8rem;
}

.page-odors .page-express .balloon p .en {
  font-weight: 500;
}

/* 強調 --------------------------------*/
.page-express .highlight {
  margin-bottom: 60px;
}

.page-express .highlight .large {
  color: var(--color-pink);
  font-size: 1.6rem;
  font-weight: 500;
}

.page-express .highlight .min {
  font-size: 0.9rem;
  font-weight: 500;
}

/* テキスト --------------------------------*/
.page-express .text-warap {
  display: inline-block;
  font-weight: 500;
  margin-bottom: 100px;
}

/* テキスト --------------------------------*/
.page-express .emphasis {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 60px;
}

.page-express .emphasis .strong {
  font-weight: bold;
}

.page-express .emphasis .marker {
  background: linear-gradient(transparent 75%, #FFCFE7 75%);
}

/* 表 --------------------------------*/
.page-express .table {
  display: inline-block;
  margin-bottom: 80px;
}

.page-express .table table {
  border-collapse: collapse;
  width: 100%;
}

.page-express .table table th,
.page-express .table table td {
  text-align: center;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
}

.page-express .table table th {
  font-weight: bold;
  border-bottom: dotted 2px var(--color-main);
}

.page-express .table table td {
  border-bottom: dotted 1px var(--color-gray);
}

.page-express .table table td:first-child {
  text-align: left;
  padding-right: 40px;
}

/* list --------------------------------*/
.page-express .list {
  display: inline-block;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
}

.page-express .list li {
  position: relative;
  padding-left: 40px;
}

.page-express .list li::before {
  content: '';
  display: inline-block;
  background: url('../img/common/icon_check.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 20/22;
  width: 20px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.page-express .list li+li {
  margin-top: 60px;
}


/*------------------------------------------*/
/* 報告例
/*------------------------------------------*/

.page-case .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  width: 100%;
}

/* 表 --------------------------------*/
.page-case .box .table table {
  border-collapse: collapse;
  width: 100%;
}

.page-case .box .table table th,
.page-case .box .table table td {
  border: solid 1px var(--color-text);
  text-align: left;
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px;
}

.page-case .box .table table th {
  text-align: center;
  background: var(--color-text);
  color: white;
}

.page-case .box .table table th:first-child {
  border-right: solid 1px white;
}


/*------------------------------------------*/
/* 分析例
/*------------------------------------------*/

/* summary --------------------------------*/
.page-report .summary {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 80px;
}

/* 表 --------------------------------*/
.page-report .table {
  display: inline-block;
}

.page-report .table table {
  border-collapse: collapse;
  width: 100%;
}

.page-report .table table th,
.page-report .table table td {
  border-bottom: dotted 1px var(--color-gray);
  text-align: center;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
}

.page-report .table .text {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 100px;
}


/*------------------------------------------*/
/* アコーディオン
/*------------------------------------------*/

.js-accordion+.js-accordion {
  margin-top: 40px;
}

.accordion-contents-wrap {
  overflow: hidden;
}

.js-accordion.report .accordion-contents-wrap {
  border: solid 2px var(--color-main);
  border-radius: 10px;
}

.js-accordion.faq .accordion-contents-wrap {
  border: solid 2px var(--color-text);
  border-radius: 20px;
}

/* トリガー --------------------------------*/
.accordion-trigger {
  position: relative;
  cursor: pointer;
  text-align: left;
  font-size: 1.4rem;
  font-weight: bold;
  z-index: +1;
  transition: all .5s ease;
}

.js-accordion.report .accordion-trigger {
  background: var(--color-main);
  color: white;
  padding: 20px 80px 20px 40px;
}

.js-accordion.faq .accordion-trigger {
  background: transparent;
  color: var(--color-text);
  padding: 30px 80px 30px 40px;
}

.accordion-trigger::before,
.accordion-trigger::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease;
}

.js-accordion.report .accordion-trigger::before,
.js-accordion.report .accordion-trigger::after {
  background: white;
}

.js-accordion.faq .accordion-trigger::before,
.js-accordion.faq .accordion-trigger::after {
  background: var(--color-text);
}

.accordion-trigger::before {
  width: 40px;
  height: 3px;
  right: 30px;
}

.accordion-trigger::after {
  width: 3px;
  height: 40px;
  right: 47px;
}

.accordion-trigger.open::after {
  opacity: 0;
}

.accordion-contents {
  display: none;
}


/*------------------------------------------*/
/* report
/*------------------------------------------*/

.js-accordion.report .accordion-contents {
  padding: 60px 40px;
}

.page-report .accordion-contents .box {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.page-foreign .page-report .accordion-contents .box .cont+.cont {
  margin-left: 40px;
}

.page-odors .page-report .accordion-contents .box .cont+.cont {
  margin-left: 60px;
}

.page-foreign .page-report .accordion-contents .box .cont {
  text-align: left;
}

.page-report .accordion-contents .box .cont .caption {
  font-size: 1rem;
  font-weight: 500;
}

.page-report .accordion-contents .box .cont .caption.large {
  font-size: 1.4rem;
  font-weight: bold;
}

.page-foreign .page-report .accordion-contents .box .cont figure {
  margin-top: 15px;
}

.page-odors .page-report .accordion-contents .box .cont {
  border: solid 2px var(--color-text);
  border-radius: 10px;
  padding: 20px;
}

.page-report .accordion-contents .group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: bold;
}

.page-report .accordion-contents .group::before {
  content: '';
  display: inline-block;
  background: url('../img/common/arrow_double.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 44/50;
  width: 44px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.page-report .accordion-contents .group.bottom {
  margin-top: 100px;
}

.page-report .accordion-contents .group.bottom::before {
  top: -70px;
}

.page-report .accordion-contents .group.top {
  margin-bottom: 100px;
}

.page-report .accordion-contents .group.top::before {
  bottom: -70px;
}

.page-report .accordion-contents .group .heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: solid 3px var(--color-main);
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 70px;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-right: 30px;
}

.page-odors .page-report .accordion-contents .group .heading {
  width: 80px;
}

.page-odors .page-report .accordion-contents .text {
  display: inline-block;
  max-width: 600px;
  font-weight: 500;
  margin-bottom: 60px;
}

.page-odors .page-report .accordion-contents .subtext {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 40px;
}

.page-odors .page-report .accordion-contents .subtext .color {
  color: var(--color-main);
}


/*------------------------------------------*/
/* others
/*------------------------------------------*/

.page-others .summary {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 80px;
}

.page-others .text {
  font-weight: 500;
}

.page-others .table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 30px;
}

.page-others .table th,
.page-others .table td {
  text-align: center;
  border: solid 1px var(--color-text);
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 20px;
}

.page-others .table th {
  background: var(--color-main);
  color: white;
}

.page-others .table td:first-child {
  text-align: left;
}

.page-others .table td:not(:first-child) {
  font-family: var(--font-en);
}

/*------------------------------------------*/
/* 価格
/*------------------------------------------*/

.page-price .text {
  display: inline-block;
  font-weight: 500;
}

.page-odors .page-price .text {
  font-size: 1.6rem;
}

/*------------------------------------------*/
/* 流れ
/*------------------------------------------*/

.page-flow .box {
  position: relative;
  display: grid;
  grid-template-columns: 60px 200px 1fr;
  align-items: center;
  border: solid 2px var(--color-main);
  border-radius: 10px;
  width: 660px;
  text-align: left;
  font-weight: 500;
  padding: 20px 30px;
  margin: 0 auto;
}

.page-flow .box .num {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}

.page-flow .box .heading {
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.1;
}

.page-flow .box+.box {
  margin-top: 40px;
}

.page-flow .box+.box::before {
  content: '';
  display: inline-block;
  background: url('../img/common/arrow_single.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 44/27;
  width: 44px;
  height: auto;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
}


/*------------------------------------------*/
/* faq
/*------------------------------------------*/

.js-accordion.faq .accordion-trigger {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
}

.js-accordion.faq .accordion-trigger .q,
.js-accordion.faq .accordion-contents .a {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}

.js-accordion.faq .accordion-trigger .q {
  color: var(--color-pink);
}

.js-accordion.faq .accordion-contents .a {
  color: var(--color-main);
}

.js-accordion.faq .accordion-contents {
  text-align: left;
  font-weight: 500;
  padding: 10px 40px 40px;
}

.js-accordion.faq .accordion-contents-box {
  display: grid;
  grid-template-columns: 80px 1fr;
}

.js-accordion.faq .accordion-contents-box.row-1 {
  align-items: flex-end;
}


/*------------------------------------------*/
/* 関連情報
/*------------------------------------------*/

.page-relevant {}


/*------------------------------------------*/
/* 最下部 お問い合わせ
/*------------------------------------------*/

.page-contact {
  color: white;
  font-weight: 500;
}

.page-contact .box {
  display: grid;
  grid-template-columns: 400px 1fr;
  column-gap: 80px;
}

/* profile --------------------------------*/
.page-contact__profile {
  text-align: left;
}

.page-contact .phone {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.page-contact .phone .phone-number {
  font-size: 2.4rem;
  padding-left: 30px;
}

.page-contact .phone .phone-number::before {
  width: 20px;
}

.page-contact .phone .phone-number a {
  background: transparent;
}

.page-contact .phone .phone-hours {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-left: 20px;
}

.page-contact__profile .mail-notes {
  font-size: 0.7rem;
}

/* お問い合わせ --------------------------------*/
.page-contact .btn-wrap {
  margin-top: 20px;
}

.page-contact .btn-wrap a {
  position: relative;
  display: inline-block;
  border: solid 1px white;
  border-radius: 30px;
  color: white;
  padding: 10px 30px 10px 70px;
  transition: all .5s ease;
}

.page-contact .btn-wrap a::before {
  content: '';
  display: inline-block;
  background: url('../img/common/icon_mail.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 100/76;
  width: 30px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

.page-contact .btn-wrap a:hover {
  text-decoration: none;
  transform: translateY(5px);
}

/* description --------------------------------*/
.page-contact .description {
  text-align: left;
  font-size: 1.4rem;
}

.page-contact .description .text {
  font-size: 1rem;
  margin-top: 40px;
}

/* group --------------------------------*/
.page-contact .group {
  border: solid 1px white;
  border-radius: 20px;
  padding: 60px;
  margin-top: 80px;
}

.page-contact .group .heading {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.page-contact .heading-quinary {
  border-width: 1px;
  font-size: 1.2rem;
  margin-top: 60px;
}

.page-contact .group .text {
  display: inline-block;
  font-size: 1rem;
}