@charset "UTF-8";
@keyframes flow_left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.flow_anime_wrap {
  display: flex;
  overflow: hidden;
}

.flow_anime {
  display: flex;
  animation: flow_left 60s infinite linear 0.5s both;
}

/*======================================
    font
======================================*/
/*======================================
    color
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #000;
}

body {
  background-color: #fff;
}
body.active {
  overflow: hidden;
}

.main {
  padding-top: 11.25em;
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 5em;
  }
}
.main.fv-main {
  padding-top: 6.125em;
}
@media screen and (max-width: 767px) {
  .main.fv-main {
    padding-top: 3em;
  }
}

img {
  width: 100%;
  vertical-align: top;
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.is-nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  br.is-pc {
    display: none;
  }
}

br.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.is-sp {
    display: block;
  }
}

/*======================================
    layout
======================================*/
.container {
  overflow: hidden;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .container {
    font-size: min(1.5609756098vw, 1.2rem);
  }
}
@media screen and (max-width: 767px) {
  .container {
    font-size: min(4.2666666667vw, 1.6rem);
  }
}

.inner {
  max-width: 67.5em;
  width: 88%;
  margin-left: auto;
  margin-right: auto;
}

.inner_sm {
  max-width: 46.875em;
  margin-left: auto;
  margin-right: auto;
}

.layout-full-r {
  margin-right: calc(50% - 50vw);
  max-width: 93.75em;
}

/*======================================
    section
======================================*/
.section-ttl {
  font-weight: 600;
  letter-spacing: 0.15em;
  font-feature-settings: "palt";
  line-height: 2.3529411765;
  font-size: 1.0625em;
}
@media screen and (max-width: 767px) {
  .section-ttl {
    font-size: 0.9375em;
  }
}
.section-ttl .en {
  display: block;
  font-size: 2.765em;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 767px) {
  .section-ttl .en {
    font-size: 1.6875em;
  }
}
.section-ttl .en img {
  width: auto;
  height: 1em;
}

/*======================================
    common
======================================*/
.c_about_link {
  display: flex;
  align-items: flex-end;
  column-gap: 1.25em;
  transition: opacity 0.3s ease;
}
.c_about_link:hover {
  opacity: 0.7;
}
.c_about_link:hover .arrow {
  transform: translate(0.25em, 25%);
}
.c_about_link span {
  display: block;
}
.c_about_link .text {
  width: 6.75em;
}
@media screen and (max-width: 767px) {
  .c_about_link .text {
    width: 5.375em;
  }
}
.c_about_link .arrow {
  width: 4.375em;
  transform: translateY(25%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c_about_link .arrow {
    width: 3.5em;
  }
}

.c_circle_link {
  min-width: 7.875em;
  height: 2.9375em;
  border-radius: 5em;
  border: 0.125em solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1em;
  position: relative;
  width: fit-content;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c_circle_link {
    height: 1.75em;
    min-width: 4.625em;
    border-width: 1px;
  }
}
.c_circle_link.-white {
  border-color: #fff;
}
.c_circle_link.-white::before {
  background-image: url(../img/icon_arrow_white.svg);
}
.c_circle_link:hover {
  opacity: 0.7;
}
.c_circle_link:hover::before {
  transform: translate(calc(70% + 0.25em), -50%);
}
.c_circle_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(70%, -50%);
  width: 3.75em;
  height: 1.5em;
  background: url(../img/icon_arrow_black.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c_circle_link::before {
    width: 2.1875em;
    height: 0.875em;
  }
}
.c_circle_link .text {
  display: inline-block;
  font-size: 0.8125em;
}
@media screen and (max-width: 767px) {
  .c_circle_link .text {
    font-size: 0.5em;
  }
}
.c_circle_link .text img {
  width: auto;
  height: 1em;
}

.link_out {
  position: relative;
}
.link_out::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.55em;
  height: 0.55em;
  background: url(../img/icon_link_out.svg) no-repeat center/contain;
}

.news-list {
  border-top: 1px solid #fff;
}
.news-list:last-child {
  border-bottom: 1px solid #fff;
}

.news-list__link {
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .news-list__link {
    display: flex;
    min-height: 5.8em;
    align-items: center;
    padding: 0.5em 4.5em 0.5em 1.875em;
    column-gap: 2em;
  }
}
@media screen and (max-width: 767px) {
  .news-list__link {
    display: block;
    padding: 1.5em 3.5em 1.3em 0;
  }
}
.news-list__link:hover {
  opacity: 0.7;
}
.news-list__link:hover::before {
  transform: translate(0.25em, -50%);
}
.news-list__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875em;
  transform: translateY(-50%);
  width: 1.875em;
  height: 1em;
  background: url(../img/icon_arrow_white.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news-list__link::before {
    right: 0.875em;
  }
}

.news-list__date,
.news-list__ttl {
  font-size: 0.9375em;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 1.75;
}
.news-list__date {
  width: 7.5em;
}
@media screen and (max-width: 767px) {
  .news-list__date {
    width: 100%;
    line-height: 1;
  }
}

.news-list__ttl {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .news-list__ttl {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 0.5em;
  }
}

/*======================================
    text
======================================*/
.s_wrap .h2 {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.55;
  font-feature-settings: "palt";
  padding-bottom: 0.75em;
  position: relative;
  margin-bottom: 1em;
}
.s_wrap .h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.6em;
  height: 1px;
  background-color: #000;
}
.s_wrap .c_section_text {
  font-size: 0.875em;
  line-height: 2.1428571429;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: justify;
  font-feature-settings: "palt";
  margin-top: 1.5em;
}
.s_wrap .c_section_text.-center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .s_wrap_lg .h2 {
    letter-spacing: 0.26em;
    font-size: 1.5em;
  }
  .s_wrap_lg .h2::before {
    width: 2.7em;
  }
}
.s_wrap_lg .c_section_text {
  letter-spacing: 0.1em;
  line-height: 1.9285714286;
}

.s_text {
  font-size: 0.9375em;
  line-height: 1.8;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

/*======================================
    page
======================================*/
.p_ttl_gr {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p_ttl_gr {
    padding-left: 1.5em;
    align-items: flex-end;
    column-gap: 1em;
    border-left: 1px solid #FF0000;
  }
}
@media screen and (max-width: 767px) {
  .p_ttl_gr {
    flex-direction: column;
    row-gap: 0.5em;
    padding-bottom: 0.5em;
    position: relative;
  }
  .p_ttl_gr::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5em;
    height: 1px;
    background-color: #FF0000;
  }
}

.p_ttl_en {
  line-height: 1;
  font-size: 1.9375em;
}
@media screen and (max-width: 767px) {
  .p_ttl_en {
    font-size: 1.29em;
  }
}
.p_ttl_en.-line {
  font-size: 2.625em;
  margin-bottom: -0.175em;
}
@media screen and (max-width: 767px) {
  .p_ttl_en.-line {
    font-size: 1.75em;
  }
}
.p_ttl_en img {
  width: auto;
  height: 1em;
}

.p_ttl {
  line-height: 1.75;
  font-weight: 700;
}

.p_section_h2 {
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  line-height: 1.6666666667;
  margin: 3em 0;
}
@media screen and (max-width: 767px) {
  .p_section_h2 {
    margin: 2em 0;
    font-size: 1.25em;
  }
}

.p_section_h3 {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 2em;
}
.p_section_h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.7em;
  height: 70%;
  background-color: #FF0000;
}

.p_section_text {
  font-weight: 700;
  line-height: 1.9375;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  text-align: justify;
}

