@charset "UTF-8";
/**
**  共通
**/

/** 共通変数 **/
:root {
  --main-color: #f15a24;
}

body {
  color: #333;
  font-size: 16px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

a:link {
  color: #ff5500;
}

a:visited {
  color: #ff9900;
}

a:hover {
  color: #ff3300;
}

h2 {
  font-size: 300%;
  font-weight: 700;
  margin: 0 0 1em;
  text-align: center;
}

strong {
  font-weight: 500;
}

.pcnone {
  display: none;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .spnone {
    display: none;
  }

  .pcnone {
    display: block;
  }
}

/** アコーディオン **/
.accordion {
  width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #f15a24;
  border-bottom: 1px solid #f15a24;
}

@media screen and (max-width: 768px) {
  .accordion {
    width: 100%;
  }
}

.accordion .content {
  display: none;
  padding: 35px;
}

@media screen and (max-width: 768px) {
  .accordion .content {
    padding: 15px;
  }
}

.accordion .btn {
  width: 100%;
  font-size: 44px;
  color: #f15a24;
  text-align: center;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .accordion .btn {
    font-size: 20px;
    padding: 10px 0;
  }
}

.accordion .btn::after {
  content: "";
  display: block;
  width: 85px;
  height: 38px;
  background-image: url("../images/click_off.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  margin-left: 0.4em;
}

@media screen and (max-width: 768px) {
  .accordion .btn::after {
    width: 57px;
    height: 27px;
  }
}

.accordion .btn:hover::after {
  background-image: url("../images/click_on.svg");
}

/* .accordion.active .btn::after {
	
	-webkit-transform: rotate(189deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);

} */

/**
** 汎用ボタン
**/

.roundButton {
  background-color: #fff;
  color: var(--main-color) !important;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.3rem 4rem;
  text-align: center;
  border: 1px solid var(--main-color);
  font-weight: 500;
  display: inline-block;
}

.roundButton:hover {
  background-color: var(--main-color);
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  .roundButton {
    font-size: 20px;
    padding: 7px 20px 9px;
  }
}

.roundButton.blue {
  background-color: #fff;
  color: #233db3 !important;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.3rem 4rem;
  text-align: center;
  border: 1px solid #233db3;
  font-weight: 500;
  display: inline-block;
}

.roundButton.blue:hover {
  background-color: #233db3;
  color: #fff !important;
}

/**スクロールアニメ**/
.animate__animated.active {
  animation: active-anim 1.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s
    forwards;
}

@keyframes active-anim {
  0% {
    transform: translateY(-80px);
    opacity: 0;
  }

  40% {
    transform: translateY(-80px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.thumb.animate__animated.active {
  animation: active-anim-thumb 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s
    forwards;
}

@keyframes active-anim-thumb {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/**
** ヘッダ（グロナビ
**/
header {
  position: fixed;
  top: 40px;
  z-index: 1000;
  width: 100%;
}

header .inner {
  width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  header {
    top: 0px;
  }

  header .inner {
    width: 100%;
    padding: 0px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

header h1 {
  margin: 0px;
  padding: 0px;
}

header h1 img {
  width: auto;
  height: 40px;
}

#glonav ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  header h1 {
    margin: 10px 0 0 10px;
    padding: 0px;
  }

  #glonav {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
  }

  #glonav ul {
    display: block;
  }
}

.bars {
  background-image: url("../images/icon_bars.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 35px;
  height: 35px;
}

#glonav ul li {
  margin: 0 1em 0 0;
  padding: 0;
}

#glonav ul li a {
  color: #333;
  text-decoration: none;
}

#glonav ul li a:hover {
  color: #ff3300;
}

/**
** メイン
**/
main {
  overflow: hidden;
}

/**
** メインビジュアル
**/
#mv {
  width: 100%;
  height: 100vh;
  position: relative;
}

.carousel,
.carousel2,
.visual {
  opacity: 0;
  transition: 0.5s;
}

.visual div {
  height: 100vh;
}

.visual div img {
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.slick-initialized {
  opacity: 1;
}

#mv .mv_txt {
  display: block;
  width: 820px;
  height: 510px;
  background-image: url("../images/mv_txt.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  #mv .mv_txt {
    display: block;
    width: 90%;
  }
}

/**
** 各セクション
**/
.sec_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 200px 0 50px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sec_inner {
    width: 100%;
    margin: 0 auto;
    padding: 40px 10px;
    position: relative;
  }
}

.sec_inner_full {
  width: 100%;
  margin: 0 auto;
  padding: 200px 0 50px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sec_inner_full {
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/**
**日和住設について
**/
#sec1 {
  background-image: url("../images/about_bg.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #f8f8fa;
  margin-top: 200px;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #sec1 {
    background-image: none;
  }
}

#sec1 .sec_inner {
  padding-top: 150px;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #sec1 {
    margin-top: 90px;
  }

  #sec1 .sec_inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

