@charset "UTF-8";
/*
Theme Name: ArcA
*/
.br-sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .br-sp {
    display: block;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  max-width: calc(1220px + 4%);
  margin: 0 auto;
  padding: 0 2%;
}
@media screen and (max-width: 900px) {
  .wrapper {
    max-width: calc(500px + 4%);
    padding: 0 4%;
  }
}
.orange-btn {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  background-color: #fea000;
  padding: 16px 140px;
  border-radius: 50px;
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .orange-btn {
    padding: 16px 40px;
  }
}

a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

p {
  font-size: 26px;
}
@media screen and (max-width: 900px) {
  p {
    font-size: 18px;
  }
}

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

.PC-br {
  display: block;
}
@media screen and (max-width: 900px) {
  .PC-br {
    display: none;
  }
}

.section-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 48px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 900px) {
  .section-title {
    font-size: 28px;
  }
}
.section-title::before {
  content: "";
  display: block;
  width: 300px;
  height: 2px;
  background-color: #e87102;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -34px;
}
@media screen and (max-width: 900px) {
  .section-title::before {
    bottom: -16px;
  }
}

.page-FV {
  background: linear-gradient(90deg, #e87102, #fe9e00);
  padding: 112px 0;
}
@media screen and (max-width: 900px) {
  .page-FV {
    padding: 60px 0;
  }
}
.page-FV .page-FV__container {
  text-align: left;
}
.page-FV .page-FV__container .page-FV__title {
  font-size: 32px;
  color: #fff;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 2%;
}
@media screen and (max-width: 900px) {
  .page-FV .page-FV__container .page-FV__title {
    font-size: 24px;
  }
}

.header {
  position: relative;
  padding-top: 16px;
}
.header::before {
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  background-color: #fea000;
  position: absolute;
  top: 0;
  left: 0;
}
.header .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
@media screen and (max-width: 900px) {
  .header .header__container {
    max-width: 100%;
  }
}
.header .header__container .header__logo {
  width: 200px;
}
.header .header__container .header__nav .header__nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .header .header__container .header__nav .header__nav-list {
    display: none;
  }
}
.header .header__container .header__nav .header__nav-list .header__nav-item .header__nav-link {
  font-size: 20px;
}
@media screen and (max-width: 1100px) {
  .header .header__container .header__nav .header__nav-list .header__nav-item .header__nav-link {
    font-size: 15px;
  }
}