.p_eye {
  aspect-ratio: 1082/380;
  overflow: hidden;
  border-radius: 0.625em;
  background-color: gray;
  margin-top: 4.375em;
  margin-bottom: 3.75em;
}
@media screen and (max-width: 767px) {
  .p_eye {
    margin-top: 2.5em;
    margin-bottom: 2.5em;
  }
}
.p_eye img {
  height: 100%;
  object-fit: cover;
}

.a_section {
  margin-top: 6.25em;
}
@media screen and (max-width: 767px) {
  .a_section {
    margin-top: 3.75em;
  }
}

.p_section_button_lg {
  font-size: 1.5em;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background-color: #39BE68;
  position: relative;
  border-radius: 10em;
  height: 6.17em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p_section_button_lg {
    font-size: 1.125em;
  }
}
.p_section_button_lg:hover {
  opacity: 0.7;
}
.p_section_button_lg:hover::before {
  transform: translate(0.25em, -50%);
}
.p_section_button_lg::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  width: 1.17em;
  height: 0.5em;
  background: url(../img/icon_arrow_white.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}

.p_bg {
  margin-top: 12.5em;
  background-color: #F0F0F0;
  padding: 6.25em 0 9.375em;
}
@media screen and (max-width: 767px) {
  .p_bg {
    margin-top: 6.25em;
    padding: 3.125em 0;
  }
}

/*======================================
    card
======================================*/
.cards.column3 {
  display: grid;
  column-gap: 2.5em;
  row-gap: 4em;
  grid-template-columns: repeat(auto-fill, minmax(17.5em, 1fr));
}
@media screen and (max-width: 767px) {
  .cards.column3 {
    row-gap: 3.125em;
  }
}

.card {
  width: 100%;
  max-width: 25em;
  margin-left: auto;
  margin-right: auto;
}

.card_img {
  aspect-ratio: 335/230;
  margin-bottom: 0.9375em;
  overflow: hidden;
}
.card_img.-contain img {
  object-fit: contain;
}
.card_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card_link {
  display: block;
  transition: opacity 0.3s ease;
}
.card_link:hover {
  opacity: 0.7;
}
.card_link:hover .card_img img {
  transform: scale(1.05);
}

.card_ttl {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.55;
  font-feature-settings: "palt";
}
.card_ttl.link_out {
  padding-right: 2em;
}
.card_ttl.link_out::after {
  right: 0.75em;
  transform: translateY(0.25em);
}

.card_text_sm {
  font-size: 0.8125em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

.card_text_md {
  font-size: 1.0625em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.8235294118;
  font-feature-settings: "palt";
}

.card_text {
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: justify;
  line-height: 1.8666666667;
  font-feature-settings: "palt";
  margin-top: 1em;
}

/*======================================
    form
======================================*/
.form_wrap {
  margin-top: 4.375em;
}

.form_item dt {
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 1.75;
  margin-bottom: 0.5em;
}
.form_item dd.flex {
  display: flex;
  flex-wrap: wrap;
}
.form_item dd.flex .form_input {
  max-width: 9.625em;
}
@media screen and (max-width: 767px) {
  .form_item dd.flex .form_input {
    max-width: 5em;
  }
}
.form_item dd.flex .form_input.form_input_select {
  max-width: 11.375em;
}
@media screen and (max-width: 767px) {
  .form_item dd.flex .form_input.form_input_select {
    width: 10em;
    max-width: unset;
  }
}
.form_item:nth-of-type(n + 2) {
  margin-top: 1.25em;
}

.required {
  padding-left: 2em;
  position: relative;
}
.required::before {
  content: "必須";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.67em;
  color: #fff;
  background-color: #FF0000;
  border-radius: 0.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4em;
  height: 1.4em;
  transform: translateY(0.5em);
  font-feature-settings: "palt";
}

.form_input {
  flex: 1;
}
.form_input input, .form_input textarea, .form_input select {
  width: 100%;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  border-radius: 0.67em;
  font-size: 0.9375em;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 1.75;
  border: 1px solid #9B9B9B;
  padding: 0.85em 1.6em;
  background-color: #FAFAFA;
}
@media screen and (max-width: 767px) {
  .form_input input, .form_input textarea, .form_input select {
    padding: 0.85em 1em;
  }
}
.form_input input::placeholder, .form_input textarea::placeholder, .form_input select::placeholder {
  color: rgba(35, 24, 21, 0.2);
}
.form_input textarea {
  resize: vertical;
  height: 11.2em;
}
@media screen and (max-width: 767px) {
  .form_input textarea {
    height: 16em;
  }
}
@media screen and (min-width: 768px) {
  .form_input select {
    background-image: url(../img/page/icon_select.svg);
    background-repeat: no-repeat;
    background-position: center right 1.2em;
    background-size: 0.8em 0.67em;
  }
}
.form_input.form_input_radio {
  margin-top: 1em;
  margin-bottom: 2em;
}
.form_input.form_input_radio input {
  display: none;
}
.form_input.form_input_radio input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form_input.form_input_radio .wpcf7-list-item {
  margin-left: 0 !important;
  display: block;
}
.form_input.form_input_radio .wpcf7-list-item:nth-child(n+2) {
  margin-top: 1em;
}
.form_input.form_input_radio .wpcf7-list-item-label {
  display: block;
  padding-left: 2.125em;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 1.75;
  position: relative;
}
.form_input.form_input_radio .wpcf7-list-item-label::before, .form_input.form_input_radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.375em;
  height: 1.375em;
  border-radius: 50%;
  border: 1px solid #9B9B9B;
  background-color: #F5F5F5;
  transform: translateY(0.1em);
}
.form_input.form_input_radio .wpcf7-list-item-label::after {
  border-color: #FF0000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form_input_text {
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  width: 2.67em;
  height: 3.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form_input_text {
    width: 1.75em;
  }
}

.form_postcode_button {
  font-size: 0.9375em;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4em;
  background-color: #6A6A6A;
  margin-left: 1.3em;
  width: 5.73em;
  height: 2em;
  color: #fff;
  transition: opacity 0.3s ease;
  align-self: center;
}
.form_postcode_button:hover {
  opacity: 0.7;
}

.form_privacy {
  text-align: center;
  margin-top: 3.75em;
}
.form_privacy a {
  text-decoration: underline;
}
.form_privacy input {
  display: none;
}
.form_privacy input:checked + .wpcf7-list-item-label span.check::after {
  opacity: 1;
  visibility: visible;
  transform: rotate(-45deg);
}
.form_privacy span.check {
  display: inline-block;
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  padding-left: 2.67em;
  line-height: 1.75;
  position: relative;
}
.form_privacy span.check a {
  font-weight: inherit;
}
.form_privacy span.check::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.67em;
  height: 1.67em;
  border: 1px solid #000;
  border-radius: 0.33em;
}
.form_privacy span.check::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.67em;
  height: 0.5em;
  border-bottom: 5px solid #FF0000;
  border-left: 5px solid #FF0000;
  transform: rotate(-30deg);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.form_privacy span.check a {
  transition: opacity 0.3s ease;
}
.form_privacy span.check a:hover {
  opacity: 0.7;
}

.form_submit {
  margin-top: 3.125em;
}
.form_submit input {
  width: 100%;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  font-family: inherit;
  font-weight: 700;
  color: #fff;
  border-radius: 10em;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  height: 4.75em;
  max-width: 16.75em;
  margin-left: auto;
  margin-right: auto;
  background: #FF0000 url(../img/icon_arrow_white.svg) no-repeat center right 1.25em/1.75em 0.75em;
  transition: background-position 0.3s ease, opacity 0.3s ease;
}
.form_submit input:disabled {
  opacity: 0.7;
}
.form_submit input:not(:disabled):hover {
  opacity: 0.7;
  background-position: center right 1em;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.25em;
  font-size: 0.75em;
}
@media screen and (max-width: 767px) {
  .wpcf7-not-valid-tip {
    font-size: 0.625em;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  height: 6.125em;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 1.875em 0 2.2em;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 3em;
    padding: 0 0 0 1em;
  }
}

.h__logo {
  width: 14em;
}
@media screen and (max-width: 1024px) {
  .h__logo {
    width: 8.75em;
  }
}

.h__logo--link {
  display: block;
}

.h__contents {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .h__contents {
    display: none;
  }
}

.h__nav {
  display: flex;
  align-items: center;
  column-gap: 3em;
}

.h__links {
  display: flex;
  column-gap: 2.5em;
}

.h__link {
  position: relative;
}
.h__link a, .h__link span.arrow {
  display: block;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  line-height: 2.3529411765;
  font-size: 1.0625em;
  transition: opacity 0.3s ease;
}
.h__link a:hover, .h__link span.arrow:hover {
  opacity: 0.7;
}
.h__link a.arrow, .h__link span.arrow.arrow {
  padding-right: 1.25em;
  position: relative;
}
.h__link a.arrow::before, .h__link span.arrow.arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url(../img/icon_arrow_down.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
.h__link:hover .h__sublinks {
  opacity: 1;
  transform: translateY(100%);
  visibility: visible;
}
.h__link:hover span.arrow::before {
  transform: translateY(-50%) rotate(-180deg);
}
.h__link span.arrow:hover {
  cursor: pointer;
}

.h__sublinks {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12.5em;
  z-index: 2;
  background-color: rgba(249, 249, 249, 0.9);
  transform: translateY(80%);
  padding: 0 0.875em;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.h__sublink:nth-child(n+2) {
  border-top: 1px solid rgba(0, 0, 0, 0.92);
}
.h__sublink a {
  padding: 0.58em 0 0.58em 0.23em;
}

.contact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.625em;
  background-color: #39BE68;
  border-radius: 5em;
  width: 12.5em;
  height: 3.125em;
  transition: opacity 0.3s ease;
}
.contact__button:hover {
  opacity: 0.7;
}
.contact__button:hover .arrow {
  transform: translateX(0.25em);
}
.contact__button span {
  display: block;
}
.contact__button .text {
  width: 6.25em;
}
.contact__button .arrow {
  width: 1.5em;
  transition: transform 0.3s ease;
}

/*======================================
    drawer
======================================*/
.d-icon {
  position: fixed;
  top: 1.5em;
  right: 0.8em;
  transform: translateY(-50%);
  z-index: 500;
}
.d-icon.active .d-bar.-bar1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}
.d-icon.active .d-bar.-bar2 {
  transform: translate(-50%, -50%) rotate(30deg);
}
.d-icon.active .d-bar.-bar3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}
@media screen and (min-width: 1025px) {
  .d-icon {
    display: none;
  }
}

.d-bars {
  width: 1.875em;
  height: 1.125em;
  position: relative;
}

.d-bar {
  position: absolute;
  left: 50%;
  width: 1.875em;
  height: 2px;
  background-color: #000;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}
.d-bar.-bar1 {
  top: 0;
}
.d-bar.-bar2 {
  top: 50%;
}
.d-bar.-bar3 {
  top: 100%;
}

.d-contents {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background-color: #F5F5F5;
  overflow: scroll;
  display: none;
}

.d-inner {
  padding: 4.5em 2.25em calc(100vh - var(--vh, 1vh) * 100 + 3.125em);
}

.d__list {
  border-top: 1px solid rgba(184, 184, 184, 0.5);
}
.d__list:nth-child(even) {
  background-color: #EBEBEB;
}
.d__list.sub {
  margin-left: 1.25em;
}
.d__list a {
  font-size: 0.9375em;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-feature-settings: "palt";
  display: block;
  position: relative;
  line-height: 1.75;
  padding: 0.7em 3em 0.7em 0.8em;
}
.d__list a:hover::before {
  transform: translate(0.25em, -50%);
}
.d__list a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8em;
  width: 0.87em;
  height: 0.35em;
  background: url(../img/icon_arrow_black.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.d__sublists {
  display: contents;
}

.d-contact {
  height: 2.75em;
  width: 100%;
  max-width: 19em;
  margin: 2em auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #39BE68;
  border-radius: 3em;
  position: relative;
}
.d-contact:hover::before {
  transform: translate(0.25em, -50%);
}
.d-contact::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 1.3125em;
  height: 0.625em;
  background: url(../img/icon_arrow_white.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.d-contact .text {
  font-size: 0.9375em;
  text-align: center;
}
.d-contact .text img {
  width: auto;
  height: 1em;
}

.d-info {
  margin-top: 3.75em;
  text-align: center;
}
.d-info .f__company {
  margin-top: 1em;
}
.d-info .f__address {
  margin-left: 0;
  margin-right: 0;
}

.d-logo {
  max-width: 12.0625em;
  margin: 0 auto 0;
  display: block;
}

@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 2em;
  }
}

.f__container {
  padding: 6.75em 0;
  display: flex;
  grid-column: 2.5em;
}
@media screen and (max-width: 767px) {
  .f__container {
    flex-direction: column-reverse;
    max-width: 15.375em;
    margin-left: auto;
    margin-right: auto;
    padding: 2.75em 0 3em;
  }
}

@media screen and (min-width: 768px) {
  .f__info {
    width: 20.875em;
  }
}
@media screen and (max-width: 767px) {
  .f__info {
    margin-top: 4.5em;
    text-align: center;
  }
}

.f__company {
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.7777777778;
  margin-top: 2em;
}

.f__tel {
  margin-top: 1.25em;
}
@media screen and (max-width: 767px) {
  .f__tel {
    margin-top: 1em;
  }
}

.f__tel--link {
  font-size: 1.125em;
  display: block;
}
.f__tel--link img {
  height: 1em;
  width: auto;
}

.f__address {
  font-size: 0.875em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
  font-feature-settings: "palt";
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .f__address {
    margin: 0.5em -1em 0;
  }
}

.f__nav {
  flex: 1;
  max-width: 33.75em;
  margin-left: auto;
  display: flex;
  column-gap: 6.25em;
}
@media screen and (max-width: 767px) {
  .f__nav {
    flex-direction: column;
    margin-left: 0;
    row-gap: 2.5em;
  }
}

.f__link a {
  display: block;
  font-size: 0.9375em;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-feature-settings: "palt";
  line-height: 2.4666666667;
  transition: opacity 0.3s ease;
}
.f__link a:hover {
  opacity: 0.7;
}

.f__link--sub {
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .f__link--sub {
    padding-left: 1.25em;
  }
}

.f__copyright {
  margin-top: 7em;
}
@media screen and (max-width: 767px) {
  .f__copyright {
    margin-top: 0;
  }
}
.f__copyright small {
  font-size: 0.875em;
  display: block;
  text-align: center;
}
.f__copyright img {
  width: auto;
  height: 1em;
}

.to-top {
  width: 13.29em;
}
@media screen and (min-width: 768px) {
  .to-top {
    position: fixed;
    bottom: 2.5em;
    right: 2.6%;
    z-index: 100;
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .to-top {
    width: 11.625em;
    right: 50%;
    transform: translateX(50%);
    bottom: 1.25em;
    margin-top: 2.5em;
  }
}
.to-top a {
  display: flex;
  align-items: center;
  font-size: 0.875em;
  font-weight: 600;
  letter-spacing: 0.12em;
  height: 2.86em;
  border-radius: 3em;
  border: 0.1em solid #000;
  padding-left: 1.5em;
  position: relative;
  background-color: #fff;
}
.to-top a:hover::before {
  transform: translateY(calc(-50% - 0.15em));
}
.to-top a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25em;
  width: 1em;
  height: 1em;
  background: url(../img/icon_top.svg) no-repeat center/contain;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/*======================================
    footer department
======================================*/
.f__dep {
  margin-top: 11.25em;
}
@media screen and (max-width: 767px) {
  .f__dep {
    margin-top: 6.25em;
  }
}

.f__dep--ttl {
  max-width: 36.875em;
  margin: 0 auto;
}

.f__dep--lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6.25em;
  margin-top: 4.375em;
}
@media screen and (max-width: 767px) {
  .f__dep--lists {
    grid-template-columns: 1fr;
    row-gap: 2.5em;
    margin-top: 2.5em;
  }
}

@media screen and (max-width: 767px) {
  .f__dep--list {
    width: 100%;
    max-width: 25em;
    margin-left: auto;
    margin-right: auto;
  }
}

.f__dep--link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.f__dep--img {
  aspect-ratio: 290/216;
  background-color: gray;
}
.f__dep--img img {
  height: 100%;
  object-fit: cover;
}

.f__dep--name {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.f__dep--name .en {
  font-size: 0.935em;
  display: block;
}
.f__dep--name .en.-medical {
  font-size: 0.75em;
}
.f__dep--name .en img {
  width: auto;
  height: 1em;
}

.f__dep--button {
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .f__dep--button {
    font-size: 0.74em;
  }
}

.f__gas {
  font-size: 0.875em;
  padding: 0 4.4em;
  white-space: nowrap;
  margin-top: 2.5em;
  height: 3.36em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .f__gas {
    padding: 0 1.85em;
    height: 2.93em;
    margin-top: 1.86em;
  }
}

/*======================================
    footer recruit
======================================*/
.f__recruit {
  background-color: #FF0000;
  color: #fff;
  margin-top: 5.625em;
  padding: 2px 0;
}

.f__recruit--inner {
  display: grid;
  grid-template-columns: 22.25em auto;
}
@media screen and (max-width: 767px) {
  .f__recruit--inner {
    display: flex;
    flex-direction: column-reverse;
  }
}

.f__recruit--texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .f__recruit--texts {
    padding: 1.875em 0;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.f__recruit--lead {
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5277777778;
}

.f__recruit--text {
  margin-top: 0.625em;
  max-width: 17em;
}

.f__recruit--button {
  margin-top: 2.5em;
}
@media screen and (max-width: 767px) {
  .f__recruit--button {
    margin-top: 1.25em;
  }
}

.f__recruit--imgs {
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .f__recruit--imgs {
    margin-left: calc(50% - 50vw);
  }
}

.f__recruit--img {
  height: 24.625em;
}
@media screen and (max-width: 767px) {
  .f__recruit--img {
    height: auto;
  }
}
.f__recruit--img img {
  height: 100%;
  object-fit: cover;
}

.fv {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #FF0000;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.fv__img {
  transform: translate(-82%, -41.5%);
  grid-column: 1/2;
  grid-row: 1/2;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv__img {
    transform: translate(-193%, -42.5%);
  }
}
.fv__img img {
  width: 263.5625em;
  height: auto;
}
@media screen and (max-width: 767px) {
  .fv__img img {
    width: 166.5em;
  }
}

.fv__contents {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .fv__contents {
    justify-content: center;
    transform: translate(3%, 0.5%);
  }
}
@media screen and (max-width: 767px) {
  .fv__contents {
    padding-top: 5.625em;
  }
}

.fv__lead {
  font-size: 3.25em;
  font-weight: 700;
  letter-spacing: 0.26em;
  font-feature-settings: "palt";
  line-height: 1.8076923077;
}
@media screen and (max-width: 767px) {
  .fv__lead {
    font-size: 2.5625em;
    line-height: 1.8292682927;
    transform: translateX(0.2em);
  }
}

.fv__link {
  margin-top: 2.75em;
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .fv__link {
    margin-top: 2em;
  }
}

.fv-contact {
  position: absolute;
  bottom: 5em;
  right: 0;
  z-index: 2;
  width: 10.375em;
  height: 2.8125em;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5em;
  padding-left: 0.25em;
  background-color: #39BE68;
  border-radius: 3em 0 0 3em;
  transition: filter 0.3s ease;
}
.fv-contact:hover {
  filter: brightness(1.05);
}
.fv-contact:hover .arrow {
  transform: translateX(0.25em);
}
.fv-contact span {
  display: block;
}
.fv-contact .text {
  width: 5.375em;
}
.fv-contact .arrow {
  width: 1.25em;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .fv-contact {
    display: none;
  }
}

.fv-news {
  position: absolute;
  bottom: 8.15%;
  left: 0;
  background-color: #030000;
  width: 100%;
  max-width: 49.625em;
  display: flex;
  align-items: center;
  height: 3.8125em;
}
@media screen and (max-width: 767px) {
  .fv-news {
    height: 3em;
    bottom: 0;
  }
}

.fv-news__ttl {
  width: 8.26em;
  font-size: 0.9375em;
  font-weight: 600;
  letter-spacing: 0.14em;
  font-feature-settings: "palt";
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #fff;
  line-height: 2.2666666667;
}
@media screen and (max-width: 767px) {
  .fv-news__ttl {
    font-size: 0.625em;
    width: 7.6em;
    line-height: 2.7;
    border-color: rgba(255, 255, 255, 0.79);
    padding-left: 1em;
  }
}

.fv-news__contents {
  width: calc(100% - 7.75em);
  position: relative;
  padding-left: 2em;
  padding-right: 6em;
}
@media screen and (max-width: 767px) {
  .fv-news__contents {
    padding-left: 0.75em;
    width: calc(100% - 4.75em);
    padding-right: 4em;
  }
}

.fv-news-swiper {
  height: 3.8125em;
}
@media screen and (max-width: 767px) {
  .fv-news-swiper {
    height: 3em;
  }
}

.fv-news-swiper-slide__link {
  display: flex;
  transition: opacity 0.3s ease;
  height: 3.8125em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv-news-swiper-slide__link {
    column-gap: 1em;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .fv-news-swiper-slide__link {
    height: 3em;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
  }
  .fv-news-swiper-slide__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1.375em;
    height: 0.5625em;
    background: url(../img/icon_arrow_white.svg) no-repeat center/contain;
    transition: transform 0.3s ease;
  }
}
.fv-news-swiper-slide__link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .fv-news-swiper-slide__link:hover .fv-news-swiper-slide__ttl::before {
    transform: translate(0.25em, -50%);
  }
}
@media screen and (max-width: 767px) {
  .fv-news-swiper-slide__link:hover::before {
    transform: translate(0.25em, -50%);
  }
}

.fv-news-swiper-slide__text {
  font-size: 0.9375em;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .fv-news-swiper-slide__text {
    font-size: 0.625em;
    line-height: 1.5;
  }
}

.fv-news-swiper-slide__ttl {
  position: relative;
  display: inline-block;
  padding-right: 3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .fv-news-swiper-slide__ttl {
    padding-right: 4.5em;
  }
}
.fv-news-swiper-slide__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.867em;
  height: 0.74em;
  background: url(../img/icon_arrow_white.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .fv-news-swiper-slide__ttl::before {
    width: 2.2em;
    height: 0.9em;
    display: none;
  }
}

.fv-news-swiper-pagination {
  bottom: 50% !important;
  right: 2em !important;
  left: unset !important;
  transform: translateY(50%);
  text-align: right;
  font-size: 0.75em;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .fv-news-swiper-pagination {
    font-size: 0.625em;
  }
}

/*======================================
    about
======================================*/
.t-about {
  padding: 9em 0 3em;
}
@media screen and (max-width: 767px) {
  .t-about {
    padding: 5.25em 0 3em;
  }
}

.t-about__text {
  color: #FF0000;
  font-size: 2.375em;
  font-weight: 700;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .t-about__text {
    font-size: 1.0625em;
    margin-right: -1em;
  }
}

.t-about__link {
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  .t-about__link {
    margin-top: 2.75em;
    column-gap: 0.75em;
  }
  .t-about__link .text {
    width: 4.5em;
  }
  .t-about__link .arrow {
    width: 3.15em;
  }
}

.t-about__img {
  max-width: 47.5em;
  margin: 3.5em auto 0;
}

/*======================================
    works
======================================*/
.t-works {
  padding: 4em 0;
}
@media screen and (max-width: 767px) {
  .t-works {
    padding: 2.25em 0;
  }
  .t-works .layout-full-r {
    margin-right: 0;
  }
}

.t-works__lists {
  margin-top: 6em;
}
@media screen and (max-width: 767px) {
  .t-works__lists {
    margin-top: 1.75em;
  }
}

.t-works__list {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 2.5em;
}
@media screen and (max-width: 767px) {
  .t-works__list {
    flex-direction: column;
  }
}
.t-works__list:nth-child(n+2) {
  margin-top: 0.625em;
}
@media screen and (max-width: 767px) {
  .t-works__list:nth-child(n+2) {
    margin-top: 2.5em;
  }
}

.t-works__list--img {
  flex: 1;
  max-width: 60em;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .t-works__list--img {
    margin-right: calc(50% - 50vw);
  }
}

.t-works__list--contents {
  max-width: 29.875em;
  padding-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .t-works__list--contents {
    padding-top: 2em;
  }
}

.t-works__list--en.-building {
  max-width: 18.9375em;
}
@media screen and (max-width: 767px) {
  .t-works__list--en.-building {
    max-width: 17em;
  }
}
.t-works__list--en.-energy {
  max-width: 13.75em;
}
@media screen and (max-width: 767px) {
  .t-works__list--en.-energy {
    max-width: 6.375em;
  }
}
.t-works__list--en.-medical {
  max-width: 15.5em;
}
@media screen and (max-width: 767px) {
  .t-works__list--en.-medical {
    max-width: 14.875em;
  }
}

.t-works__list--ttl {
  font-weight: 700;
  font-size: 1.75em;
  line-height: 1.75;
  margin-top: 2.25em;
}
@media screen and (max-width: 767px) {
  .t-works__list--ttl {
    font-size: 1.0625em;
    margin-top: 0.5em;
  }
}

.t-works__list--text {
  font-size: 0.9375em;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  text-align: justify;
  line-height: 2.2666666667;
  margin-top: 0.75em;
}
@media screen and (max-width: 767px) {
  .t-works__list--text {
    font-size: 0.75em;
    line-height: 2;
    margin-top: 1.75em;
  }
}

.t-works__list--link {
  margin-top: 2.25em;
}
@media screen and (max-width: 767px) {
  .t-works__list--link {
    margin-top: 1.5em;
  }
}

.t-smile {
  margin-top: 3.5em;
}

.t_smile_anime {
  column-gap: 10em;
}

.t-smile__img {
  font-size: 12.375em;
}
@media screen and (max-width: 767px) {
  .t-smile__img {
    font-size: 7.375em;
  }
}
.t-smile__img img {
  width: auto;
  height: 1em;
  transform: translateX(-3%);
}

/*======================================
    recruit
======================================*/
.t-recruit {
  margin-top: 2em;
  position: relative;
}
.t-recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #545454;
  mix-blend-mode: multiply;
  z-index: 5;
}
.t-recruit::after {
  content: "Coming soon";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 230/40;
  background: url(../img/text_comingsoon.svg) no-repeat center/contain;
  color: rgba(255, 255, 255, 0);
  z-index: 6;
  width: 14.375em;
}
@media screen and (max-width: 767px) {
  .t-recruit::after {
    width: 10.5em;
  }
}
@media screen and (min-width: 768px) {
  .t-recruit {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .t-recruit {
    margin-top: 3.25em;
    padding-bottom: 3.5em;
  }
}

.t-recruit__bg {
  display: flex;
}
@media screen and (min-width: 768px) {
  .t-recruit__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}

.t-recruit__bg--img {
  width: 50%;
  height: 100%;
}
.t-recruit__bg--img img {
  height: 100%;
  object-fit: cover;
}

.recruit__inner {
  max-width: 35em;
  padding: 22.5em 0 17.5em;
}
@media screen and (min-width: 768px) {
  .recruit__inner {
    transform: translateX(2%);
  }
}
@media screen and (max-width: 767px) {
  .recruit__inner {
    padding: 1.25em 0;
    min-width: 20.625em;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.t-recruit__lead {
  font-size: 4.375em;
  letter-spacing: 0.2em;
  line-height: 1.5142857143;
  font-weight: 700;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .t-recruit__lead {
    font-size: 2.5em;
  }
}

.t-recruit__ttl {
  max-width: 32.5em;
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .t-recruit__ttl {
    max-width: 18.625em;
    margin-top: 1em;
  }
}

.t-recruit__link {
  margin-top: 4em;
}
@media screen and (max-width: 767px) {
  .t-recruit__link {
    margin-top: 2em;
  }
  .t-recruit__link.c_circle_link {
    border-color: #000;
  }
  .t-recruit__link.c_circle_link::before {
    background-image: url(../img/icon_arrow_black.svg);
  }
}

/*======================================
    news
======================================*/
.t-news {
  color: #fff;
  background-color: #FF0000;
  padding: 10.5em 0 9.5em;
}
@media screen and (max-width: 767px) {
  .t-news {
    padding: 4em 0;
  }
}

.t-news__lists {
  margin-top: 3.25em;
}
@media screen and (max-width: 767px) {
  .t-news__lists {
    margin-top: 1.25em;
  }
}

.t-news__link {
  margin-top: 4em;
}
@media screen and (max-width: 767px) {
  .t-news__link {
    margin-top: 2.5em;
  }
}

/*======================================
    contact
======================================*/
.t-contact {
  max-width: 40.3125em;
  width: 100%;
  height: 6.875em;
  margin: 7.25em auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .t-contact {
    transform: translateX(2%);
  }
}
@media screen and (max-width: 767px) {
  .t-contact {
    margin: 3.25em auto;
  }
}
.t-contact:hover::before {
  transform: translate(0.25em, -50%);
}
.t-contact::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.5em;
  transform: translateY(-50%);
  width: 1.5em;
  height: 0.625em;
  background: url(../img/icon_arrow_white.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
.t-contact .text {
  font-size: 1.375em;
}

/*======================================
    gallery
======================================*/
@media screen and (max-width: 767px) {
  .t-gallery {
    margin-top: 6em;
  }
}

.t_gallery_flow_anime {
  column-gap: 1.875em;
  animation-duration: 120s;
}
@media screen and (max-width: 767px) {
  .t_gallery_flow_anime {
    column-gap: 0.75em;
  }
}

.t_gallery_item {
  display: flex;
  flex-direction: column;
  row-gap: 1.875em;
}
@media screen and (max-width: 767px) {
  .t_gallery_item {
    row-gap: 0.75em;
  }
}

.t_gallery_item_row {
  display: flex;
  column-gap: 1.875em;
  row-gap: 1.875em;
}
@media screen and (max-width: 767px) {
  .t_gallery_item_row {
    gap: 0.75em;
  }
}
.t_gallery_item_row:nth-child(even) {
  transform: translateX(-13.6875em);
}
@media screen and (max-width: 767px) {
  .t_gallery_item_row:nth-child(even) {
    transform: translateX(-6.6875em);
  }
}

.t_gallery_item_row_img {
  aspect-ratio: 1/1;
  width: 27.375em;
}
@media screen and (max-width: 767px) {
  .t_gallery_item_row_img {
    width: 13.375em;
  }
}
.t_gallery_item_row_img img {
  height: 100%;
  object-fit: cover;
}

/*======================================
    recruit
======================================*/
.p_recruit {
  margin-top: 6.25em;
}
@media screen and (max-width: 767px) {
  .p_recruit {
    margin-top: 5em;
  }
}

.p_recruit_gallery {
  display: grid;
  grid-template-columns: auto 36.3%;
  column-gap: 2.25em;
  row-gap: 2.5em;
}
@media screen and (max-width: 767px) {
  .p_recruit_gallery {
    column-gap: 0.625em;
    row-gap: 0.625em;
  }
}

.p_recruit_gallery_item {
  background-color: gray;
}
.p_recruit_gallery_item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}
.p_recruit_gallery_item:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.p_recruit_gallery_item:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.p_recruit_gallery_item:nth-child(2), .p_recruit_gallery_item:nth-child(3) {
  aspect-ratio: 392/301;
}

/*======================================
    archive lease
======================================*/
.brand_lists {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(6.25em, 1fr));
  column-gap: 2.5em;
  row-gap: 2em;
}

.energy_links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.25em;
  row-gap: 3.125em;
  margin-top: 10em;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .energy_links {
    grid-template-columns: 1fr;
    margin-top: 5em;
  }
}

.energy_link {
  width: 100%;
  max-width: 25em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .energy_link.-card1 {
    grid-column: 1/2;
  }
  .energy_link.-card2 {
    grid-column: 2/3;
  }
  .energy_link.-card3 {
    grid-column: 3/4;
  }
}

.energy_link_link {
  display: block;
  border-radius: 0.625em;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.energy_link_link:hover {
  opacity: 0.7;
}
.energy_link_link:hover .energy_link_img img {
  transform: scale(1.05);
}
.energy_link_link:hover .energy_link_body::before {
  transform: translate(0.25em, -50%);
}

.energy_link_img {
  aspect-ratio: 335/230;
  background-color: gray;
  overflow: hidden;
}
.energy_link_img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.energy_link_body {
  display: flex;
  align-items: center;
  height: 5.25em;
  background-color: #FF0000;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.75;
  padding: 0.5em 4em 0.5em 1.7em;
  position: relative;
}
.energy_link_body::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8em;
  transform: translateY(-50%);
  width: 1.4em;
  height: 0.6em;
  background: url(../img/icon_arrow_white.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}

/*======================================
    あかとくでできること service
======================================*/
.service_list {
  display: flex;
  align-items: center;
  column-gap: 5.5em;
}
@media screen and (min-width: 768px) {
  .service_list:nth-child(even) {
    flex-direction: row-reverse;
  }
  .service_list:nth-child(n+2) {
    margin-top: -0.625em;
  }
}
@media screen and (max-width: 767px) {
  .service_list {
    flex-direction: column;
    width: 100%;
    max-width: 25em;
    margin-left: auto;
    margin-right: auto;
  }
  .service_list:nth-child(n+2) {
    margin-top: 3.125em;
  }
}

.service_list_img {
  width: 28.125em;
  height: 28.125em;
  border-radius: 50%;
  background-color: gray;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service_list_img {
    width: 18.75em;
    height: 18.75em;
    margin-left: auto;
    margin-right: auto;
  }
}
.service_list_img img {
  height: 100%;
  object-fit: cover;
}

.service_list_texts {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .service_list_texts {
    margin-top: 1.25em;
  }
}

.service_list_lead {
  font-size: 1.5em;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.175em;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .service_list_lead {
    font-size: 1.25em;
  }
}

.service_list_text {
  font-size: 0.9375em;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 2.0666666667;
  letter-spacing: 0.1em;
  text-align: justify;
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .service_list_text {
    font-size: 0.875em;
  }
}

/*======================================
    建材事業部 Building materials
======================================*/
.p_head {
  background: gray;
  height: 26.75em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.p_head.-building {
  background-image: url(../img/page/bm_head.jpg);
}
.p_head.-energy {
  background-image: url(../img/page/energy_head.jpg);
}
@media screen and (max-width: 767px) {
  .p_head {
    height: 12.5em;
  }
}

.p_head_ttl {
  text-align: center;
}
.p_head_ttl h1 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 0.25em;
}
@media screen and (max-width: 767px) {
  .p_head_ttl h1 {
    font-size: 1.25em;
  }
}
.p_head_ttl p {
  font-size: 3.75em;
}
@media screen and (max-width: 767px) {
  .p_head_ttl p {
    font-size: 2em;
  }
}
.p_head_ttl p img {
  height: 1em;
  width: auto;
}

.p_bm_exam {
  display: grid;
  grid-template-columns: 31em auto;
  column-gap: 2.5em;
}
@media screen and (max-width: 767px) {
  .p_bm_exam {
    grid-template-columns: 1fr;
    row-gap: 1.875em;
  }
}

.p_bm_exam_head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.9375em;
  width: 100%;
}

.p_bm_exam_head_img {
  aspect-ratio: 231/216;
  min-width: 0;
}
.p_bm_exam_head_img img {
  height: 100%;
  object-fit: cover;
}

.p_bm_exam_dl dt {
  font-size: 1.5em;
  line-height: 1.6666666667;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  font-weight: 700;
}
.p_bm_exam_dl dd {
  font-size: 0.9375em;
  font-weight: 700;
  font-feature-settings: "palt";
  text-align: justify;
  letter-spacing: 0.1em;
  line-height: 2.0666666667;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .p_bm_exam_dl dd {
    margin-top: 1em;
  }
}

.p_bm_exam_detail {
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 2;
  margin-top: 3em;
}

.p_bm_exam_details {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5em;
}
.p_bm_exam_details th, .p_bm_exam_details td {
  border: 1px solid #000;
  font-size: 0.9375em;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
  line-height: 1.8;
  padding: 1.2em 1.46em;
}
.p_bm_exam_details th {
  line-height: 2.0666666667;
  text-align: left;
  padding-left: 2.5em;
  vertical-align: middle;
  width: 9.33em;
}
.p_bm_exam_details td span {
  display: block;
}
.p_bm_exam_details td span.flex {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2em;
}
@media screen and (max-width: 767px) {
  .p_bm_exam_details td span.flex {
    flex-direction: column;
  }
}

.p_bm_link_out {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1080/165;
  background-color: #fff;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p_bm_link_out {
    aspect-ratio: 16/5;
  }
}
.p_bm_link_out span.logo {
  max-width: 18.375em;
  display: block;
}
@media screen and (max-width: 767px) {
  .p_bm_link_out span.logo {
    max-width: 10em;
  }
}
.p_bm_link_out:hover {
  opacity: 0.7;
}
.p_bm_link_out::after {
  width: 0.6875em;
  height: 0.6875em;
  top: 1em;
  right: 1em;
}

/*======================================
    news
======================================*/
.news_wrap {
  margin-top: 4.375em;
}
.news_wrap img {
  height: auto;
}
@media screen and (max-width: 767px) {
  .news_wrap {
    margin-top: 2.5em;
  }
}

.news_list {
  border-top: 1px solid #000;
}
.news_list:last-child {
  border-bottom: 1px solid #000;
}

.news_list_link {
  display: grid;
  grid-template-columns: 8.5em auto;
  column-gap: 2.125em;
  padding: 2.125em 3em 2.125em 0;
  position: relative;
  transform: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news_list_link {
    grid-template-columns: 1fr;
  }
}
.news_list_link:hover {
  opacity: 0.7;
}
.news_list_link:hover::before {
  transform: translate(0.25em, -50%);
}
.news_list_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875em;
  transform: translateY(-50%);
  width: 1.75em;
  height: 0.75em;
  background: url(../img/icon_arrow_black.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news_list_link::before {
    right: 0;
  }
}

.news_list_date,
.news_list_ttl {
  font-size: 0.9375em;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  line-height: 1.75;
}

@media screen and (min-width: 768px) {
  .news_list_date {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .news_list_ttl {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.news_eye img {
  height: auto;
}

.news_contents_head {
  margin: 5.625em 0 3.75em;
}
@media screen and (max-width: 767px) {
  .news_contents_head {
    margin: 2.5em 0;
  }
}

.news_contents_date {
  font-size: 0.9375em;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 1.75;
}

.news_contents_ttl {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  line-height: 1.6666666667;
}

.news_contents {
  max-width: 40.5em;
  margin: 3em auto 8.125em;
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  text-align: justify;
  line-height: 2.0666666667;
}
@media screen and (max-width: 767px) {
  .news_contents {
    margin: 2.5em auto 3.125em;
  }
}
.news_contents p, .news_contents h2, .news_contents h3, .news_contents h4, .news_contents h5, .news_contents h6 {
  font-weight: 700;
}
.news_contents p {
  margin-top: 1.5em;
}
.news_contents h2, .news_contents h3, .news_contents h4, .news_contents h5, .news_contents h6 {
  margin: 2em 0;
}
.news_contents h2 {
  font-size: 1.2em;
}
.news_contents h3 {
  font-size: 1.1em;
}
.news_contents img {
  height: auto;
  display: block;
  margin: 2em auto 0;
  width: auto;
  max-width: 100%;
}
.news_contents ul, .news_contents ol {
  margin: 2em 0;
}
.news_contents ul li, .news_contents ol li {
  font-weight: 700;
}
.news_contents ul {
  list-style: disc;
  margin-left: 1em;
}
.news_contents ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.news_contents a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.news_contents a:hover {
  opacity: 0.7;
}

.news_single_pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 2.5em;
  align-items: center;
  max-width: 46.25em;
  margin: 8.125em auto 0;
}
@media screen and (max-width: 767px) {
  .news_single_pagination {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5em;
    margin: 3.125em auto 0;
  }
}
.news_single_pagination a {
  transition: opacity 0.3s ease;
}
.news_single_pagination a:hover {
  opacity: 0.7;
}

.news_single_prev,
.news_single_next {
  font-size: 0.8125em;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  max-width: 20em;
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news_single_prev,
  .news_single_next {
    font-size: 0.75em;
  }
}
.news_single_prev::before,
.news_single_next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 5.38em;
  height: 5.38em;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  transition: transform 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .news_single_prev::before,
  .news_single_next::before {
    width: 4em;
    height: 4em;
  }
}
.news_single_prev .date,
.news_single_next .date {
  display: block;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.news_single_prev .title,
.news_single_next .title {
  display: block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.news_single_prev {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .news_single_prev {
    grid-row: 2/3;
    padding-left: 1em;
  }
}
.news_single_prev:hover::before {
  transform: translate(-85%, -50%) rotate(135deg);
}
.news_single_prev::before {
  left: 0;
  transform: translate(-75%, -50%) rotate(135deg);
}
@media screen and (max-width: 767px) {
  .news_single_prev::before {
    left: 2em;
  }
}

.news_single_archive {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875em;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  border-radius: 50%;
  width: 5.71em;
  height: 5.71em;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .news_single_archive {
    grid-column: 1/3;
    grid-row: 1/2;
    margin-left: auto;
    margin-right: auto;
  }
}

.news_single_next {
  grid-column: 3/4;
  grid-row: 1/2;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .news_single_next {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.news_single_next:hover::before {
  transform: translate(85%, -50%) rotate(-45deg);
}
.news_single_next::before {
  right: 0;
  transform: translate(75%, -50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .news_single_next::before {
    right: 2em;
  }
}

.a_pagination {
  margin-top: 4.375em;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  row-gap: 0.5em;
}
@media screen and (max-width: 767px) {
  .a_pagination {
    column-gap: 0.5em;
  }
}
.a_pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.85em;
  height: 3.85em;
  border-radius: 50%;
  border: 1px solid #000;
  font-size: 0.8125em;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .a_pagination .page-numbers {
    width: 3em;
    height: 3em;
  }
}
.a_pagination .page-numbers.current {
  background-color: #EFEFEF;
}
.a_pagination .page-numbers.dots {
  border: none;
  width: auto;
}
@media screen and (max-width: 767px) {
  .a_pagination {
    margin-top: 2.5em;
  }
}

/*======================================
    about
======================================*/
.about_ttl {
  text-align: center;
  font-size: 2.875em;
}
@media screen and (max-width: 767px) {
  .about_ttl {
    font-size: 1.875em;
  }
}
.about_ttl img {
  height: 1em;
  width: auto;
}

.about_head {
  display: grid;
  grid-template-columns: 28.75em auto;
  column-gap: 3.125em;
  align-items: flex-end;
  margin-bottom: 15.625em;
  margin: 9.375em auto 15.625em;
}
@media screen and (max-width: 767px) {
  .about_head {
    grid-template-columns: 1fr;
    row-gap: 2.5em;
    margin: 3.125em auto 6.25em;
  }
}

@media screen and (min-width: 768px) {
  .about_section .h2 {
    font-size: 1.5em;
    letter-spacing: 0.26em;
  }
  .about_section .h2::before {
    width: 2.7em;
  }
}

@media screen and (max-width: 767px) {
  .about_head_texts {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.about_head_lead {
  font-size: 1.875em;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-feature-settings: "palt";
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .about_head_lead {
    font-size: 1.5em;
  }
}

.about_head_text {
  margin-top: 2.25em;
  font-weight: 700;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  line-height: 2.1875;
}
@media screen and (max-width: 767px) {
  .about_head_text {
    font-size: 0.875em;
  }
}

@media screen and (max-width: 767px) {
  .about_head_img {
    max-width: 25em;
    margin-left: auto;
    margin-right: auto;
  }
}

.about_section_text {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  line-height: 2.2222222222;
}
@media screen and (max-width: 767px) {
  .about_section_text {
    font-size: 0.875em;
  }
}

.about_company {
  margin-top: 3.125em;
}

.about_company_list {
  border-bottom: 1px solid rgba(190, 190, 190, 0.5);
}
.about_company_list:first-child {
  border-top: 1px solid rgba(190, 190, 190, 0.5);
}

.about_company_dl {
  display: grid;
  grid-template-columns: 6.75em auto;
  column-gap: 0.9375em;
}
.about_company_dl dt, .about_company_dl dd {
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 2;
  padding: 0.6em 0.5em;
}
.about_company_dl dt {
  border-right: 1px solid rgba(190, 190, 190, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about_certificate {
  margin-top: 3.125em;
  font-size: 0.875em;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .about_certificate {
    margin-top: 3.125em;
  }
}

/*======================================
    Energy
======================================*/
.energy_service_list {
  display: flex;
}
@media screen and (min-width: 768px) {
  .energy_service_list:nth-child(even) {
    flex-direction: row-reverse;
  }
  .energy_service_list:nth-child(n+2) {
    margin-top: -3.125em;
  }
}
@media screen and (max-width: 767px) {
  .energy_service_list {
    flex-direction: column;
    row-gap: 1.875em;
  }
  .energy_service_list:nth-child(n+2) {
    margin-top: 3.75em;
  }
}

.energy_service_img {
  width: 31.25em;
  height: 31.25em;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .energy_service_img {
    width: 18.75em;
    height: 18.75em;
    margin-left: auto;
    margin-right: auto;
  }
}

.energy_service_texts {
  flex: 1;
  text-align: center;
  display: grid;
  grid-template-rows: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .energy_service_texts {
    display: block;
  }
}

.energy_service_lead {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  line-height: 1.6666666667;
  border-bottom: 1px solid #000;
  padding-bottom: 1em;
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .energy_service_lead {
    font-size: 1.125em;
  }
}

.energy_service_text {
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 2.0666666667;
  padding-top: 2em;
}
@media screen and (max-width: 767px) {
  .energy_service_text {
    padding-top: 1.5em;
  }
}

.energy_gas_list:nth-child(n+2) {
  margin-top: 4.375em;
}
@media screen and (max-width: 767px) {
  .energy_gas_list:nth-child(n+2) {
    margin-top: 2.5em;
  }
}

.energy_gas_plans {
  margin-top: 12.5em;
  margin-bottom: 4.375em;
}
@media screen and (max-width: 767px) {
  .energy_gas_plans {
    margin-top: 6.25em;
    margin-bottom: 3.75em;
  }
}

.energy_gas_plan {
  border-radius: 1.25em;
  background-color: #fff;
  padding: 3em 2.5em 3.75em;
}
.energy_gas_plan:nth-child(n+2) {
  margin-top: 1.875em;
}
@media screen and (max-width: 767px) {
  .energy_gas_plan {
    padding: 2.5em 1.25em;
    border-radius: 0.625em;
  }
}

.energy_gas_plan_inner {
  max-width: 47.8125em;
  margin-left: auto;
  margin-right: auto;
}

.energy_gas_plan_ttl {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.26em;
  font-feature-settings: "palt";
  line-height: 1.75;
  margin-bottom: 0.8em;
}
.energy_gas_plan_ttl .sm {
  display: inline-block;
  font-size: 0.625em;
  letter-spacing: 0.1em;
}

.energy_gas_plan_table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
.energy_gas_plan_table th, .energy_gas_plan_table td {
  text-align: center;
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.7222222222;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  vertical-align: middle;
  border: 1px solid rgba(35, 24, 21, 0.62);
  padding: 0.5em;
}
@media screen and (max-width: 767px) {
  .energy_gas_plan_table th, .energy_gas_plan_table td {
    font-size: 0.875em;
  }
}
.energy_gas_plan_table th {
  width: 14.17em;
}
@media screen and (max-width: 767px) {
  .energy_gas_plan_table th {
    width: 6em;
  }
}

.energy_gas_plan_note {
  font-size: 0.9375em;
  font-weight: 700;
  line-height: 2.0666666667;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  margin-top: 0.75em;
}

.energy_gas_plan_calc {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 1.7222222222;
  text-align: center;
  padding: 0.5em;
  border: 1px solid rgba(35, 24, 21, 0.62);
}
@media screen and (max-width: 767px) {
  .energy_gas_plan_calc {
    font-size: 0.875em;
  }
}

.energy_gas_payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3.75em -11.75% 3.75em;
  column-gap: 1.25em;
}
@media screen and (max-width: 1024px) {
  .energy_gas_payments {
    margin: 2.5em auto;
    grid-template-columns: 1fr;
    row-gap: 2.5em;
    max-width: 18.75em;
  }
}

.energy_gas_payment {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background-color: #FF0000;
  color: #fff;
  padding-bottom: 3.125em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.energy_gas_payment_img {
  width: 34%;
  margin-left: auto;
  margin-right: auto;
}

.energy_gas_payment_text {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.175em;
  font-feature-settings: "palt";
  text-align: center;
  line-height: 1.6666666667;
  margin-top: 2em;
}

.energy_moving_lists {
  margin-top: 3em;
}

.energy_moving_list:nth-child(n+2) {
  margin-top: 2.5em;
}

.energy_moving_dl dt {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.26em;
  font-feature-settings: "palt";
  line-height: 1.75;
  border: 1px solid #000;
  padding: 0.83em 1em;
  display: inline-block;
}
.energy_moving_dl dd {
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-feature-settings: "palt";
  margin-top: 1em;
}
.energy_moving_dl dd .lg {
  display: block;
  font-size: 1.2em;
}

.energy_moving_note {
  font-size: 0.9375em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 1.8;
  text-align: center;
  margin: 5em auto 0;
}

.underline {
  display: inline;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) calc(100% - 1px), #FF0000 calc(100% - 1px), #FF0000 100%);
  padding-bottom: 0.3em;
}

.medical_contact {
  max-width: 32.5em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.125em;
}

.energy_contact_lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.5em;
  row-gap: 3.125em;
}
@media screen and (max-width: 767px) {
  .energy_contact_lists {
    grid-template-columns: 1fr;
  }
}

.energy_contact_list_ttl {
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.175em;
  line-height: 2;
  position: relative;
  padding-left: 1.25em;
}
.energy_contact_list_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 70%;
  width: 0.7em;
  background-color: #FF0000;
}

.energy_contact_list_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #FF0000;
  border-radius: 1rem;
  min-height: 15.6rem;
  margin-top: 3rem;
}

.energy_contact_list_tel {
  text-align: center;
}
.energy_contact_list_tel span.tel {
  width: 86.54%;
  margin: 0 auto;
  max-width: 28.125em;
}
.energy_contact_list_tel span.hours {
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  display: inline-block;
  margin-top: 1.5em;
  line-height: 1.5714285714;
}

.energy_contact_list_form {
  font-size: 1.5em;
  font-weight: 700;
  color: #FF0000;
  position: relative;
  transform: opacity 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .energy_contact_list_form {
    font-size: 1.25em;
  }
}
.energy_contact_list_form:hover {
  opacity: 0.7;
}
.energy_contact_list_form:hover::before {
  transform: translate(0.25em, -50%);
}
.energy_contact_list_form::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  width: 1.17em;
  height: 0.5em;
  transition: transform 0.3s ease;
  background: url(../img/icon_arrow_main.svg) no-repeat center/contain;
}

.energy_gas_if {
  background-color: #FFE400;
  padding: 3.125em;
}
@media screen and (max-width: 767px) {
  .energy_gas_if {
    padding: 2.5em 1.25em;
  }
}
.energy_gas_if .s_text {
  margin-top: 2em;
}

.energy_gas_if_text {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 1.8888888889;
}

@media screen and (min-width: 768px) {
  .energy_service_lists .about_company_dl {
    grid-template-columns: 9.375em auto;
  }
}

/*======================================
    エネルギー 各種お申し込み application
======================================*/
.tab_buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.5em;
  row-gap: 1.25em;
  padding-bottom: 3.125em;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .tab_buttons {
    grid-template-columns: 1fr;
  }
}

.tab_button {
  font-size: 0.9375em;
  font-weight: 700;
  line-height: 2.0666666667;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  display: flex;
  align-items: center;
  border-radius: 5em;
  border: 1px solid #000;
  height: 3.8em;
  padding: 0 3em 0 2em;
  position: relative;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.tab_button:hover {
  opacity: 0.7;
}
.tab_button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 0.8em;
  height: 0.73em;
  background-color: #000;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.tab_areas {
  padding-top: 5em;
}

.tab_area {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}
.tab_area.show {
  display: block;
  visibility: visible;
  opacity: 1;
}

.pr_lists {
  margin-top: 3.75em;
  padding-bottom: 6.25em;
}
@media screen and (max-width: 767px) {
  .pr_lists {
    margin-top: 2.5em;
    margin-bottom: 3.125em;
  }
}

/*======================================
    privacy policy
======================================*/
.p_privacy_section {
  margin-top: 5em;
}

.list_disc {
  margin-left: 1em;
  list-style: disc;
  margin-top: 1em;
}
.list_disc li {
  font-weight: inherit;
}

/*# sourceMappingURL=style.css.map */