#sec1 .sec_inner::before {
  content: "";
  width: 1px;
  height: 300px;
  border-left: 1px solid #f15a24;
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 768px) {
  #sec1 .sec_inner::before {
    height: 90px;
    top: -90px;
  }
}

#sec1 .sec_inner h2 {
  margin: 0 0 1.6em;
}

@media screen and (max-width: 768px) {
  #sec1 .sec_inner h2 {
    font-size: 32px;
    margin-bottom: 0;
  }
}

#sec1 .sec_inner p {
  font-size: 32px;
  line-height: 2.25;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #sec1 .sec_inner p {
    font-size: 16px;
    line-height: 2;
    margin: 0;
  }

  #sec1 .sec_inner p br {
    display: none;
  }
}

/**
**事業内容
**/
#sec2 {
  background-color: #f8f8fa;
}

#sec2 .sec_inner h2 {
  height: 125px;
  background-image: url("../images/ttl_bg_001.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #sec2 .sec_inner h2 {
    height: auto;
    font-size: 18px;
    padding: 12px;
  }
}

#sec2 .sec_inner .flex_box {
  display: flex;
}

@media screen and (max-width: 768px) {
  #sec2 .sec_inner .flex_box {
    display: block;
  }
}

#sec2 .sec_inner .summary_box {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #sec2 .sec_inner .summary_box {
    display: block;
    text-align: center;
  }
}

#sec2 .sec_inner .flex_box .img_box {
  width: 410px;
  height: auto;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #sec2 .sec_inner .flex_box .img_box {
    width: 90%;
    margin: 0 auto 50px;
  }
}

#sec2 .sec_inner .flex_box .line_box {
  position: relative;
  width: 70px;
  margin: 0 40px 0 20px;
}

@media screen and (max-width: 768px) {
  #sec2 .sec_inner .flex_box .line_box {
    display: none;
  }
}

#sec2 .sec_inner .flex_box .line_box .line_1 {
  width: 0px;
  height: 66.6%;
  border-left: 1px solid #f15a24;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#sec2 .sec_inner .flex_box .line_box .line_2 {
  width: 50%;
  height: 0px;
  border-top: 1px solid #f15a24;
  position: absolute;
  top: 16.5%;
  left: 50%;
  /*  transform: translate(0, 0);*/
}

#sec2 .sec_inner .flex_box .line_box .line_3 {
  width: 100%;
  height: 0px;
  border-top: 1px solid #f15a24;
  position: absolute;
  top: 50%;
  left: 0;
  /*  transform: translate(0, 0);*/
}

#sec2 .sec_inner .flex_box .line_box .line_4 {
  width: 50%;
  height: 0px;
  border-top: 1px solid #f15a24;
  position: absolute;
  bottom: 16.5%;
  left: 50%;
  /*  transform: translate(0, 0);*/
}

#sec2 .sec_inner .flex_box .txt_box {
  flex: 1;
}

#sec2 .sec_inner .flex_box .txt_box > div:nth-child(2) {
  margin: 50px 0;
}

#sec2 .sec_inner .flex_box .thumb {
  width: 200px;
  height: auto;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  position: relative;
}

#sec2 .sec_inner .flex_box .thumb::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
  margin: 0;
}

#sec2 .sec_inner .flex_box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#sec2 .sec_inner .flex_box .thumb svg {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 18px;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  #sec2 .sec_inner .flex_box .thumb {
    width: 50%;
    margin: 0 auto 18px;
  }
}

#sec2 .sec_inner .flex_box .txt {
  flex: 1;
  font-size: 27px;
}

@media screen and (max-width: 768px) {
  #sec2 .sec_inner .flex_box .txt {
    font-size: 18px;
  }
}

/**
**日和住設の強み
**/
#sec3 {
  background-color: #f8f8fa;
}

#sec3 .sec_inner h2 {
  height: 125px;
  background-image: url("../images/ttl_bg_002.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  #sec3 .sec_inner h2 {
    height: auto;
    font-size: 18px;
    padding: 12px;
    margin-bottom: 2rem;
  }
}

/* #sec3 .column_3 {} */

#sec3 .column_3 .col {
  display: flex;
  width: 100%;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 768px) {
  #sec3 .column_3 .col {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}

#sec3 .column_3 .col figure {
  margin: 0 0 0 2rem;
  width: 48%;
  order: 3;
}

@media screen and (max-width: 768px) {
  #sec3 .column_3 .col figure {
    margin: 0 0 1rem;
    width: 100%;
    order: 3;
  }
}

#sec3 .column_3 .col.no1 figure,
#sec3 .column_3 .col.no3 figure {
  margin: 0 2rem 0 0;
  order: 1;
}

@media screen and (max-width: 768px) {
  #sec3 .column_3 .col.no1 figure,
  #sec3 .column_3 .col.no3 figure {
    margin: 0 0 1rem;
  }
}

#sec3 .column_3 .col div {
  flex: 1;
  order: 2;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: auto 45%;
  background-position: right top;
}

#sec3 .column_3 .col.no1 div {
  background-image: url("../images/01.svg");
}

#sec3 .column_3 .col.no2 div {
  background-image: url("../images/02.svg");
}

#sec3 .column_3 .col.no3 div {
  background-image: url("../images/03.svg");
}

@media screen and (max-width: 768px) {
  #sec3 .column_3 .col div {
    padding-bottom: 0;
  }

  #sec3 .column_3 .col.no1 div,
  #sec3 .column_3 .col.no2 div,
  #sec3 .column_3 .col.no3 div {
    background-size: auto 80px;
  }
}

#sec3 .column_3 .col div .ttl {
  font-size: 130%;
  font-weight: 500;
  margin-bottom: 1rem;
}

/**
**施工実績
**/
#sec4 {
  background-color: #f8f8fa;
}

#sec4 .sec_inner_full h2 {
  height: 125px;
  background-image: url("../images/ttl_bg_003.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #sec4 .sec_inner_full h2 {
    height: auto;
    font-size: 18px;
    padding: 12px;
    margin-bottom: 1rem;
  }
}

#sec4 .carousel .item {
  width: 390px;
  height: 390px;
}

#sec4 .carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows */
#sec4 .carousel .slick-prev,
#sec4 .carousel .slick-next {
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  -ms-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 100;
}

#sec4 .carousel .slick-prev::before,
#sec4 .carousel .slick-next::before {
  content: none;
}

#sec4 .carousel .slick-next {
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  right: 40px;
}

#sec4 .carousel .slick-prev {
  border-bottom: 4px solid #fff;
  border-left: 4px solid #fff;
  left: 40px;
}

@media screen and (max-width: 768px) {
  #sec4 .carousel .slick-next {
    right: 10px;
  }

  #sec4 .carousel .slick-prev {
    left: 10px;
  }
}

/**
**会社概要
**/
#sec5 {
  background-color: #f8f8fa;
}

#sec5 .sec_inner h2 {
  height: 125px;
  background-image: url("../images/ttl_bg_004.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 3rem;
}

@media screen and (max-width: 768px) {
  #sec5 .sec_inner h2 {
    height: auto;
    font-size: 18px;
    padding: 12px;
    margin-bottom: 1rem;
  }
}

#sec5 .sec_inner .column_2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-size: 24px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  #sec5 .sec_inner .column_2 {
    display: block;
    font-size: 16px;
  }
}

#sec5 .sec_inner .column_2 p strong {
  color: var(--main-color);
}

#sec5 .sec_inner .column_2 p strong::after {
  content: " : ";
  color: #000;
}

#sec5 .sec_inner .column_2 .company_name {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

#sec5 .sec_inner .column_2 .company_name p {
  padding: 0 1rem;
}

@media screen and (max-width: 768px) {
  #sec5 .sec_inner .column_2 .company_name {
    display: block;
    margin-bottom: 1rem;
  }

  #sec5 .sec_inner .column_2 .company_name p {
    padding: 0;
  }
}

#sec5 .sec_inner .column_2 .company_box {
  width: 46%;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #sec5 .sec_inner .column_2 .company_box {
    width: 100%;
    margin: 0 0 1rem;
  }
}

#sec5 .sec_inner .column_2 .img_box {
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  #sec5 .sec_inner .column_2 .img_box {
    margin-bottom: 0.5rem;
  }
}

#sec5 .sec_inner .column_2 .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/**
**採用情報
**/
#sec6 {
  background-color: #f8f8fa;
}

#sec6 .sec_inner .recruitBox {
  background-image: url("../images/sec6_img_01.svg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 4rem 2rem;
  text-align: right;
  border-top: 1px solid #f15a24;
  border-bottom: 1px solid #f15a24;
}

@media screen and (max-width: 768px) {
  #sec6 .sec_inner .recruitBox {
    background-size: auto 180px;
    padding: 0;
  }
}

#sec6 .sec_inner .recruitBox p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 2rem;
}

@media screen and (max-width: 768px) {
  #sec6 .sec_inner .recruitBox p {
    font-size: 16px;
    text-align: left;
  }
}

#sec6 .sec_inner .recruitBox p:last-child {
  margin: 4rem 0 0;
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  #sec6 .sec_inner .recruitBox p:last-child {
    margin: 2rem 0 2rem;
    text-align: center;
  }
}

#sec6 .sec_inner .recruitBox h3 {
  font-size: 70px;
  font-weight: 400;
  color: #f15a24;
  margin: 0 0 3rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  #sec6 .sec_inner .recruitBox h3 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 36px;
    margin: 0;
    height: 180px;
    margin-bottom: 1rem;
  }
}

#sec6 .sec_inner h2 {
  height: 125px;
  background-image: url("../images/ttl_bg_005.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 3rem;
}

@media screen and (max-width: 768px) {
  #sec6 .sec_inner h2 {
    height: auto;
    font-size: 18px;
    padding: 12px;
    margin-bottom: 1rem;
  }
}

#sec6 .sec_inner .content {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  #sec6 .sec_inner .content {
    font-size: 15px;
  }
}

#sec6 .sec_inner .content dl {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

#sec6 .sec_inner .content dl dt {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: 700;
  width: 25%;
  margin-bottom: 1em;
  padding-bottom: 1em;
  padding-right: 0.5em;
  text-align: right;
  color: #f15a24;
  border-bottom: 2px solid #f15a24;
}

#sec6 .sec_inner .content dl dt:nth-child(1) {
  padding-top: 1em;
  border-top: 2px solid #f15a24;
}

#sec6 .sec_inner .content dl dd {
  width: 75%;
  margin-bottom: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  border-bottom: 1px solid #ccc;
}

#sec6 .sec_inner .content dl dd:nth-child(2) {
  padding-top: 1em;
  border-top: 1px solid #ccc;
}

#sec6 .left_bg_white {
  background-image: -webkit-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 49%,
    rgba(255, 255, 255, 1) 50%
  );
  background-image: -moz-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 49%,
    rgba(255, 255, 255, 1) 50%
  );
  background-image: -o-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 49%,
    rgba(255, 255, 255, 1) 50%
  );
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 49%,
    rgba(255, 255, 255, 1) 50%
  );
}

@media screen and (max-width: 768px) {
  #sec6 .left_bg_white {
    margin-bottom: 60px;
  }
}

#sec6 .left_bg_white .main_box {
  background-color: #fff;
  width: 1200px;
  margin: 0 auto;
  font-size: 20px;
  display: flex;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #sec6 .left_bg_white .main_box {
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    font-size: 16px;
    display: block;
    margin-top: 0px;
  }
}

#sec6 .left_bg_white .main_box .img_box {
  width: 460px;
}

@media screen and (max-width: 768px) {
  #sec6 .left_bg_white .main_box .img_box {
    width: 100%;
  }
}

#sec6 .left_bg_white .main_box .img_box img,
#sec6 .right_bg_white .main_box .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sec6 .left_bg_white .main_box .txt_box {
  flex: 1;
  padding-left: 2em;
  padding: 2em 0 2em 2em;
}

@media screen and (max-width: 768px) {
  #sec6 .left_bg_white .main_box .txt_box {
    padding: 1em 0 0;
  }
}

#sec6 .left_bg_white .main_box .txt_box h3 {
  font-weight: normal;
  color: #f15a24;
  font-size: 40px;
  margin: 0 0 0.4em;
}

@media screen and (max-width: 768px) {
  #sec6 .left_bg_white .main_box .txt_box h3 {
    font-size: 22px;
  }
}

#sec6 .right_bg_white {
  background-image: -webkit-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 49%,
    rgba(255, 255, 255, 1) 50%
  );
  background-image: -moz-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 49%,
    rgba(255, 255, 255, 1) 50%
  );
  background-image: -o-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 49%,
    rgba(255, 255, 255, 1) 50%
  );
  background-image: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0) 49%,
    rgba(255, 255, 255, 1) 50%
  );
}

#sec6 .right_bg_white .main_box {
  background-color: #fff;
  width: 1200px;
  margin: 0 auto;
  font-size: 20px;
  display: flex;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #sec6 .right_bg_white .main_box {
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    font-size: 16px;
    display: block;
    margin-top: 0px;
  }
}

#sec6 .right_bg_white .main_box .img_box {
  width: 460px;
  order: 2;
}

@media screen and (max-width: 768px) {
  #sec6 .right_bg_white .main_box .img_box {
    width: 100%;
  }
}

#sec6 .right_bg_white .main_box .txt_box {
  flex: 1;
  padding-right: 2em;
  padding: 2em 2em 2em 0;
  order: 1;
}

@media screen and (max-width: 768px) {
  #sec6 .right_bg_white .main_box .txt_box {
    padding: 1em 0 0;
  }
}

#sec6 .right_bg_white .main_box .txt_box h3 {
  font-weight: normal;
  color: #f15a24;
  font-size: 40px;
  margin: 0 0 0.4em;
  text-align: right;
}

@media screen and (max-width: 768px) {
  #sec6 .right_bg_white .main_box .txt_box h3 {
    font-size: 22px;
    text-align: left;
  }
}

#sec6 .training {
  width: 1200px;
  margin: 60px auto 0px;
  padding-bottom: 110px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #sec6 .training {
    width: 100%;
    flex-wrap: wrap;
    padding: 30px 10px;
    margin: 30px auto 0px;
  }
}

#sec6 .training .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 15px;
  border: 3px solid #f15a24;
  border-radius: 20px;
  color: #f15a24;
  background-color: #fff;
  width: 21%;
  height: 250px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  #sec6 .training .item {
    padding: 15px;
    width: 48%;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 15px;
  }
}

/* Arrows */
#sec6 .carousel2 .slick-prev,
#sec6 .carousel2 .slick-next {
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  -ms-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 100;
}

#sec6 .carousel2 .slick-prev::before,
#sec6 .carousel2 .slick-next::before {
  content: none;
}

#sec6 .carousel2 .slick-next {
  border-top: 4px solid #f15a24;
  border-right: 4px solid #f15a24;
  right: -40px;
}

#sec6 .carousel2 .slick-prev {
  border-bottom: 4px solid #f15a24;
  border-left: 4px solid #f15a24;
  left: -40px;
}

/**
**代表ご挨拶
**/

#sec7 {
  background-color: #f8f8fa;
}

#sec7 .sec_inner h2 {
  height: 280px;
  background-image: url("../images/ttl_bg_007.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 3rem;
}

@media screen and (max-width: 768px) {
  #sec7 .sec_inner h2 {
    font-size: 18px;
    padding: 30px;
    height: auto;
    margin: 0 0 1rem;
  }
}

#sec7 .sec_inner .column_2 {
  width: 1200px;
  margin: 0 auto;
  display: flex;
}

@media screen and (max-width: 768px) {
  #sec7 .sec_inner .column_2 {
    width: 100%;
    display: block;
  }
}

#sec7 .sec_inner .column_2 .img_box {
  width: 380px;
}

@media screen and (max-width: 768px) {
  #sec7 .sec_inner .column_2 .img_box {
    width: 85%;
    margin: 0 auto;
  }
}

#sec7 .sec_inner .column_2 .txt_box {
  flex: 1;
  font-size: 20px;
  padding: 0 0 0 80px;
}

#sec7 .sec_inner .column_2 .txt_box .presidentName {
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  #sec7 .sec_inner .column_2 .txt_box .presidentName {
    margin-bottom: 1rem;
  }
}

#sec7 .sec_inner .column_2 .txt_box .presidentSummary {
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  #sec7 .sec_inner .column_2 .txt_box .presidentSummary {
    margin-bottom: 2rem;
  }
}

#sec7 .sec_inner .column_2 .txt_box .presidentName strong {
  font-size: 30px;
  margin-left: 2rem;
}

@media screen and (max-width: 768px) {
  #sec7 .sec_inner .column_2 .txt_box .presidentName strong {
    font-size: 24px;
    margin-left: 1rem;
  }
}

#sec7 .sec_inner .column_2 .txt_box h3 {
  color: var(--main-color);
  font-size: 28px;
  margin-bottom: 1rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #sec7 .sec_inner .column_2 .txt_box h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  #sec7 .sec_inner .column_2 .txt_box {
    flex: 1;
    font-size: 16px;
    padding: 20px 0 0;
  }
}

#sec7 .sec_inner .column_2 .txt_box p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  #sec7 .sec_inner .column_2 .txt_box p {
    font-size: 16px;
  }

  #sec7 .sec_inner .column_2 .txt_box p:last-child {
    margin-bottom: 0;
  }
}

#sec7 .sec_inner .column_2 .txt_box .name {
  font-size: 38px;
}

@media screen and (max-width: 768px) {
  #sec7 .sec_inner .column_2 .txt_box .name {
    font-size: 22px;
  }
}

#sec7 .sec_inner .column_2 .txt_box .name span {
  font-size: 20px;
  display: block;
}

@media screen and (max-width: 768px) {
  #sec7 .sec_inner .column_2 .txt_box .name span {
    font-size: 12px;
  }
}

/**
**関連企業のご紹介
**/
#sec8 {
  background-color: #f8f8fa;
}

#sec8 .sec_inner {
  padding-bottom: 200px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #sec8 .sec_inner {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

#sec8 .sec_inner h2 {
  height: 110px;
  background-image: url("../images/ttl_bg_008.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 3rem;
}

@media screen and (max-width: 768px) {
  #sec8 .sec_inner h2 {
    height: auto;
    font-size: 18px;
    padding: 12px;
    margin-bottom: 1rem;
  }
}

#sec8 .sec_inner .rogo_tss {
  display: flex;
  padding: 25px;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  margin-bottom: 3rem;
}

#sec8 .sec_inner .rogo_tss .img_box {
  width: 445px;
}

#sec8 .sec_inner .rogo_tss .img_box img {
  max-width: 100%;
  height: auto;
}

#sec8 .sec_inner .rogo_tss .desc {
  font-size: 28px;
  text-align: left;
  color: #233db3;
}

@media screen and (max-width: 768px) {
  #sec8 .sec_inner .rogo_tss {
    display: block;
    padding: 15px;
    margin-bottom: 1rem;
  }

  #sec8 .sec_inner .rogo_tss .img_box {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  #sec8 .sec_inner .rogo_tss .img_box img {
    max-width: 100%;
    height: auto;
  }

  #sec8 .sec_inner .rogo_tss .desc {
    font-size: 14px;
  }
}

#sec8 .sec_inner .column_2 {
  display: flex;
}

@media screen and (max-width: 768px) {
  #sec8 .sec_inner .column_2 {
    flex-direction: column;
  }
}

#sec8 .sec_inner .column_2 .txt_box {
  flex: 1;
}

@media screen and (max-width: 768px) {
  #sec8 .sec_inner .column_2 .txt_box {
    /*order: 2;*/
    width: 100%;
  }
}

#sec8 .sec_inner .column_2 .txt_box ul {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

#sec8 .sec_inner .column_2 .txt_box ul li {
  font-size: 22px;
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  #sec8 .sec_inner .column_2 .txt_box ul li {
    font-size: 16px;
    margin-bottom: 0.6rem;
  }
}

#sec8 .sec_inner .column_2 .txt_box ul li strong {
  color: var(--main-color);
}

#sec8 .sec_inner .column_2 .img_box {
  width: 620px;
}

@media screen and (max-width: 768px) {
  #sec8 .sec_inner .column_2 .img_box {
    width: 100%;
    /*order: 1;*/
  }
}

#sec8 .sec_inner .column_2 .img_box img {
  max-width: 100%;
  height: auto;
}

#sec8 .sec_inner .column_2 .img_box p {
  text-align: right;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  #sec8 .sec_inner .column_2 .img_box p {
    text-align: center;
    margin-top: 1rem;
  }
}

#sec8 .sec_inner .btn {
  font-size: 28px;
  text-decoration: none;
  background-color: #f15a24;
  padding: 10px 30px 13px;
  border-radius: 999px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #sec8 .sec_inner .btn {
    font-size: 20px;
    padding: 7px 20px 9px;
  }
}

#sec8 .sec_inner .btn:hover {
  background-color: #f4aa00;
}

/**
** フッター
**/
footer {
  padding: 75px 0px 40px;
  background-color: #f15a24;
  color: #fff;
  text-align: center;
  font-size: 47px;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 40px 0px 15px;
    font-size: 22px;
  }
}

footer .tel {
  font-size: 103px;
  line-height: 1;
}

footer .tel span {
  display: block;
  font-size: 25px;
  margin: 0;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  footer .tel {
    font-size: 32px;
  }

  footer .tel span {
    font-size: 15px;
  }
}

footer .footer_companyinfo {
  font-size: 20px;
  margin: 4rem 0;
}

@media screen and (max-width: 768px) {
  footer .footer_companyinfo {
    font-size: 16px;
  }
}

footer .footer_companyinfo img {
  width: 120px;
  height: auto;
  display: inline;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  footer .footer_companyinfo img {
    width: 90px;
  }
}

footer .footer_companyinfo .name {
  margin-bottom: 1rem;
}

footer .copyright {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  footer .copyright {
    font-size: 11px;
  }
}

footer .bnr {
  padding: 5px;
  background-color: #fff;
  margin: 140px 0 70px;
  height: auto;
  width: 410px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  footer .bnr {
    padding: 3px;
    margin: 45px 0;
    width: 180px;
  }
}

footer .btn_white {
  font-size: 28px;
  text-decoration: none;
  background-color: #fff;
  padding: 10px 30px 13px;
  border-radius: 999px;
  color: #f15a24;
  margin-top: 1.2em;
  margin-bottom: 1.8em;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  footer .btn_white {
    font-size: 20px;
    padding: 7px 20px 9px;
  }
}

footer .btn_white:hover {
  background-color: #f4aa00;
  color: #fff;
}

/* スマホ ナビゲーション */
.hamburger-menu {
  width: 80px;
  height: 80px;
  position: fixed;
  top: 5px;
  right: 0;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
  z-index: 999;
}

.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}

.hamburger-menu__bar:first-child {
  top: 16px;
}

.hamburger-menu__bar:nth-child(2) {
  top: 28px;
}

.hamburger-menu__bar:last-child {
  top: 40px;
}

.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}

.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}

.navigation {
  font-size: 20px;
  display: none;
  background: #ff5500;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 998;
  padding: 60px 0;
  /* 20250320追加 <s> */
  overflow-y: auto;
  /* 20250320追加 <e> */
}

.navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

/* .navigation__list-item {}

.navigation__list-item:first-child {} */

.navigation__link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 18px 0;
  transition: 0.5s;
}

.navigation__list-item a {
  color: #fff;
}

.navigation__list-item a:hover {
  color: #fff;
}

.navigation .bt {
  display: block;
}

.navigation .bt a {
  font-weight: bold;
  width: 80%;
  display: block;
  padding: 20px 5%;
  margin: 0 auto;
  color: #fff;
  background-color: #00bfff;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  position: relative;
}

.navigation .bt a:hover {
  color: #fff;
  background-color: #1e90ff;
}

.navigation .bt a::before {
  font-size: 14px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 600;
  padding-left: 0px;
  color: #fff;
  position: absolute;
  right: 15px;
}

nav.navigation.sp ul li a::after {
  color: #fff;
}

/* スマホ ナビゲーション end */

/* 20240213 追加 <s>
------------------------------ */
.accordionTop {
  border-bottom: none;
}
.centeringWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fontSize20 {
  font-size: 20px;
}
.newLine {
  display: inline-block;
}
.closeBtn {
  margin-top: 32px;
  display: inline-block;
  padding: 4px 32px;
  border: 1px solid #f15a24;
  border-radius: 32px;
  background: #fff;
  font-weight: 500;
  color: #f15a24;
  cursor: pointer;
}
.closeBtn:hover {
  background-color: #f15a24;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fontSize20 {
    font-size: 16px;
  }
  .closeBtn {
    margin-top: 16px;
  }
}
/* ------------------------------
20240213 追加 <e> */

/* 20250320 追加 <s>
------------------------------ */
/* ドロップダウンメニュー */
.have_subnav {
  position: relative;
  display: block;
}
.have_subnav_link {
  margin-left: 4px;
  display: inline-block;
  position: relative;
  width: 14px;
  height: 14px;
}
.have_subnav_link::before,
.have_subnav_link::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 8px;
  height: 1px;
  background-color: var(--main-color);
}
.have_subnav_link::before {
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.have_subnav_link::after {
  right: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.subnav {
  padding-top: 24px;
  position: absolute;
  top: 18px;
  width: 160px;
  display: none;
}
.subnav_disp .subnav {
  display: block;
}
.subnav ul {
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* -webkit-margin-before: 0; */
  margin-block-start: 0;
  /* -webkit-margin-after: 0; */
  margin-block-end: 0;
}
.subnav a {
  display: inline-block;
  margin: 8px 16px;
}
.subnav li:nth-of-type(1) a {
  margin: 16px 16px 8px 16px;
}
.subnav li:nth-last-of-type(1) a {
  margin: 8px 16px 16px 16px;
}
/* メンテナンスのご依頼はこちら */
.maint_inner h3 {
  font-size: 48px;
  font-weight: 500;
  color: #233db3;
  text-align: center;
}
.maint_inner {
  margin-bottom: 150px;
  padding: 75px 0;
  border-top: 1px solid #233db3;
  border-bottom: 1px solid #233db3;
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 50px;
}
#sec8 .maint_inner {
  margin-top: 100px;
  margin-bottom: 0;
}
a.maint_btn {
  padding: 10px 32px;
  font-size: 32px;
  text-decoration: none;
  color: #233db3;
  border: 1px solid #233db3;
  border-radius: 64px;
  background-color: #fff;
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  -webkit-transition: 0.2s ease-in all;
  -o-transition: 0.2s ease-in all;
  transition: 0.2s ease-in all;
}
a.maint_btn:hover {
  opacity: 0.7;
}
.maint_btn img {
  width: 50px;
  height: auto;
}
.maint_inner .message {
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
.maint_contact_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  list-style: none;
  /* -webkit-padding-start: 0; */
  padding-inline-start: 0;
  /* -webkit-margin-before: 0; */
  margin-block-start: 0;
  /* -webkit-margin-after: 0; */
  margin-block-end: 0;
}
.maint_contact_type {
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  font-size: 24px;
  color: #233db3;
}
.maint_contact_type img {
  width: 24px;
  height: auto;
}
a.maint_tel,
.maint_tel {
  font-size: 48px;
  color: #233db3;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .maint_inner a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 768px) {
  #sec8 .maint_inner {
    margin-top: 50px;
    margin-bottom: 0;
  }
  .maint_inner h3 {
    font-size: 22px;
  }
  .maint_inner {
    margin-bottom: 40px;
    padding: 40px 0;
    row-gap: 25px;
  }
  a.maint_btn {
    padding: 10px 20px;
    font-size: 20px;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .maint_btn img {
    width: 30px;
  }
  .maint_inner .message {
    font-size: 16px;
  }
  .maint_contact_type {
    font-size: 16px;
  }
  .maint_contact_type img {
    width: 16px;
  }
  a.maint_tel,
  .maint_tel {
    font-size: 32px;
  }
  .maint_contact_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 16px;
  }
}
@media screen and (max-width: 425px) {
  .break {
    display: inline-block;
  }
}
/* manual.html */
#manual {
  background-color: #f8f8fa;
}
.sec_title {
  position: relative;
  font-size: 48px;
  z-index: 1;
}
.sec_title::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "MANUAL";
  font-size: 150px;
  color: #fff;
  z-index: -1;
}
#man_sec01 .message {
  margin-top: 125px;
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
}
.facility_list {
  margin-top: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  list-style: none;
  /* -webkit-padding-start: 0; */
  padding-inline-start: 0;
  /* -webkit-margin-after: 0; */
  margin-block-end: 0;
}
.facility_list a {
  padding: 50px 32px;
  height: 573px;
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--main-color);
  border-radius: 16px;
  color: #333;
  -webkit-transition: 0.2s ease-in-out all;
  -o-transition: 0.2s ease-in-out all;
  transition: 0.2s ease-in-out all;
  text-decoration: none;
}
.facility_list a:hover {
  opacity: 0.7;
}
.facility_type {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px 8px auto;
  grid-template-columns: 50px auto;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.facility_list_title {
  font-size: 30px;
  font-weight: 700;
}
.facility_menu {
  margin-top: 25px;
  line-height: 2;
}
.facility_menu_list {
  margin-top: 50px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  list-style: none;
}
.sec_facility h3 {
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 48px;
}
.facility_item_list {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 50px;
  list-style: none;
  /* -webkit-padding-start: 0; */
  padding-inline-start: 0;
  /* -webkit-margin-after: 0; */
  margin-block-end: 0;
}
.facility_item_list a {
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 16px;
  font-size: 24px;
  color: #333333;
  text-decoration: none;
  transition: 0.2s ease-in-out all;
}
.facility_item_list a:hover {
  opacity: 0.7;
}
#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}
#modal.modal_disp {
  display: block;
}
.modal_btn_container {
  margin: 24px auto;
  width: calc(100% - 48px);
  max-width: 1920px;
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#modal_btn {
  position: relative;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}
#modal_btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
}
#modal_btn span:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal_movie_container {
  display: -webkit-box;
  /* display: -ms-flexbox; */
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal_movie_container {
  height: calc(100% - 130px);
}
.modal_movie_container iframe {
  width: calc(100% - 128px);
  max-width: 1792px;
  height: 100%;
  max-height: 1008px;
}
@media screen and (max-width: 768px) {
  #manual {
    padding-top: 80px;
  }
  #manual .sec_inner {
    padding: 40px 16px;
  }
  .sec_title {
    font-size: 32px;
  }
  .sec_title::after {
    font-size: 20vw;
  }
  #man_sec01 .message {
    margin-top: calc(10vw + 25px);
    font-size: 16px;
    line-height: 1.8;
  }
  .facility_list {
    margin-top: 50px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 16px;
  }
  .facility_list a {
    padding: 25px 16px;
    height: auto;
  }
  .facility_type {
    -ms-grid-columns: 30px auto;
    grid-template-columns: 30px auto;
  }
  .facility_list_title {
    font-size: 24px;
  }
  .facility_menu_list {
    margin-top: 25px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .facility_menu_list li::after {
    margin: 0 4px;
    content: "/";
  }
  .facility_menu_list li:nth-last-child(1):after {
    margin: 0;
    content: "";
  }
  .sec_facility h3 {
    font-size: 30px;
  }
  .modal_btn_container {
    margin: 16px auto;
    width: calc(100% - 32px);
  }
  .facility_item_list {
    margin-top: 25px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 25px;
  }
  .facility_item_list a {
    row-gap: 8px;
    font-size: 16px;
  }
  .modal_movie_container iframe {
    width: calc(100vw - 32px);
    max-height: calc((900vw - 288px) / 16);
  }
}
/* ------------------------------
20250320 追加 <e> */