.header__nav-sp {
  display: none;
  /***** 真ん中のバーガー線 *****/
  /***** 上下のバーガー線 *****/
  /***** メニューオープン時 *****/
  /* ボタンフォーカス時の装飾 */
  /**************** ここまで、ハンバーガーボタンのスタイリング ****************/
  /**************** 以下、メニューのスタイリング ****************/
  /***** メニューオープン時位置0にして画面内に *****/
  /* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
}
.header__nav-sp .btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 26px;
  right: 16px;
  /* ボタンの大きさ  */
  width: 58px;
  height: 48px;
  /* バーガーの線をボタン範囲の中心に配置 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 最前面に */
  z-index: 1000;
}
@media screen and (max-width: 900px) {
  .header__nav-sp .btn {
    top: 45px;
  }
}
.header__nav-sp .btn-line {
  /* 線の長さと高さ */
  width: 100%;
  height: 4px;
  /* バーガー線の色 */
  background-color: #333;
  /* バーガー線の位置基準として設定 */
  position: relative;
  transition: 0.2s;
}
.header__nav-sp .btn-line::before,
.header__nav-sp .btn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  transition: 0.2s;
}
.header__nav-sp .btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-16px);
}
.header__nav-sp .btn-line::after {
  /* 下の線の位置 */
  transform: translateY(16px);
}
.header__nav-sp .btn-line.open {
  transform: translate(5px, 0);
}
.header__nav-sp .btn-line.open::before,
.header__nav-sp .btn-line.open::after {
  content: "";
  transition: 0.2s;
}
.header__nav-sp .btn-line.open::before {
  transform: translate(8px, -16px);
}
.header__nav-sp .btn-line.open::after {
  transform: translate(-8px, 16px);
}
.header__nav-sp .btn:focus .btn-line,
.header__nav-sp .btn:focus .btn-line::before,
.header__nav-sp .btn:focus .btn-line::after {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}
.header__nav-sp .btn:focus .btn-line.open {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.header__nav-sp .btn:focus .btn-line.open::before,
.header__nav-sp .btn:focus .btn-line.open::after {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}
.header__nav-sp .menu {
  position: fixed;
  top: 0;
  /* メニューの位置マイナス指定で画面外に */
  transform: translateX(130%);
  width: 70%;
  height: 100vh;
  z-index: 999;
  /* メニューを縦に */
  display: flex;
  flex-direction: column;
  color: #efefef;
  background-color: #fbfbf0;
  transition: transform 0.3s;
}
.header__nav-sp .menu-list {
  width: 100%;
  height: 100%;
  /* メニューテキスト位置をリスト内中心に */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e85a1e;
  font-size: 24px;
  border-bottom: 1px solid #aeaeae;
}
.header__nav-sp .menu-list:last-of-type {
  border-bottom: none;
}
.header__nav-sp .menu-list:hover {
  color: #333;
  background-color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  cursor: pointer;
}
.header__nav-sp .menu.open {
  transform: translateX(-90%);
}
@media screen and (min-width: 900px) {
  .header__nav-sp .btn {
    display: none;
  }
  .header__nav-sp .menu {
    position: fixed;
    transform: translateX(0);
    width: 100%;
    height: 100px;
    /* メニューを横に */
    display: flex;
    flex-direction: row;
  }
}
@media screen and (max-width: 900px) {
  .header__nav-sp {
    display: block;
  }
}

.FV {
  height: calc(100vh - 116px);
  margin-bottom: 48px;
  background-image: url("image/MV.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .FV {
    height: 200px;
    height: calc(100vh - 116px);
  }
}
.FV .FV__container {
  height: 100%;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .FV .FV__container {
    max-width: 100%;
  }
}
.FV .FV__container .FV__title .FV__title-text {
  color: #fff;
  position: absolute;
  width: 100%;
  font-size: 64px;
  text-align: center;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 900px) {
  .FV .FV__container .FV__title .FV__title-text {
    font-size: 5.8666666667vw;
    padding: 0 20px;
  }
}
.FV .FV__container .FV__images {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .FV .FV__container .FV__images {
    justify-content: center;
  }
}
.FV .FV__container .FV__images .FV__image {
  width: 33.3333333333%;
}
@media screen and (max-width: 900px) {
  .FV .FV__container .FV__images .FV__image {
    width: 100%;
  }
}
.FV .FV__container .FV__images .FV__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .FV .FV__container .FV__images .FV__image img {
    width: 100%;
  }
}

.FV-bottom {
  margin: 112px 0;
}
@media screen and (max-width: 900px) {
  .FV-bottom {
    margin: 40px 0;
  }
}
.FV-bottom .FV-bottom__container {
  text-align: center;
  font-size: 32px;
}
.FV-bottom .FV-bottom__container p {
  line-height: 1.5;
}
.FV-bottom .FV-bottom__container p .big {
  font-size: 38px;
}

.strength {
  background: linear-gradient(90deg, #e87002, #fe9f00);
  padding-top: 114px;
  padding-bottom: 166px;
}
@media screen and (max-width: 900px) {
  .strength {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.strength h2 {
  color: #fff;
  font-size: 48px;
  text-align: center;
  margin-bottom: 38px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .strength h2 {
    font-size: 32px;
  }
}
.strength .strength__container.wrapper .strength__list .strength__list-item {
  display: flex;
  background-color: #fff;
  margin-bottom: 65px;
  position: relative;
  box-shadow: 3px 0 10px 0 rgba(0, 0, 0, 0.2509803922);
}
@media screen and (max-width: 900px) {
  .strength .strength__container.wrapper .strength__list .strength__list-item {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.strength .strength__container.wrapper .strength__list .strength__list-item::before {
  display: block;
  font-size: 86px;
  font-family: "Linden Hill", serif;
  color: #fff;
  position: absolute;
  top: -52px;
  left: 0;
  text-shadow: 7px 7px 4px rgba(0, 0, 0, 0.2509803922);
}
.strength .strength__container.wrapper .strength__list .strength__list-item:nth-child(1)::before {
  content: "01";
}
.strength .strength__container.wrapper .strength__list .strength__list-item:nth-child(2)::before {
  content: "02";
}
.strength .strength__container.wrapper .strength__list .strength__list-item:nth-child(3)::before {
  content: "03";
}
.strength .strength__container.wrapper .strength__list .strength__list-item .strength__list-item-image {
  width: 30%;
}
@media screen and (max-width: 900px) {
  .strength .strength__container.wrapper .strength__list .strength__list-item .strength__list-item-image {
    width: 100%;
  }
}
.strength .strength__container.wrapper .strength__list .strength__list-item .strength__list-item-content {
  width: 70%;
  padding-left: 70px;
  padding-right: 70px;
}
@media screen and (max-width: 900px) {
  .strength .strength__container.wrapper .strength__list .strength__list-item .strength__list-item-content {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 30px;
  }
}
.strength .strength__container.wrapper .strength__list .strength__list-item .strength__list-item-content .strength__list-item-content-title {
  font-size: 30px;
  padding-top: 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .strength .strength__container.wrapper .strength__list .strength__list-item .strength__list-item-content .strength__list-item-content-title {
    font-size: 24px;
    padding-top: 30px;
  }
}
.strength .strength__container.wrapper .strength__list .strength__list-item .strength__list-item-content .strength__list-item-content-text {
  font-size: 24px;
}
@media screen and (max-width: 900px) {
  .strength .strength__container.wrapper .strength__list .strength__list-item .strength__list-item-content .strength__list-item-content-text {
    font-size: 18px;
  }
}

.message {
  padding-top: 74px;
  padding-bottom: 90px;
}
@media screen and (max-width: 900px) {
  .message {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.message .message__container.wrapper .message__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .message .message__container.wrapper .message__content {
    flex-direction: column;
  }
}
.message .message__container.wrapper .message__content .message__content-image {
  width: 45%;
}
@media screen and (max-width: 900px) {
  .message .message__container.wrapper .message__content .message__content-image {
    width: 100%;
  }
}
.message .message__container.wrapper .message__content .message__content-text {
  font-size: 30px;
  width: 45%;
  margin-top: 34px;
}
@media screen and (max-width: 900px) {
  .message .message__container.wrapper .message__content .message__content-text {
    width: 100%;
  }
}
.message .message__container.wrapper .message__content .message__content-text p {
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .message .message__container.wrapper .message__content .message__content-text p {
    margin-bottom: 20px;
  }
}
.message .message__container.wrapper .message__content .message__content-text .big {
  font-size: 40px;
}
@media screen and (max-width: 900px) {
  .message .message__container.wrapper .message__content .message__content-text .big {
    font-size: 28px;
  }
}
.voice {
  background-color: #fff2d5;
  padding: 74px 0;
}
.voice .voice__container.wrapper .voice__list {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  margin-bottom: 70px;
}
@media screen and (max-width: 900px) {
  .voice .voice__container.wrapper .voice__list {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.voice .voice__container.wrapper .voice__list .voice__list-item {
  width: 30%;
  background-color: #fff;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 30px 30px;
  box-shadow: 3px 0 10px 0 rgba(0, 0, 0, 0.2509803922);
}
@media screen and (max-width: 900px) {
  .voice .voice__container.wrapper .voice__list .voice__list-item {
    width: 100%;
  }
}
.voice .voice__container.wrapper .voice__list .voice__list-item .voice__list-item-image {
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 900px) {
  .voice .voice__container.wrapper .voice__list .voice__list-item .voice__list-item-image {
    margin-bottom: 20px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.voice .voice__container.wrapper .voice__list .voice__list-item .voice__list-item-image img {
  height: 200px;
}
@media screen and (max-width: 900px) {
  .voice .voice__container.wrapper .voice__list .voice__list-item .voice__list-item-image img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
.voice .voice__container.wrapper .voice__list .voice__list-item .voice__list-item-text .voice__list-item-text-title {
  font-size: 20px;
  margin: 10px 0;
}
.voice .voice__container.wrapper .voice__list .voice__list-item .voice__list-item-text .voice__list-item-text-date {
  font-size: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical; /* 垂直方向に配置 */
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 5;
}
.voice .voice__container.wrapper .btn {
  margin-top: 72px;
}

.CTA {
  padding: 104px 2% 108px 2%;
}
@media screen and (max-width: 900px) {
  .CTA {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.CTA .CTA__container {
  background: linear-gradient(90deg, #e87002, #fe9f00);
  padding: 80px 0 40px 0;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .CTA .CTA__container {
    padding: 40px 0 20px 0;
  }
}
.CTA .CTA__container .CTA__btn {
  background-color: #fff;
  color: #e87203;
  width: 40%;
  margin: 0 auto;
  display: block;
  padding: 20px 0;
}
.CTA .CTA__container .CTA__text {
  font-size: 16px;
  color: #fff;
  margin-top: 24px;
}

.footer {
  background: linear-gradient(90deg, #e87002, #fe9f00);
  color: #ffffff;
  padding: 80px 0 100px 0;
}
@media screen and (max-width: 900px) {
  .footer {
    padding: 40px 0 40px 0;
  }
}
@media screen and (max-width: 900px) {
  .footer .footer__container {
    flex-direction: column;
    gap: 20px;
  }
}
.footer .footer__container .footer__logo {
  width: 200px;
}
.footer .footer__container .footer__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 900px) {
  .footer .footer__container .footer__nav {
    flex-direction: column;
  }
}
.footer .footer__container .footer__nav .footer__nav-link {
  font-size: 20px;
}

.ServiceFV {
  background-color: #fbfbf0;
}
.ServiceFV .ServiceFV__container .ServiceFV__title {
  font-size: 48px;
  text-align: center;
  padding: 60px 0;
  font-weight: bold;
  color: #e85a1e;
}
@media screen and (max-width: 900px) {
  .ServiceFV .ServiceFV__container .ServiceFV__title {
    font-size: 32px;
  }
}
.ServiceFV .ServiceFV__container .ServiceFV__image {
  height: 385px;
}
.ServiceFV .ServiceFV__container .ServiceFV__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service {
  padding: 126px 0;
}
@media screen and (max-width: 900px) {
  .service {
    padding: 40px 0;
  }
}
.service .service__container {
  max-width: calc(1060px + 4%);
  margin: 0 auto;
  padding: 0 2%;
}
.service .service__container .service__title {
  color: #1e1e1e;
  font-size: 48px;
  text-align: center;
  margin-bottom: 48px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 900px) {
  .service .service__container .service__title {
    font-size: 24px;
  }
}
.service .service__container .service__title::before {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  background-color: #000000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}
.service .service__container h3 {
  font-size: 30px;
  margin-bottom: 48px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .service .service__container h3 {
    font-size: 20px;
  }
}
.service .service__container h3::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
}
@media screen and (max-width: 900px) {
  .service .service__container h3::before {
    left: -20px;
  }
}
.service .service__container h3::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
}
@media screen and (max-width: 900px) {
  .service .service__container h3::after {
    right: -20px;
  }
}
.service .service__container .service__text {
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .service .service__container .service__text {
    font-size: 18px;
  }
}

.flow {
  margin-bottom: 128px;
}
@media screen and (max-width: 900px) {
  .flow {
    margin-bottom: 40px;
  }
}
.flow .flow__container {
  max-width: calc(1060px + 4%);
  margin: 0 auto;
  padding: 0 2%;
}
.flow .flow__container .flow__title {
  color: #1e1e1e;
  font-size: 48px;
  text-align: center;
  margin-bottom: 80px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 900px) {
  .flow .flow__container .flow__title {
    font-size: 32px;
  }
}
.flow .flow__container .flow__title::before {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  background-color: #000000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}
.flow .flow__container .flow__list {
  background-color: #f9f9f9;
  padding: 92px 128px;
  border-radius: 20px;
}
@media screen and (max-width: 900px) {
  .flow .flow__container .flow__list {
    padding: 40px 40px;
  }
}
.flow .flow__container .flow__list .flow__list-item {
  font-size: 30px;
  margin-bottom: 28px;
}
@media screen and (max-width: 900px) {
  .flow .flow__container .flow__list .flow__list-item {
    font-size: 24px;
  }
}

.descriptionFV {
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .descriptionFV {
    margin-bottom: 40px;
  }
}
.descriptionFV .descriptionFV__container {
  background-color: #fbfbf0;
}
.descriptionFV .descriptionFV__container .descriptionFV__title {
  font-size: 48px;
  text-align: center;
  padding: 60px 0;
  font-weight: bold;
  color: #e85a1e;
}
@media screen and (max-width: 900px) {
  .descriptionFV .descriptionFV__container .descriptionFV__title {
    font-size: 32px;
  }
}
.descriptionFV .descriptionFV__container .descriptionFV__image {
  height: 385px;
  display: flex;
}
.descriptionFV .descriptionFV__container .descriptionFV__image .descriptionFV__image-item {
  height: 100%;
  width: 50%;
  -o-object-position: bottom;
     object-position: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}
.descriptionFV .descriptionFV__container .descriptionFV__image .descriptionFV__image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.description {
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .description {
    margin-bottom: 40px;
  }
}
.description .description__container {
  max-width: calc(1060px + 4%);
}
.description .description__container .description__text {
  font-size: 30px;
  margin-bottom: 80px;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .description .description__container .description__text {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.description .description__container dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .description .description__container dl {
    font-size: 18px;
  }
}
.description .description__container dl dt {
  width: 30%;
  font-weight: 500;
  background-color: #f9f9f9;
  border-bottom: 1px solid #aeaeae;
  border-right: 1px solid #aeaeae;
  padding: 10px 0;
}
.description .description__container dl dt:last-of-type {
  border-bottom: none;
}
.description .description__container dl dd {
  width: 70%;
  border-bottom: 1px solid #aeaeae;
  padding: 10px 0;
}
.description .description__container dl dd:last-of-type {
  border-bottom: none;
}

.sercive-content {
  background-color: #fff2d5;
  padding: 100px 0 94px 0;
}
@media screen and (max-width: 900px) {
  .sercive-content {
    padding: 40px 0;
  }
}
.sercive-content .sercive-content__container {
  max-width: calc(1220px + 4%);
  margin: 0 auto;
  padding: 0 2%;
}
.sercive-content .sercive-content__container .sercive-content__text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .sercive-content .sercive-content__container .sercive-content__text {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.sercive-content .sercive-content__container .sercive-content__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .sercive-content .sercive-content__container .sercive-content__list {
    gap: 10px;
    flex-direction: column;
  }
}
.sercive-content .sercive-content__container .sercive-content__list .sercive-content__list-item {
  font-size: 18px;
  width: 47%;
  text-align: center;
  background-color: #fff;
  padding: 10px 0;
  border-radius: 10px;
  padding: 20px 30px;
  background-color: #ffc954;
}
@media screen and (max-width: 900px) {
  .sercive-content .sercive-content__container .sercive-content__list .sercive-content__list-item {
    width: 100%;
    font-size: 16px;
  }
}

.service-flow {
  padding: 100px 0 140px 0;
}
@media screen and (max-width: 900px) {
  .service-flow {
    padding: 40px 0;
  }
}
.service-flow .service-flow__container {
  max-width: calc(1220px + 4%);
  margin: 0 auto;
  padding: 0 2%;
}
.service-flow .service-flow__container .service-flow__list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .service-flow .service-flow__container .service-flow__list {
    flex-direction: column;
    gap: 50px;
  }
}
.service-flow .service-flow__container .service-flow__list .service-flow__list-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  font-size: 24px;
  width: 15%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .service-flow .service-flow__container .service-flow__list .service-flow__list-item {
    width: 100%;
    font-size: 16px;
  }
}
.service-flow .service-flow__container .service-flow__list .service-flow__list-item::before {
  content: "";
  display: block;
  width: 40px;
  height: 90px;
  background-image: url(image/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: -30px;
}
@media screen and (max-width: 900px) {
  .service-flow .service-flow__container .service-flow__list .service-flow__list-item::before {
    background-image: url(image/arrow-colom.png);
    bottom: 0;
    right: 50%;
    bottom: -44px;
    transform: translateX(50%);
    width: 90px;
    height: 40px;
  }
}
.service-flow .service-flow__container .service-flow__list .service-flow__list-item:last-of-type::before {
  display: none;
}

.greet-text {
  margin-top: 70px;
  margin-bottom: 120px;
}
@media screen and (max-width: 900px) {
  .greet-text {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.greet-text .greet-text__container p {
  font-size: 26px;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .greet-text .greet-text__container p {
    font-size: 18px;
  }
}
.greet-text .greet-text__container .greet-text__text-last {
  text-align: center;
  margin-top: 40px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  margin-left: auto;
}

.greet-summary {
  margin-bottom: 104px;
}
@media screen and (max-width: 900px) {
  .greet-summary {
    margin-bottom: 40px;
  }
}
.greet-summary .greet-summary__container .greet-summary__list {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 104px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.greet-summary .greet-summary__container .greet-summary__list dt {
  font-size: 24px;
  width: 30%;
  color: #e87203;
  background-color: #fff2d5;
  padding: 10px 0;
  border-bottom: 1px solid #aeaeae;
  border-right: 1px solid #aeaeae;
}
@media screen and (max-width: 900px) {
  .greet-summary .greet-summary__container .greet-summary__list dt {
    font-size: 18px;
  }
}
.greet-summary .greet-summary__container .greet-summary__list dt:last-of-type {
  border-bottom: none;
}
.greet-summary .greet-summary__container .greet-summary__list dd {
  font-size: 24px;
  width: 70%;
  text-align: left;
  padding: 10px 0 10px 4%;
  border-bottom: 1px solid #aeaeae;
}
@media screen and (max-width: 900px) {
  .greet-summary .greet-summary__container .greet-summary__list dd {
    font-size: 18px;
  }
}
.greet-summary .greet-summary__container .greet-summary__list dd:last-of-type {
  border-bottom: none;
}

.introduction-content {
  margin-top: 70px;
  margin-bottom: 170px;
}
@media screen and (max-width: 900px) {
  .introduction-content {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.introduction-content .introduction-content__container .introduction-content__list .introduction-content__item {
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .introduction-content .introduction-content__container .introduction-content__list .introduction-content__item {
    margin-bottom: 40px;
  }
}
.introduction-content .introduction-content__container .introduction-content__list .introduction-content__item .introduction-content__title {
  font-size: 40px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-bottom: 1px solid #000000;
}
@media screen and (max-width: 900px) {
  .introduction-content .introduction-content__container .introduction-content__list .introduction-content__item .introduction-content__title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
}
.introduction-content .introduction-content__container .introduction-content__list .introduction-content__item .introduction-content__item-content {
  width: 60%;
  margin: 0 auto;
}
.introduction-content .introduction-content__container .introduction-content__list .introduction-content__item .introduction-content__item-content .introduction-content__item-content-img {
  margin-bottom: 20px;
}
.recruitment-content {
  margin-bottom: 104px;
}
@media screen and (max-width: 900px) {
  .recruitment-content {
    margin-bottom: 40px;
  }
}
.recruitment-content .recruitment-content__container .recruitment-content__list {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 104px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
  .recruitment-content .recruitment-content__container .recruitment-content__list {
    margin-top: 40px;
  }
}
.recruitment-content .recruitment-content__container .recruitment-content__list dt {
  font-size: 24px;
  width: 30%;
  color: #e87203;
  background-color: #fff2d5;
  padding: 14px 0;
  border-bottom: 1px solid #aeaeae;
  border-right: 1px solid #aeaeae;
}
@media screen and (max-width: 900px) {
  .recruitment-content .recruitment-content__container .recruitment-content__list dt {
    font-size: 18px;
  }
}
.recruitment-content .recruitment-content__container .recruitment-content__list dt:last-of-type {
  border-bottom: none;
}
.recruitment-content .recruitment-content__container .recruitment-content__list dd {
  font-size: 24px;
  width: 70%;
  text-align: left;
  padding: 14px 0 14px 4%;
  border-bottom: 1px solid #aeaeae;
}
@media screen and (max-width: 900px) {
  .recruitment-content .recruitment-content__container .recruitment-content__list dd {
    font-size: 18px;
  }
}
.recruitment-content .recruitment-content__container .recruitment-content__list dd:last-of-type {
  border-bottom: none;
}

.contact {
  margin-top: 112px;
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .contact {
    margin-top: 40px;
  }
}
.contact .contact__container .contact__text {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .contact .contact__container .contact__text {
    font-size: 16px;
  }
}
.contact .contact__container .contact__form .contact__form-bg {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact .contact__container .contact__form .contact__form-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 900px) {
  .contact .contact__container .contact__form .contact__form-item {
    flex-direction: column;
  }
}
.contact .contact__container .contact__form .contact__form-item label {
  display: block;
  background-color: #fff2d5;
  padding: 16px 20px;
  color: #ea7303;
  font-size: 20px;
  font-weight: bold;
  width: 30%;
  text-align: center;
  border-bottom: 1px solid #aeaeae;
}
@media screen and (max-width: 900px) {
  .contact .contact__container .contact__form .contact__form-item label {
    width: 100%;
  }
}
.contact .contact__container .contact__form .contact__form-item .contact__form-item-input {
  width: 70%;
  padding: 8px 0;
  border-bottom: 1px solid #aeaeae;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .contact .contact__container .contact__form .contact__form-item .contact__form-item-input {
    width: 100%;
  }
}
.contact .contact__container .contact__form .contact__form-item .contact__form-item-input input {
  padding: 8px 20px;
  width: 80%;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  background-color: #f8f8f8;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .contact .contact__container .contact__form .contact__form-item .contact__form-item-input input {
    width: 90%;
  }
}
.contact .contact__container .contact__form .contact__form-item .contact__form-item-textarea-box {
  width: 70%;
  padding: 8px 0;
  border-bottom: 1px solid #aeaeae;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .contact .contact__container .contact__form .contact__form-item .contact__form-item-textarea-box {
    width: 100%;
  }
}
.contact .contact__container .contact__form .contact__form-item .contact__form-item-textarea-box label {
  height: 246px;
  width: 30%;
}
.contact .contact__container .contact__form .contact__form-item .contact__form-item-textarea-box textarea {
  padding: 8px 20px;
  width: 80%;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  background-color: #f8f8f8;
  text-align: left;
}
.contact .contact__container .contact__form .contact__form-item.contact__form-item-textarea label {
  height: 263px;
}
@media screen and (max-width: 900px) {
  .contact .contact__container .contact__form .contact__form-item.contact__form-item-textarea label {
    height: auto;
  }
}
.contact .contact__container .contact__form .contact__form-btn {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 84px auto 0 auto;
  padding: 16px 0px;
  width: 400px;
  font-size: 20px;
  font-weight: bold;
  background-color: #fea000;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
}
.contact .contact__container .contact__form .contact__form-btn:hover {
  background-color: #e87203;
}
@media screen and (max-width: 900px) {
  .contact .contact__container .contact__form .contact__form-btn {
    width: 100%;
  }
}

.QA {
  margin-top: 80px;
  margin-bottom: 100px;
}
.QA .QA__list .QA__item {
  margin-bottom: 20px;
  background-color: #fff2d5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
}
@media screen and (max-width: 900px) {
  .QA .QA__list .QA__item {
    padding: 20px;
  }
}
.QA .QA__list .QA__item .QA__item-title {
  font-size: 24px;
  color: #e97303;
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
  padding-top: 10px;
}
@media screen and (max-width: 900px) {
  .QA .QA__list .QA__item .QA__item-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-top: 0;
  }
}
.QA .QA__list .QA__item .QA__item-title::before {
  content: "Q";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #e97303;
  width: 40px;
  height: 40px;
  font-size: 40px;
  font-family: "Linden Hill", serif;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}
@media screen and (max-width: 900px) {
  .QA .QA__list .QA__item .QA__item-title::before {
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
  }
}
.QA .QA__list .QA__item .QA__item-text {
  font-size: 24px;
  position: relative;
  color: #000000;
  padding-left: 50px;
  padding-top: 10px;
}
@media screen and (max-width: 900px) {
  .QA .QA__list .QA__item .QA__item-text {
    font-size: 18px;
    padding-top: 0;
  }
}
.QA .QA__list .QA__item .QA__item-text::before {
  content: "A";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #646464;
  width: 40px;
  height: 40px;
  font-size: 40px;
  font-family: "Linden Hill", serif;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}
@media screen and (max-width: 900px) {
  .QA .QA__list .QA__item .QA__item-text::before {
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
  }
}

.archive {
  margin-top: 100px;
  margin-bottom: 100px;
}
.archive .archive__container .archive__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
}
@media screen and (max-width: 900px) {
  .archive .archive__container .archive__list {
    flex-direction: column;
  }
}
.archive .archive__container .archive__list .archive__item {
  width: 48%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media screen and (max-width: 900px) {
  .archive .archive__container .archive__list .archive__item {
    width: 100%;
  }
}
.archive .archive__container .archive__list .archive__item .archive__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive .archive__container .archive__list .archive__item .archive__item-content {
  text-align: left;
}
.archive .archive__container .archive__list .archive__item .archive__item-content .archive__item-content-title {
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.archive .archive__container .archive__list .archive__item .archive__item-content .archive__item-content-text {
  font-size: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical; /* 垂直方向に配置 */
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 5;
}

.single {
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 0 2%;
}
.single .single__container {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.single .single__container .single__title {
  font-size: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .single .single__container .single__title {
    font-size: 24px;
  }
}
.single .single__container .single__text {
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 900px) {
  .single .single__container .single__text {
    font-size: 18px;
  }
}
.single .single__container .single__img {
  width: 60%;
  margin: 0 auto 40px auto;
}
.single .single__container .single__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single .single__btn {
  margin-top: 40px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */