@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*767px以下*/
@media screen and (max-width: 767px) {
}

/*480px以下*/
@media screen and (max-width: 480px) {
}

/*------------------------------------------------------------------
#font 
-------------------------------------------------------------------*/
/* @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&display=swap'); */

/*------------------------------------------------------------------
#共通
-------------------------------------------------------------------*/

* {
  /* outline: 2px solid red; */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
  overflow-x: hidden;
  background-color: #fff;
  overflow-x: scroll;
  color: #1a1a1a;
  line-height: 1.7;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

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

a.textlink,
.page-id-143 .has-fixed-layout td a{
  text-decoration: underline;
  color:#fea01c;
  font-weight: 600;
}

a.textlink:hover,
.page-id-143 .has-fixed-layout td a:hover{
  color:#FEC468;
  transition: 0.2s ease-in-out;
}

:root :where(a:where(:not(.wp-element-button))) {
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

/* 767px以下 */
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .hidden-tab {
    display: none;
  }
}

/* 1024px以上 */
@media screen and (min-width: 1024px) {
  .hidden-pc {
    display: none;
  }
}

/*------------------------------------------------------------------
#breadcrumb
-------------------------------------------------------------------*/
.breadcrumb {
  font-size: 14px;
  margin: 230px auto 0;
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  text-align: left;
  color: #000;
}

.breadcrumb span[property="name"] {
  color: #000;
  display: inline-block;
  padding: 0;
  margin-top: -3px;
  vertical-align: middle;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-inline: 5px;
  border-bottom: 1px solid #fff;
}

.breadcrumb span .current-item {
  border-bottom: 1px solid #000;
}

.breadcrumb__wrap {
  background-color: #f9f5ed;
}

@media screen and (max-width: 1310px) {
  .breadcrumb {
    margin: 140px auto 0;
  }
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
  .breadcrumb {
    margin: 120px auto 0;
  }
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin: 85px auto 0;
  }
}

/*------------------------------------------------------------------
#pagination
-------------------------------------------------------------------*/
.l-pager {
  margin-top: 60px;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers {
  background-color: #fff;
  color: #231815;
  border: 1px solid #0f1b60;
  font-size: 35px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  padding-bottom: 3px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition:
    background 0.3s,
    color 0.3s;
}

.page-numbers:hover {
  background-color: #0f1b60;
  color: #fff;
}

.page-numbers.current {
  background-color: #0f1b60;
  border: 1px solid transparent;
  color: #fff;
}

.page-numbers.dots {
  border: 1px solid transparent;
  background-color: transparent;
  color: #0f1b60;
  opacity: 1;
}

.prev.page-numbers,
.next.page-numbers {
  font-size: 55px;
  letter-spacing: 0.1em;
  width: 50px;
  height: 50px;
  color: #0f1b60;
  border: 1px solid transparent;
}

.prev.page-numbers:hover,
.next.page-numbers:hover {
  background-color: transparent;
  opacity: 0.8;
}

.prev-content span,
.next-content span {
  padding-bottom: 5px;
  border-bottom: 1px solid #0f1b60;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*767px以下*/
@media screen and (max-width: 767px) {
}

/*------------------------------------------------------------------
#前の記事・次の記事
-------------------------------------------------------------------*/
.single-pager {
  position: relative;
  margin-top: 50px;
  min-height: 100px;
}

.single-pager__prev {
  position: absolute;
  left: calc(50% - 350px);
}

.single-pager__next {
  position: absolute;
  right: calc(50% - 350px);
}

.single-pager__prev a,
.single-pager__next a {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 18px 40px;
  color: #fff;
  background-color: #0f1b60;
  border: 2px solid transparent;
  border-radius: 10px;
  transition:
    color 0.3s,
    background-color 0.3s;
  position: relative;
  text-decoration: none;
}

.single-pager__prev a:hover,
.single-pager__next a:hover {
  color: #0f1b60;
  background-color: #fff;
  border: 2px solid #0f1b60;
}

.single-pager__prev a::before,
.single-pager__next a::before {
  position: absolute;
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background-color: #0f1b60;
  bottom: 20px;
  left: calc(50% - 60px);
  opacity: 0;
  transition: opacity 0.3s;
}

.single-pager__prev a:after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  left: 70px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: background 0.3s;
}

.single-pager__next a:after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.single-pager__prev a:hover::after {
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
}

.single-pager__next a:hover::after {
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
}

.single-pager__prev a:hover::before {
  opacity: 1;
}

.single-pager__next a:hover::before {
  opacity: 1;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .single-pager__prev {
    position: absolute;
    left: calc(50% - 220px);
  }

  .single-pager__next {
    position: absolute;
    right: calc(50% - 220px);
  }

  .single-pager__prev a,
  .single-pager__next a {
    font-size: 16px;
    width: 200px;
    padding: 18px;
  }

  .single-pager__prev a::before,
  .single-pager__next a::before {
    width: 80px;
    bottom: 15px;
    left: calc(50% - 40px);
  }

  .single-pager__prev a:after {
    left: 35px;
  }

  .single-pager__next a:after {
    right: 35px;
  }
}

/*------------------------------------------------------------------
#lower-top
-------------------------------------------------------------------*/
.lower-top {
  height: 320px;
  margin: 100px auto 0;
  max-width: 100%;
  position: relative;
}

.lower-top::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/lower-bg.jpg) no-repeat center center/cover;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.lower-top.single::before {
  background: url(./image/lower-top-single.jpg) no-repeat center center/cover;
}

.lower-top__heading {
  color: #fff;
  font-size: 44px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 80%;
  max-width: 1440px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.lower-top.single {
  margin-top: 155px;
}

.lower-top__heading.single {
  line-height: 1.38;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .lower-top {
    margin-top: 100px;
  }
  .lower-top.single {
    margin-top: 130px;
  }

  .lower-top__heading {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .lower-top {
    margin-top: 60px;
    height: 240px;
  }

  .lower-top.single {
    margin-top: 100px;
  }

  .lower-top__heading {
    font-size: 34px;
    width: 75%;
  }

  .lower-top__heading.single {
    font-size: 34px;
  }
}

/*------------------------------------------------------------------
#TOPへ
-------------------------------------------------------------------*/
.topBtn {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: block;
  box-sizing: border-box;
  z-index: 10;
}

.topBtn::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-up.png) no-repeat center center / cover;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.go-to-top-button {
  display: none;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*767px以下*/
@media screen and (max-width: 767px) {
}

/*------------------------------------------------------------------
#共通ボタン
-------------------------------------------------------------------*/

.common__button {
  margin: 60px auto 0;
  text-align: center;
}

.common__button-link {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 350px;
  max-width: 100%;
  padding: 23px 40px;
  color: #fff;
  background-color: #0f1b60;
  border: 2px solid transparent;
  border-radius: 10px;
  transition:
    color 0.3s,
    background-color 0.3s;
  position: relative;
  text-decoration: none;
}

.common__button-link:hover {
  color: #0f1b60;
  background-color: #fff;
  border: 2px solid #0f1b60;
}

.common__button-link::before {
  position: absolute;
  content: "";
  width: 140px;
  height: 2px;
  display: inline-block;
  background-color: #0f1b60;
  bottom: 25px;
  left: calc(50% - 70px);
  opacity: 0;
  transition: opacity 0.3s;
}

.common__button-link:after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.common__button-link:hover::after {
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
}

.common__button-link:hover::before {
  opacity: 1;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*------------------------------------------------------------------
#section-title
-------------------------------------------------------------------*/

.section__title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.96px;
  text-align: center;
  position: relative;
}

.section__title::before {
  position: absolute;
  content: "";
  bottom: -30px;
  left: calc(50% - 50px);
  width: 100px;
  height: 10px;
  border-radius: 2px;
  background: #0f1b60;
}

/* heading */
.heading1 {
  padding-bottom: 10px;
  border-bottom: 4px solid #0f1b60;
  font-weight: 500;
}

.heading1-en {
  display: block;
  font-size: 22px;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: 0.44px;
  color: #fea01c;
}

.heading1-ja {
  display: block;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: 0.76px;
}

.heading2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.68px;
  padding-bottom: 5px;
  border-bottom: 3px solid #0f1b60;
  width: fit-content;
  position: relative;
  display: table;
}

.heading2 .en {
  font-family: "Roboto Condensed";
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #0f1b60;
}

.heading2 .number {
  font-family: "Roboto Condensed";
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 1.28px;
  color: #0f1b60;
}

.heading2::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: #fea01c;
}

@-moz-document url-prefix() {
  .heading2::before {
    bottom: 0;
  }
}

.heading3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0.6px;
  padding: 5px 10px;
  border-left: 4px solid #0f1b60;
  position: relative;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
  .section__title {
    font-size: 38px;
  }
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 28px;
    line-height: 1.3;
  }

  .section__title::before {
    bottom: -20px;
    left: calc(50% - 40px);
    width: 80px;
    height: 10px;
  }

  .heading1-ja {
    font-size: 28px;
  }

  .heading2 {
    font-size: 26px;
    line-height: 40px;
  }

  .heading2::before {
    width: 65px;
  }

  .heading2 .en {
    font-size: 30px;
  }

  .heading2 .number {
    font-size: 40px;
  }

  .heading3 {
    font-size: 24px;
    margin-top: 20px;
  }
}

/*------------------------------------------------------------------
#header
-------------------------------------------------------------------*/
.l-wrapper {
  position: relative;
  overflow: hidden;
}

.header {
  background-color: #fff;
  height: 210px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header__inner {
  padding-inline: 20px;
  max-width: calc(1440px + 20px * 2);
  margin-inline: auto;
}

.header__top {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.header__top-text {
  font-size: 16px;
}

.header__top-sitemap {
  font-size: 16px;
}

.header__middle {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}

.header__left {
  margin-right: auto;
}

picture {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__logo {
  width: 650px;
}

.header__logo-link {
  display: block;
  transition: opacity 0.3s;
}

.header__logo-link:hover {
  opacity: 0.7;
}

.header__left_text{
  display: flex;
  gap:30px;
}

.header__middle-text {
  font-size: 16px;
}

.header__right {
  margin-left: auto;
}

.header__tel-link {
  display: inline-block;
  width: 333px;
  height: inherit;
  transition: opacity 0.3s;
}

.header__tel-link:hover {
  opacity: 0.7;
}

.header__mail-link {
  display: inline-block;
  width: 270px;
  height: inherit;
  margin-left: 10px;
  transition: opacity 0.3s;
}

.header__mail-link:hover {
  opacity: 0.7;
}

.header-nav {
  background: #0f1b60;
}

.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  padding-inline: 20px;
  max-width: calc(1240px + 20px * 2);
  margin-inline: auto;
  height: inherit;
}

.header-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}

.header-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  position: relative;
}

.header-nav__link::after {
  background-color: #fff;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
  width: 100%;
}

.header-nav__link:hover {
  color: #fff;
}

.header-nav__link:hover::after {
  transform: scale(1, 1);
}

@media screen and (max-width: 1310px) {
  .header {
    height: 127px;
  }
  .header__top {
    display: none;
  }
  .header__left_text{
    flex-direction: row-reverse;
  }

  .header__middle-text {
    display: none;
  }

   .header__middle-text.unei{
    display: block;
   }

  .header-nav {
    display: none;
  }

  .header__right {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .header {
    height: 107px;
  }

  .header__top {
    display: none;
  }

  .header__logo {
    width: 550px;
  }

  .header__middle-text {
    display: none;
  }

  .header__middle-text.unei{
    font-size: 14px;
  }

  .header-nav {
    display: none;
  }

  .header__right {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header {
    height: 79px;
  }

  .header__top {
    display: none;
  }

  .header__logo {
    width: 370px;
  }

  .header__middle-text {
    display: none;
  }

  .header-nav {
    display: none;
  }

  .header__right {
    display: none;
  }
}

/*------------------------------------------------------------------
#drawer
-------------------------------------------------------------------*/

.drawer__icon {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  position: fixed;
  right: 10px;
  top: 30px;
  transition: transform 0.5s;
  width: 70px;
  height: 50px;
  z-index: 500;
  background-color: transparent;
  border-radius: 5px;
}

.drawer__icon.is-active .drawer-icon__bar1 {
  background-color: #fff;
  top: 25px;
  transform: rotate(-45deg);
}

.drawer__icon.is-active .drawer-icon__bar2 {
  display: none;
}

.drawer__icon.is-active .drawer-icon__bar3 {
  background-color: #fff;
  top: 25px;
  transform: rotate(45deg);
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  background-color: #0f1b60;
  height: 3px;
  left: 20px;
  top: 15px;
  transition: transform 0.5s;
  width: 30px;
}

.drawer-icon__bar1 {
  top: 15px;
}

.drawer-icon__bar2 {
  top: 25px;
}

.drawer-icon__bar3 {
  top: 35px;
}

.js-drawer__icon-mail.is-active {
  opacity: 0;
}

.drawer-icon__mail {
  position: fixed;
  right: 90px;
  top: 12px;
  width: 40px;
  height: 40px;
  z-index: 500;
  opacity: 0;
}

.drawer-icon__mail-link {
}

.drawer-icon__mail-link img {
  width: 40px;
  height: 40px;
}

.drawer__content {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #0f1b60;
  overflow: auto;
  pointer-events: none;
  right: 0;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 400;
}

.drawer__inner {
  padding-inline: 70px;
  max-width: calc(500px + 70px * 2);
  margin-inline: auto;
}

.drawer__content.is-active {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.drawer__header {
  background-color: #0f1b60;
  height: 60px;
}

.drawer__logo-link {
  display: inline-flex;
  align-items: flex-end;
  justify-content: start;
  height: inherit;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.drawer__logo-link img {
  /* width: 140px; */
}

.drawer-nav__list {
  margin-top: 50px;
  max-width: 500px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 50px;
}

.drawer-nav__item {
}

.drawer-nav__link {
  font-size: 20px;
  color: #fff;
  display: block;
  padding-left: 20px;
  position: relative;
}

.drawer-nav__link:hover {
  color: #fff;
}

.drawer-nav__link::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/drawer-icon.png) no-repeat center center / cover;
  width: 12px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.drawer-sub__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 500px;
  margin-top: 50px;
}

.drawer-sub__item {
}

.drawer-sub__link {
  display: block;
  font-size: 20px;
  color: #fff;
}

.drawer-sub__link:hover {
  color: #fff;
}

.drawer__mail {
  margin-top: 70px;
  margin-bottom: 70px;
  text-align: center;
}

.drawer__mail img {
  width: 300px;
}

@media screen and (max-width: 1310px) {
  .drawer__icon {
    display: block;
    top: 30px;
  }

  .drawer__header {
    height: 100px;
  }
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
  .drawer__icon {
    display: block;
    top: 20px;
  }
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .drawer__icon {
    display: block;
    top: 10px;
  }

  .drawer__header {
    height: 60px;
  }
}

/*------------------------------------------------------------------
#footer
-------------------------------------------------------------------*/

.footer-top {
  padding-inline: 20px;
  max-width: calc(1320px + 20px * 2);
  margin-inline: auto;
}

.footer-top__list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer-top__item {
  width: fit-content;
  padding: 0 20px;
  border-right: 1px solid #1a1a1a;
  line-height: 1.2;
}

.footer-top__item:last-child {
  border-right: none;
}

.footer-top__link {
  font-size: 16px;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.footer-top__link:hover {
  text-decoration: underline;
  text-decoration-color: #1a1a1a;
}

.footer-nav {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
  margin-bottom: 30px;
  padding-top: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}

.footer-nav__list {
  display: flex;
  justify-content: space-between;
  padding-inline: 100px;
}

.footer-nav__item {
}

.footer-nav__item:nth-child(2) {
  margin-top: 20px;
}

.footer-nav__link {
  display: block;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  transition: opacity 0.7s;
}

.footer-nav__link:hover {
  opacity: 0.7;
  color: #fff;
}

.footer-sub__list {
}

.footer-sub__link {
  display: block;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  transition: opacity 0.7s;
}

.footer-sub__link:hover {
  opacity: 0.7;
  color: #fff;
}

.footer {
  margin-top: 10px;
  padding-top: 30px;
  background-color: #0f1b60;
}

.footer__inner {
  margin-inline: auto;
}

.footer__logo {
  text-align: center;
}

.footer__logo img {
  width: 800px;
  transition: opacity 0.3s;
}

.footer__logo img:hover {
  opacity: 0.7;
}

.footer__logo-link {
  display: block;
}
.footer__unei{
  display: flex;
  justify-content: center;
  margin-top:8px;
}
.footer__unei span{
  color:#fff;
}
.footer__unei img{
  object-fit: contain;
}
.footer__address {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}

.footer__tel {
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.footer__time {
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.copyright {
  text-align: center;
  background-color: #1a1a1a;
  padding-block: 10px;
  margin-top: 30px;
}

.copyright__text {
  font-size: 16px;
  color: #fff;
}

.footer__cat {
  display: none;
}

.mobile-footer-menu-buttons {
  display: none;
}

@media screen and (max-width: 1023px) {
  .footer-nav__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    padding-inline: 100px;
    max-width: 800px;
    margin: 0 auto;
  }

  .footer__logo img {
    width: 600px;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
    padding-inline: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer__logo img {
    width: 400px;
  }
}

/*------------------------------------------------------------------
#mv
-------------------------------------------------------------------*/
.mv {
  margin-top: 210px;
  height: 750px;
}

.mv__inner {
  margin-inline: auto;
  position: relative;
  height: inherit;
  background: url(../cocoon-master/images/mv-img.jpg) no-repeat center center / cover;
}

.mv__title {
  position: absolute;
  top: 20%;
  left: 20px;
  font-size: 56px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -1.2px;
}

.mv__read {
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 2;
  color: #fff;
  position: absolute;
  top: 47%;
  left: 20px;
  border-top: 1px solid #fff;
  padding-top: 15px;
}

@media screen and (max-width: 1440px) {
  .mv__title {
    position: absolute;
    top: 20%;
    left: 25px;
    font-size: 52px;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -1.2px;
  }

  .mv__read {
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 2;
    color: #fff;
    position: absolute;
    top: 47%;
    left: 25px;
    border-top: 1px solid #fff;
    padding-top: 15px;
  }
}

@media screen and (max-width: 1310px) {
  .mv {
    margin-top: 112px;
  }

  .mv__title {
    position: absolute;
    top: 15%;
    left: 25px;
    font-size: 44px;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -1.2px;
  }

  .mv__read {
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 2;
    color: #fff;
    position: absolute;
    top: 35%;
    left: 25px;
    border-top: 1px solid #fff;
    padding-top: 15px;
  }
}

@media screen and (max-width: 1023px) {
  .mv {
    margin-top: 98px;
  }

  .mv__title {
    font-size: 34px;
  }

  .mv__read {
    font-size: 18px;
    top: 35%;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    margin-top: 70px;
    height: 650px;
  }

  .mv__inner {
    background: url(../cocoon-master/images/mv-img_sp.jpg) no-repeat center center / cover;
  }

  .mv__title {
    font-size: 27px;
    top: 15%;
  }

  .mv__read {
    font-size: 14px;
    top: 29%;
  }
}

/*------------------------------------------------------------------
#top-future
-------------------------------------------------------------------*/
.top-trouble {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}

.top-trouble__inner {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}

.top-trouble__area1 {
  display: flex;
  margin-top: 60px;
  height: 465px;
}

.top-trouble__left {
  width: 48%;
}

.top-trouble__list {
  padding: 30px;
  border: 1.5px solid #0f1b60;
  box-shadow: 15px 15px 0px 0px #0f1b60;
  background-color: #fff;
  position: absolute;
  left: 120px;
  top: 180px;
  width: 660px;
}

.top-trouble__item {
  font-size: 21px;
  padding-left: 50px;
  margin-top: 20px;
  position: relative;
}

.top-trouble__item:first-child {
  margin-top: 0px;
}

.top-trouble__item::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/top-trouble-check.png) no-repeat center center / cover;
  width: 28px;
  height: 26px;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.top-trouble__img {
  width: 52%;
}

.top-trouble__img img {
  aspect-ratio: 740 / 468;
  object-fit: cover;
}

.top-trouble__area2 {
  margin: 60px auto 0;
  width: 75%;
}

.top-trouble__area2 img {
}

.top-trouble__area3 {
  max-width: 1440px;
  padding-top: 70px;
  padding-bottom: 100px;
  background: url(../cocoon-master/images/top-trouble-img3.png) no-repeat center center / cover;
  margin: 0 auto;
  margin-top: -30px;
}

.top-trouble__text1 {
  text-align: center;
  font-size: 45px;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 8px solid #fff600;
  width: fit-content;
  margin: 0 auto;
}

.top-trouble__text2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
  font-weight: 700;
  margin-top: 30px;
}

.top-trouble__text2::before,
.top-trouble__text2::after {
  display: inline-block;
  background-color: #fff;
  content: "";
  height: 2px;
  width: 30px;
}

.top-trouble__text2::before {
  margin-right: 5px;
  transform: rotate(60deg);
}
.top-trouble__text2::after {
  margin-right: 5px;
  transform: rotate(-60deg);
}

.top-trouble__text3 {
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  padding: 20px;
  border: 2px solid #fff;
  width: fit-content;
  margin: 30px auto 0;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
  .top-trouble__inner {
    padding-inline: 20px;
  }

  .top-trouble__area1 {
    display: block;
    height: auto;
    margin: 70px auto 0;
  }

  .top-trouble__left {
    width: 100%;
  }

  .top-trouble__list {
    position: relative;
    box-shadow: 10px 10px 0px 0px #0f1b60;
    padding: 30px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    width: 80%;
  }

  .top-trouble__item {
    margin-top: 30px;
    font-size: 16px;
    padding-left: 50px;
    margin-top: 25px;
    position: relative;
  }

  .top-trouble__img {
    width: 80%;
    margin: 30px auto 0;
  }

  .top-trouble__text1 {
    font-size: 36px;
  }

  .top-trouble__text2 {
    font-size: 20px;
  }

  .top-trouble__text3 {
    font-size: 15px;
  }
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .top-trouble {
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .top-trouble__inner {
    padding-inline: 20px;
  }

  .top-trouble__area1 {
    display: block;
    height: auto;
    margin-top: 70px;
  }

  .top-trouble__left {
    width: 100%;
  }

  .top-trouble__list {
    position: relative;
    box-shadow: 10px 10px 0px 0px #0f1b60;
  }

  .top-trouble__item {
    margin-top: 30px;
  }

  .top-trouble__img {
    width: 100%;
    margin-top: 20px;
  }

  .top-trouble__list {
    padding: 30px;
    top: auto;
    width: 100%;
  }

  .top-trouble__item {
    font-size: 16px;
    padding-left: 50px;
    margin-top: 25px;
    position: relative;
  }

  .top-trouble__area2 {
    margin: 30px auto 0;
    width: 90%;
  }

  .top-trouble__area3 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .top-trouble__text1 {
    font-size: 18px;
    border-bottom: 3px solid #fff600;
  }

  .top-trouble__text2 {
    font-size: 12px;
    margin-top: 10px;
  }

  .top-trouble__text2::before,
  .top-trouble__text2::after {
    display: inline-block;
    background-color: #fff;
    content: "";
    height: 2px;
    width: 15px;
  }

  .top-trouble__text2::before {
    margin-right: 1px;
    transform: rotate(60deg);
  }
  .top-trouble__text2::after {
    margin-right: 1px;
    transform: rotate(-60deg);
  }

  .top-trouble__text3 {
    font-size: 13px;
    padding: 5px;
    border: 1px solid #fff;
    width: fit-content;
    margin: 10px auto 0;
    width: 370px;
  }
}

/*------------------------------------------------------------------
#top-reason
-------------------------------------------------------------------*/
.top-reason {
  padding-top: 90px;
  padding-bottom: 80px;
}

.top-reason__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.top-reason__list {
  margin-top: 100px;
}

.top-reason__item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

.top-reason__img {
  width: 48%;
}

.top-reason__img img {
  aspect-ratio: 560 / 345;
  object-fit: cover;
}

.top-reason__contents {
  width: 48%;
  margin-top: 60px;
}

.top-reason__subtitle {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.4;
  padding-left: 10px;
  border-left: 5px solid #0f1b60;
  width: fit-content;
  position: relative;
}

.top-reason__subtitle::before {
  position: absolute;
  content: "";
  width: 65px;
  height: 70px;
  top: -70px;
  left: -20px;
}

.top-reason__subtitle1::before {
  background: url(../cocoon-master/images/top-reason-icon1.png) no-repeat center center / cover;
}

.top-reason__subtitle2::before {
  background: url(../cocoon-master/images/top-reason-icon2.png) no-repeat center center / cover;
}

.top-reason__subtitle3::before {
  background: url(../cocoon-master/images/top-reason-icon3.png) no-repeat center center / cover;
}

.top-reason__subtitle span {
  border-bottom: 4px solid #fff600;
  line-height: 1.4;
}

.top-reason_text {
  margin-top: 22px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1023px) {
  .top-reason__list {
    margin-top: 120px;
  }

  .top-reason__item {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 80px;
  }

  .top-reason__subtitle {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .top-reason {
    padding-top: 0px;
    padding-bottom: 50px;
  }

  .top-reason__list {
    margin-top: 50px;
  }

  .top-reason__item {
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 5px;
    margin-top: 15px;
  }

  .top-reason__contents {
    margin-top: 0px;
  }

  .top-reason__subtitle {
    font-size: 22px;
    border-left: none;
    width: fit-content;
    padding-left: 50px;
    margin-top: 50px;
  }

  .top-reason__subtitle::before {
    width: 45px;
    height: 40px;
    top: 0;
    left: 0;
  }

  .top-reason__subtitle1::before {
    background: url(../cocoon-master/images/top-reason-icon1_sp.png) no-repeat center center / cover;
  }

  .top-reason__subtitle2::before {
    background: url(../cocoon-master/images/top-reason-icon2_sp.png) no-repeat center center / cover;
  }

  .top-reason__subtitle3::before {
    background: url(../cocoon-master/images/top-reason-icon3_sp.png) no-repeat center center / cover;
  }

  .top-reason_text {
    font-size: 15px;
    margin-top: 0;
  }
}

/*------------------------------------------------------------------
#top-cta
-------------------------------------------------------------------*/
.top-cta {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(../cocoon-master/images/top-cta-bg.jpg) no-repeat center center / cover;
}

.top-cta__inner {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.top-cta__inner::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/top-cta-img4.png) no-repeat center center / cover;
  width: 305px;
  height: 430px;
  right: 0;
  bottom: -78px;
  z-index: -1;
}

.top-cta__img {
  text-align: center;
}

.top-cta__img picture {
  display: block;
}

.top-cta__img img:nth-child(1) {
  width: 67%;
}

.top-cta__img img:nth-child(2) {
  width: 55%;
  margin-top: 40px;
}

.top-cta__img img:nth-child(3) {
  width: 47%;
}

.top-cta__buttonWrap {
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.top-cta__button-consultation {
}

.top-cta__button-consultation a {
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
  width: 400px;
  max-width: 100%;
  padding: 28px 50px;
  text-align: left;
  color: #fea01c;
  background-color: #fff;
  box-shadow: 5px 5px 0px 0px #992c11;
  transition: opacity 0.3s;
  position: relative;
}

.top-cta__button-consultation a:hover {
  opacity: 0.95;
  text-decoration: underline;
  text-decoration-color: #fea01c;
}

.top-cta__button-consultation a::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-orange.png) no-repeat center center / cover;
  width: 20px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
}

.top-cta__button-assessment {
}

.top-cta__button-assessment a {
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
  width: 400px;
  max-width: 100%;
  padding: 28px 50px;
  text-align: left;
  color: #fff;
  background-color: #fea01c;
  box-shadow: 5px 5px 0px 0px #992c11;
  transition: opacity 0.3s;
  position: relative;
}

.top-cta__button-assessment a:hover {
  opacity: 0.95;
  text-decoration: underline;
  text-decoration-color: #fff;
}

@-moz-document url-prefix() {
  .top-cta__button-consultation a:hover {
    text-decoration-thickness: 2px;
  }

  .top-cta__button-assessment a:hover {
    text-decoration-thickness: 2px;
  }
}

.top-cta__button-assessment a::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
  width: 20px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}

@media screen and (max-width: 1023px) {
  .top-cta__inner::before {
    width: 200px;
    height: 300px;
  }

  .top-cta__button-consultation a {
    font-size: 20px;
    width: 320px;
    padding: 20px 50px;
    text-align: left;
    box-shadow: 5px 5px 0px 0px #992c11;
  }

  .top-cta__button-assessment a {
    font-size: 20px;
    width: 320px;
    max-width: 100%;
    padding: 20px 50px;
    box-shadow: 5px 5px 0px 0px #992c11;
  }
}

@media screen and (max-width: 767px) {
  .top-cta {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .top-cta__inner::before {
    width: 110px;
    height: 150px;
    bottom: -28px;
  }

  .top-cta__img img:nth-child(1) {
    width: 75%;
  }

  .top-cta__img img:nth-child(2) {
    width: 70%;
    margin-top: 20px;
  }

  .top-cta__img img:nth-child(3) {
    width: 68%;
  }

  .top-cta__buttonWrap {
    margin: 20px auto 0;
    display: block;
    text-align: center;
  }

  .top-cta__button-consultation a {
    font-size: 16px;
    width: 260px;
    padding: 15px 50px;
    text-align: left;
    box-shadow: 2px 2px 0px 0px #992c11;
  }

  .top-cta__button-consultation a::after {
    width: 10px;
    height: 15px;
    right: 65px;
  }

  .top-cta__button-assessment a {
    font-size: 16px;
    width: 260px;
    max-width: 100%;
    padding: 15px 50px;
    box-shadow: 2px 2px 0px 0px #992c11;
    margin-top: 15px;
  }

  .top-cta__button-assessment a::after {
    width: 10px;
    height: 15px;
    right: 50px;
  }
}

/*------------------------------------------------------------------
#top-support
-------------------------------------------------------------------*/
.top-support {
  padding-top: 50px;
  padding-bottom: 100px;
}

.top-support__inner {
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
}

.section__title {
}

.top-support__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.top-support__link {
  display: block;
  transition: opacity 0.3s;
}

.top-support__link:hover {
  opacity: 0.7;
}

.top-support__item {
  box-shadow: 6px 6px 0px 0px #0f1b60;
  position: relative;
}

.top-support__item::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/top-support-icon.png) no-repeat center center / cover;
  width: 30px;
  height: 30px;
  bottom: 10px;
  right: 10px;
}

.top-support__img {
}

.top-support__tag {
  position: absolute;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #fea01c;
  padding: 5px 10px;
  top: 0;
  left: 0;
}

.top-support__bottom {
  text-align: right;
  margin-top: -200px;
}

.top-support__bottom picture {
  display: block;
}

.top-support__bottom img {
  width: 60%;
  height: auto;
}

@media screen and (max-width: 1023px) {
  .top-support__tag {
    font-size: 16px;
    padding: 5px 10px;
  }

  .top-support__bottom {
    margin-top: -170px;
  }
}

@media screen and (max-width: 767px) {
  .top-support {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .top-support__list {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 25px;
  }

  .top-support__item::after {
    width: 18px;
    height: 18px;
    bottom: 6px;
    right: 6px;
  }

  .top-support__tag {
    font-size: 15px;
    padding: 3px 8px;
  }

  .top-support__bottom {
    text-align: center;
    margin-top: 30px;
  }

  .top-support__bottom img {
    width: 100%;
    height: auto;
  }
}

/*------------------------------------------------------------------
#top-works
-------------------------------------------------------------------*/
.top-works {
  padding-top: 90px;
  padding-bottom: 80px;
  background: url(../cocoon-master/images/top-works-bg.jpg) no-repeat center center / cover;
}

.top-works__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.top-works__title {
  color: #fff;
}

.top-works__title::before {
  background-color: #fff;
}

.top-works__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.top-works__link:hover{
  background-color: rgb(255, 255, 255);
}

.top-works__item:hover {
  opacity: .7;
}

.top-works__img {
}

.top-works__img img {
  object-fit: cover;
}

.top-works__contents {
  padding: 15px;
  background-color: #fff;
}

.top-works__subtitle {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #0f1b60;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.top-works__subtitle span {
  font-size: 16px;
  font-weight: 500;
}

.top-works__text {
  font-size: 16px;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.top-works__city {
  font-size: 16px;
  margin: 0 auto;
  padding-left: 20px;
  width: fit-content;
  position: relative;
}

.top-works__city::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/city-icon.png) no-repeat center center / cover;
  width: 12px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}

.top-works__button {
  margin: 60px auto 0;
  text-align: center;
}

.top-works__button-link {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 350px;
  max-width: 100%;
  padding: 25px 40px;
  color: #0f1b60;
  background-color: #fff;
  border-radius: 10px;
  transition:
    color 0.3s,
    background-color 0.3s;
  position: relative;
  text-decoration: none;
}

.top-works__button-link:hover {
  color: #fff;
  background-color: #0f1b60;
}

.top-works__button-link::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 2px;
  display: inline-block;
  background-color: #fff;
  bottom: 25px;
  left: calc(50% - 55px);
  opacity: 0;
  transition: opacity 0.3s;
}

.top-works__button-link:after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.top-works__button-link:hover::after {
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
}

.top-works__button-link:hover::before {
  opacity: 1;
}

@media screen and (max-width: 1023px) {
  .top-works__list {
    gap: 15px;
  }
}

@media screen and (max-width: 767px) {
  .top-works {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .top-works__contents {
    padding: 5px 20px;
  }

  .top-works__subtitle {
    font-size: 18px;
    padding-bottom: 0;
  }

  .top-works__subtitle span {
    font-size: 13px;
  }

  .top-works__list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }

  .top-works__text {
    font-size: 15px;
  }

  .top-works__city {
    font-size: 15px;
  }

  .top-works__button {
    margin: 40px auto 0;
    text-align: center;
  }

  .top-works__button-link {
    width: 300px;
    padding: 20px 40px;
  }

  .top-works__button-link:after {
    right: 60px;
    top: 50%;
  }
}

/*------------------------------------------------------------------
#top-flow
-------------------------------------------------------------------*/
.top-flow {
  padding-top: 90px;
  padding-bottom: 90px;
}

.top-flow__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.top-flow__img {
  margin-top: 80px;
  width: 100%;
}

.top-flow__button {
  margin: 60px auto 0;
  text-align: center;
}

.top-flow__button-link {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 350px;
  max-width: 100%;
  padding: 23px 40px;
  color: #fff;
  background-color: #0f1b60;
  border: 2px solid transparent;
  border-radius: 10px;
  transition:
    color 0.3s,
    background-color 0.3s;
  position: relative;
  text-decoration: none;
}

.top-flow__button-link:hover {
  color: #0f1b60;
  background-color: #fff;
  border: 2px solid #0f1b60;
}

.top-flow__button-link::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 2px;
  display: inline-block;
  background-color: #0f1b60;
  bottom: 25px;
  left: calc(50% - 100px);
  opacity: 0;
  transition: opacity 0.3s;
}

.top-flow__button-link:after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.top-flow__button-link:hover::after {
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
}

.top-flow__button-link:hover::before {
  opacity: 1;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
  .top-flow {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .top-flow__img {
    width: 70%;
    margin: 60px auto 0;
  }

  .top-flow__img picture {
    display: block;
    text-align: center;
  }

  .top-flow__button {
    margin: 40px auto 0;
    text-align: center;
  }

  .top-flow__button-link {
    font-size: 20px;
    width: 300px;
    padding: 20px 40px;
  }

  .top-flow__button-link::after {
    right: 40px;
  }
}

/*------------------------------------------------------------------
#top-area
-------------------------------------------------------------------*/
.top-area {
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../cocoon-master/images/top-area-bg.jpg) no-repeat center center / cover;
}

.top-area__inner {
  max-width: 1440px;
  margin-inline: auto;
}

.top-area__title {
  color: #fff;
}

.top-area__title::before {
  background-color: #fff;
}

.top-area__contents {
  margin: 0 auto;
  padding-top: 60px;
  padding-inline: 20px;
  max-width: calc(1100px + 20px * 2);
  display: flex;
  align-items: center;
  gap: 90px;
}

.top-area__img {
  width: 500px;
}

.top-area__right {
  width: calc(100% - 590px);
  padding: 40px;
  background-color: #fff;
  height: auto;
}

.top-area__right-text {
  font-size: 16px;
  margin-top: 20px;
}

.top-area__right-text:first-child {
  margin-top: 0px;
}

.top-area__right-text span {
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(transparent 70%, yellow 70%);
}

@media screen and (max-width: 1023px) {
  .top-area__inner {
  }

  .top-area__contents {
    display: block;
    position: relative;
  }

  .top-area__img {
    width: 70%;
    margin: 0 auto;
  }

  .top-area__right {
    position: absolute;
    width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
  }

  .top-area__right-text {
    margin: 20px auto 0;
    text-shadow:
      1px 1px 0 #fff,
      -1px -1px 0 #fff,
      -1px 1px 0 #fff,
      1px -1px 0 #fff,
      0px 1px 0 #fff,
      0-1px 0 #fff,
      -1px 0 0 #fff,
      1px 0 0 #fff;
  }
}

@media screen and (max-width: 767px) {
  .top-area {
    padding-top: 40px;
    padding-bottom: 40px;
    background: url(../cocoon-master/images/top-area-bg_sp.jpg) no-repeat center center / cover;
  }

  .top-area__contents {
    margin: 10px auto 0;
  }

  .top-area__img {
    width: 400px;
    padding-right: 30px;
    margin: 0 auto;
  }

  .top-area__right {
    position: absolute;
    width: 480px;
    top: 60%;
    padding: 40px 45px;
  }

  .top-area__right-text {
    margin: 10px auto 0;
  }

  .top-area__right-text span {
    font-size: 24px;
  }
}

/*------------------------------------------------------------------
#top-faq
-------------------------------------------------------------------*/
.top-faq {
  padding-top: 100px;
  padding-bottom: 100px;
}

.top-faq__inner {
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
}

.top-faq__img {
  margin: 100px auto 0;
}

.top-faq__img img {
  margin: 0 auto;
}

.qa__boxes {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.qa-box {
  border: 1px solid #c4c4c4;
}

.qa-box__head {
  position: relative;
  padding: 20px 80px 20px 30px;
  cursor: pointer;
}

.qa-box__head::before,
.qa-box__head::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: #111;
  border-radius: 10px;
  width: 25px;
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: transform 0.3s;
}

.qa-box__head::after {
  transform: translateY(-50%) rotate(90deg);
}

.qa-box__head.is-open::after {
  transform: translateY(-50%) rotate(0);
}

.qa-box__q {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.qa-box__head-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  border-radius: 50%;
  background: #0f1b60;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.qa-box__head-text {
  font-size: 22px;
  font-weight: bold;
  color: #1a1a1a;
  font-weight: 500;
  flex-grow: 1;
}

.qa-box__body {
  padding: 0px 80px 20px 30px;
  display: none;
}

.qa-box__a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.qa-box__a-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #0f1b60;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #0f1b60;
  background: #fff;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.qa-box__a-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  flex-grow: 1;
}

.top-faq__button {
  margin: 60px auto 0;
  text-align: center;
}

.top-faq__button-link {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 350px;
  max-width: 100%;
  padding: 23px 40px;
  color: #fff;
  background-color: #0f1b60;
  border: 2px solid transparent;
  border-radius: 10px;
  transition:
    color 0.3s,
    background-color 0.3s;
  position: relative;
  text-decoration: none;
}

.top-faq__button-link:hover {
  color: #0f1b60;
  background-color: #fff;
  border: 2px solid #0f1b60;
}

.top-faq__button-link::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 2px;
  display: inline-block;
  background-color: #0f1b60;
  bottom: 25px;
  left: calc(50% - 55px);
  opacity: 0;
  transition: opacity 0.3s;
}

.top-faq__button-link:after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.top-faq__button-link:hover::after {
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
}

.top-faq__button-link:hover::before {
  opacity: 1;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
  .top-faq {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .top-faq__img {
    margin-top: 50px;
  }

  .qa__boxes {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .qa-box__head::before,
  .qa-box__head::after {
    border-radius: 0px;
    width: 15px;
    height: 2px;
    right: 5px;
  }

  .qa-box__head {
    position: relative;
    padding: 20px 30px 20px 10px;
    cursor: pointer;
  }

  .qa-box__body {
    position: relative;
    padding: 0px 10px 20px 10px;
    cursor: pointer;
  }

  .qa-box__head-text {
    font-size: 16px;
  }

  .qa-box__a-text {
    font-size: 16px;
  }
}

/*------------------------------------------------------------------
#top-voice
-------------------------------------------------------------------*/
.top-voice {
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../cocoon-master/images/top-voice-bg.png) no-repeat center center / cover;
}

.top-voice__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.top-voice__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.top-voice__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-voice__img {
  width: 120px;
  min-width: 120px;
}

.top-voice__img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.top-voice__contents {
  width: calc(100% - 120px);
  position: relative;
  display: inline-block;
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
}

.top-voice__contents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #fff;
  z-index: 2;
}

.top-voice__contents::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -14px;
  z-index: 1;
}

.top-voice__contents img {
  width: 25px;
  height: 25px;
}

.top-voice__text {
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 5px;
}

@media screen and (max-width: 1023px) {
  .top-voice__list {
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 80px;
    width: 700px;
  }
}

@media screen and (max-width: 767px) {
  .top-voice__inner {
    padding-inline: 40px;
  }

  .top-voice {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .top-voice__item {
    display: block;
    margin: 0 auto;
  }

  .top-voice__img {
    display: none;
  }

  .top-voice__contents {
    width: 100%;
    max-width: 500px;
  }

  .top-voice__list {
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 100%;
  }

  .top-voice__contents::before {
    display: none;
  }

  .top-voice__contents::after {
    display: none;
  }

  .top-voice__img_sp {
    text-align: right;
    margin-top: -20px;
  }

  .top-voice__img_sp img {
    width: 85px;
    height: 85px;
  }
}

/*------------------------------------------------------------------
#top-news
-------------------------------------------------------------------*/
.top-news {
  padding-top: 100px;
  padding-bottom: 100px;
}

.top-news__inner {
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
}

.top-news__list {
  margin-top: 80px;
}

.top-news__item {
}

.top-news__link {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dashed #c4c4c4;
  padding: 20px 50px 20px 0;
  position: relative;
}

.top-news__link.first {
  border-top: 1px dashed #c4c4c4;
}

.top-news__link::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.top-news__link:hover {
  opacity: 0.7;
}

.top-news__link-time {
  font-size: 17px;
  width: 130px;
  color: #0f1b60;
}

.top-news__link-title {
  width: calc(100% - 130px);
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.top-news__button {
  margin: 60px auto 0;
  text-align: center;
}

.top-news__button-link {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 350px;
  max-width: 100%;
  padding: 23px 40px;
  color: #fff;
  background-color: #0f1b60;
  border: 2px solid transparent;
  border-radius: 10px;
  transition:
    color 0.3s,
    background-color 0.3s;
  position: relative;
  text-decoration: none;
}

.top-news__button-link:hover {
  color: #0f1b60;
  background-color: #fff;
  border: 2px solid #0f1b60;
}

.top-news__button-link::before {
  position: absolute;
  content: "";
  width: 140px;
  height: 2px;
  display: inline-block;
  background-color: #0f1b60;
  bottom: 25px;
  left: calc(50% - 70px);
  opacity: 0;
  transition: opacity 0.3s;
}

.top-news__button-link:after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.top-news__button-link:hover::after {
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
}

.top-news__button-link:hover::before {
  opacity: 1;
}

/*1023px以下*/
@media screen and (max-width: 1023px) {
}

/*767px以下*/
@media screen and (max-width: 767px) {
  .top-news {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .top-news__list {
    margin-top: 60px;
  }

  .top-news__link {
    padding: 20px 30px 20px 0;
  }

  .top-news__link-title {
    width: calc(100% - 100px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .top-news__link-time {
    font-size: 16px;
    width: 100px;
  }

  .top-news__button {
    margin: 40px auto 0;
    text-align: center;
  }

  .top-news__button-link {
    font-size: 20px;
    width: 300px;
    padding: 20px 40px;
  }

  .top-news__button-link::after {
    right: 60px;
  }
}

/*------------------------------------------------------------------
#top-gallery
-------------------------------------------------------------------*/
.top-gallery {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #eef2f5;
}

.top-gallery__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.top-gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.top-gallery__item {
  background-color: #fff;
  transition: background-color 0.3s;
  position: relative;
}

.top-gallery__item:hover {
  background-color: #0f1b60;
}

.top-gallery__img {
  position: relative;
}

.top-gallery__button {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.top-gallery__button-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-align: left;
  width: 100px;
  color: #0f1b60;
  background-color: #fff;
  border: 1px solid transparent;
  padding: 6px 15px;
  border-radius: 50px;
  position: relative;
}

.top-gallery__button-link:hover {
  color: #fff;
  background-color: #0f1b60;
  border: 1px solid #fff;
  padding: 6px 15px;
  border-radius: 50px;
  position: relative;
}

.top-gallery__button-link::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-right.png) no-repeat center center / cover;
  width: 15px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.top-gallery__button-link:hover::after {
  background: url(../cocoon-master/images/arrow-right-white.png) no-repeat center center / cover;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
  .top-gallery__inner {
    padding-inline: 40px;
    max-width: calc(1200px + 40px * 2);
    margin-inline: auto;
  }

  .top-gallery__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .top-gallery__list {
    width: 370px;
    margin: 0 auto;
  }
}

/*------------------------------------------------------------------
#top-info
-------------------------------------------------------------------*/
.top-info {
  padding-top: 100px;
  padding-bottom: 50px;
}

.top-info__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.top-info__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 80px;
}

.top-info__link {
  display: block;
  padding: 14px 16px;
  transition: opacity 0.3s;
}

.top-info__link:hover {
  opacity: 0.7;
}

.top-info__item {
  background-color: #fff;
  border: 1.5px solid #0f1b60;
  border-radius: 10px;
  box-shadow: 3px 3px 8px 0px rgba(41, 95, 142, 0.1);
  position: relative;
  z-index: 1;
}

.top-info__item::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/top-info-icon.png) no-repeat center center / cover;
  width: 22px;
  height: 22px;
  bottom: 15px;
  right: 15px;
  z-index: -1;
}

.top-info__img img{
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.top-info__contents {
  height: 130px;
}

.top-info__time {
  display: inline-block;
  font-size: 12px;
  color: #333;
  margin-top: 15px;
}

.top-info__text {
  font-size: 18px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.top-info__button {
  margin: 60px auto 0;
  text-align: center;
}

.top-info__button-link {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 350px;
  max-width: 100%;
  padding: 23px 40px;
  color: #fff;
  background-color: #0f1b60;
  border: 2px solid transparent;
  border-radius: 10px;
  transition:
    color 0.3s,
    background-color 0.3s;
  position: relative;
  text-decoration: none;
}

.top-info__button-link:hover {
  color: #0f1b60;
  background-color: #fff;
  border: 2px solid #0f1b60;
}

.top-info__button-link::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 2px;
  display: inline-block;
  background-color: #0f1b60;
  bottom: 25px;
  left: calc(50% - 55px);
  opacity: 0;
  transition: opacity 0.3s;
}

.top-info__button-link:after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.top-info__button-link:hover::after {
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
}

.top-info__button-link:hover::before {
  opacity: 1;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
  .top-info {
    padding-top: 50px;
    padding-bottom: 50px;
  }

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

  .top-info__item {
    padding: 12px;
  }

  .top-info__contents {
    height: 110px;
  }

  .top-info__link {
    margin-top: 5px;
  }

  .top-info__text {
    font-size: 16px;
  }

  .top-info__button {
    margin: 40px auto 0;
  }

  .top-info__button-link {
    font-size: 20px;
    padding: 20px 40px;
    width: 300px;
  }

  .top-info__button-link::after {
    font-size: 20px;
    right: 70px;
  }
}

/*------------------------------------------------------------------
#feature　当社の特徴
-------------------------------------------------------------------*/
.feature {
  padding-top: 60px;
  padding-bottom: 0px;
}

.feature__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.feature__lead {
  font-size: 16px;
  margin-top: 40px;
}

.feature-point1,
.feature-point2 {
  border-bottom: 1px solid #d5d5d5;
}

.feature-point1,
.feature-point2,
.feature-point3 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.feature-point__block {
  margin-top: 80px;
  display: flex;
  gap: 40px;
}

.feature-point__img {
  width: 40%;
}

.feature-point__img {
  aspect-ratio: 465 /330;
  object-fit: cover;
}

.feature-point__right {
  width: 60%;
}

.feature-point__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 20px;
}

.feature-staff__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.6px;
  padding-bottom: 10px;
  border-bottom: 3px solid #0f1b60;
  width: fit-content;
  margin: 50px auto 0;
}

.feature-staff__list {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-staff__item {
  box-shadow: 8px 8px 0px 0px #0f1b60;
  width: calc(33.3% - 40px * 2 / 3);
}

.feature-staff__item:not(:nth-child(3n + 1)) {
  margin-left: 40px;
}

.feature-staff__item:nth-child(n + 4) {
  margin-top: 40px;
}

.feature-staff__img {
}

.feature-staff__img img {
  object-fit: cover;
}

.feature-staff__contents {
  padding: 20px;
  min-height: 165px;
  height: auto;
}

.feature-staff__name {
  font-size: 26px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.52px;
  color: #0f1b60;
  text-align: center;
  padding-bottom: 20px;
}

.feature-staff__name span {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.36px;
  color: #fea01c;
  margin-right: 10px;
}

.feature-staff__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.32px;
  border-top: 1px solid #000;
  padding: 20px 20px 0;
  text-align: center;
}

.feature-assessment {
  max-width: 1000px;
  margin-inline: auto;
}

.feature-assessment__text1 {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #0f1b60;
  margin: 50px auto 0;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 2px solid #fea01c;
  width: fit-content;
}

.feature-assessment__text1 span:nth-child(1) {
  font-size: 19px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.38px;
  color: #1a1a1a;
  margin-right: 5px;
}

.feature-assessment__text1 span:nth-child(2) {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #1a1a1a;
}

.feature-assessment__text2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.4px;
  width: 720px;
  margin: 20px auto 0;
}

.feature-assessment__block {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  margin-top: 50px;
}

.feature-assessment__img {
  width: 50%;
}

.feature-venality__contents {
  border: 5px solid #20191b;
  background: #fff;
  margin: 50px auto 0;
  max-width: 1000px;
  padding-bottom: 50px;
}

.feature-venality__title {
  color: #ffe500;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.6px;
  background: #20191b;
  display: flex;
  padding: 20px 10px;
  justify-content: center;
  align-items: center;
}

.feature-venality__subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 0.4px;
  margin-top: 40px;
}

.feature-venality__listwrap {
  margin: 40px auto 0;
  text-align: center;
  display: block;
}

.feature-venality__list {
  display: inline-block;
}

.feature-venality__list1 {
  padding-left: 45px;
}

.feature-venality__item {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.32px;
  text-align: left;
}

.feature-venality__warning {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.32px;
  width: fit-content;
  margin: 40px auto 0;
  position: relative;
}

.feature-venality__warning::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/feature-img12.png) no-repeat center center / cover;
  width: 42px;
  height: 42px;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
}

.feature-venality__point {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  gap: 30px;
  border: 3px solid #fea01c;
  margin: 40px auto 0;
  max-width: 850px;
}

.feature-venality__img {
  width: 80px;
}

.feature-venality__right {
  width: calc(100% - 150px);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

.feature-venality__text {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.4px;
  text-align: center;
}

.feature-quality__contents {
  margin: 50px auto 0;
  width: 1000px;
  padding: 40px 0px;
  border: 2.5px solid #0f1b60;
  background: url(../cocoon-master/images/feature-bg.png) no-repeat center center / cover;
}

.feature-quality__title {
  font-size: 25px;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: 0.5px;
  color: #0f1b60;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 2px solid #fea01c;
}

.feature-quality__lead {
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 30px;
  text-align: center;
}

.feature-quality__text {
  font-size: 25px;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: 0.5px;
  margin-top: 50px;
  text-align: center;
}

.feature-quality__text-color span {
  display: inline;
  background: linear-gradient(transparent 60%, yellow 60%);
}

@media screen and (max-width: 1023px) {
  .feature-staff__item {
    width: calc(50% - 25px * 1 / 2);
  }

  .feature-staff__item:not(:nth-child(3n + 1)) {
    margin-left: 0px;
  }

  .feature-staff__item:nth-child(n + 4) {
    margin-top: 0px;
  }

  .feature-staff__item:not(:nth-child(2n + 1)) {
    margin-left: 25px;
  }

  .feature-staff__item:nth-child(n + 3) {
    margin-top: 25px;
  }

  .feature-venality__listwrap {
    margin: 20px auto 0;
  }

  .feature-venality__warning {
    margin: 20px auto 0;
  }

  .feature-venality__point {
    padding: 10px 20px;
    gap: 20px;
    max-width: 700px;
  }

  .feature-quality__contents {
    width: 90%;
    margin: 30px auto 0;
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .feature {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .feature__lead {
    margin-top: 20px;
  }

  .feature-point1,
  .feature-point2,
  .feature-point3 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .feature-point__block {
    display: block;
    margin-top: 40px;
  }

  .feature-point__img {
    width: 100%;
  }

  .feature-point__img {
    aspect-ratio: 465 /330;
    object-fit: cover;
  }

  .feature-point__right {
    width: 100%;
  }

  .feature-point__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.32px;
    margin-top: 20px;
  }

  .feature-staff__title {
    font-size: 24px;
    line-height: 36px;
  }

  .feature-staff__list {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature-staff__item {
    width: calc(50% - 15px * 1 / 2);
  }

  .feature-staff__item:not(:nth-child(3n + 1)) {
    margin-left: 0px;
  }

  .feature-staff__item:nth-child(n + 4) {
    margin-top: 0px;
  }

  .feature-staff__item:not(:nth-child(2n + 1)) {
    margin-left: 15px;
  }

  .feature-staff__item:nth-child(n + 3) {
    margin-top: 25px;
  }

  .feature-staff__contents {
    padding: 10px;
    min-height: 165px;
    height: auto;
  }

  .feature-staff__name {
    font-size: 18px;
    padding-bottom: 10px;
  }

  .feature-staff__name span {
    font-size: 16px;
    margin-right: 10px;
  }

  .feature-staff__text {
    font-size: 16px;
    padding: 10px 5px 0;
    text-align: center;
  }

  .feature-assessment {
    max-width: 1000px;
    margin-inline: auto;
  }

  .feature-assessment__text1 {
    font-size: 24px;
  }

  .feature-assessment__text2 {
    width: 100%;
  }

  .feature-assessment__block {
    display: block;
  }

  .feature-assessment__img {
    width: 100%;
    margin-top: 5px;
  }

  .feature-venality__title {
    font-size: 24px;
  }

  .feature-venality__subtitle {
    font-size: 16px;
    margin-top: 25px;
    padding-inline: 20px;
  }

  .feature-venality__list1 {
    padding-left: 0;
  }

  .feature-venality__list2 {
    padding-right: 45px;
  }

  .feature-venality__point {
    padding: 10px 5px;
    gap: 20px;
    max-width: 90%;
    margin: 20px auto 0;
  }

  .feature-venality__text {
    padding-inline: 20px;
  }

  .feature-quality__contents {
    width: 100%;
    margin: 30px auto 0;
    padding: 20px;
  }

  .feature-quality__text {
    font-size: 17px;
    margin-top: 20px;
  }
}

/*------------------------------------------------------------------
#flow 買取の流れ
-------------------------------------------------------------------*/
.flow {
  padding-top: 60px;
  padding-bottom: 0px;
}

.flow__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.flow-heading2 {
  margin-top: 80px;
}

.flow__lead {
  font-size: 16px;
  margin-top: 40px;
}

.flow__wrap {
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
}

.flow__title {
  color: #0f1b60;
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.44px;
  margin-top: 30px;
}

.flow__contents {
  padding: 20px;
  background: #f3f4ff;
  margin-top: 20px;
}

.flow__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.36px;
}

.flow__subtitle:nth-of-type(2) {
  margin-top: 20px;
}

.flow__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.32px;
}

.flow-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.flow-block2 {
  align-items: flex-start;
  justify-content: space-between;
}

.flow-block__img {
  width: 43%;
}

.flow-block__right {
  width: 52%;
}

.flow-block__left {
  width: 420px;
}

.flow-block__text {
  font-size: 16px;
  line-height: 25.657px;
  letter-spacing: 0.32px;
  padding: 25px;
  border: 2px solid #0f1b60;
  border-left: 15px solid #0f1b60;
  box-shadow: 5px 5px 0px 0px #eee;
}
.flow-point_sub {
  background-color: rgba(15, 27, 96, 0.05); /* メインカラー#0f1b60を薄く背景に */
  border-left: 4px solid #0f1b60; /* 左側にメインカラーのボーダー */
  border-radius: 4px;
  padding: 20px 25px;
  margin: 45px auto; /* 左右マージンをautoにして中央寄せ */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  max-width: 820px; /* コンテンツの最大幅を設定 */
  width: 90%; /* 画面幅に対する割合 */
}

/* 見出しのスタイル - 中央寄せ */
.flow-point_sub h4 {
  color: #0f1b60; /* メインカラー */
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center; /* テキストを中央揃え */
  font-weight: bold;
  font-size: 1.1em;
}

/* リストのスタイル */
.point_sub_list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  max-width: 400px;
}

/* リスト項目のスタイル */
.point_sub_list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  flex: 0 0 calc(50% - 30px); /* 2列レイアウト（モバイルでは1列に） */
  font-weight: bold;
}

/* リスト項目のアイコン */
.point_sub_list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-color: #fea01c; /* サブカラー */
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px;
}

.flow__list {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 40px;
  background: #f3f4ff;
  margin-bottom: 20px;
}

.flow__item {
  padding-left: 30px;
  position: relative;
}

.flow__item::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/flow-icon.png) no-repeat center center / cover;
  width: 26px;
  height: 23px;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}

.flow__area {
  margin-top: 15px;
  padding: 40px 0;
  background: url(../cocoon-master/images/feature-bg.png) no-repeat center center / cover;
}

.flow__area-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.4px;
  text-align: center;
  margin-bottom: 20px;
}

.flow__area-text:last-child {
  margin-bottom: 0px;
}

.flow__area-text span {
  background: linear-gradient(transparent 60%, yellow 60%);
}

.rental-flow {
  padding-top: 0;
}

.flow-cta {
  margin-block: 100px;
}

.flow-heading3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0.6px;
  padding: 5px 10px;
  border-left: 4px solid #0f1b60;
}

.flow-point__img {
  width: 50%;
}

.flow-point__right {
  width: 45%;
}

.flow-point__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.32px;
}

.flow-point__text span {
  background: linear-gradient(transparent 70%, yellow 70%);
}

.flow-qa__boxes {
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
  margin-top: 60px;
  margin-bottom: 100px;
}

@media screen and (max-width: 1023px) {
  .flow__list {
    padding: 30px 10px;
  }
}

@media screen and (max-width: 767px) {
  .flow-heading2 {
    margin-top: 60px;
  }

  .flow__wrap {
    padding-inline: 0;
  }

  .flow-block {
    display: block;
    margin-top: 30px;
  }

  .flow-block2 {
    align-items: flex-start;
    justify-content: space-between;
  }

  .flow-block__img {
    width: 100%;
    margin-top: 10px;
  }

  .flow-block__right {
    width: 100%;
  }

  .flow-block__left {
    width: 100%;
  }

  .flow-block__text {
    margin-top: 10px;
  }
  
  .flow-point_sub {
    padding: 15px 20px;
    width: 95%; /* モバイルでは幅を広げる */
  }

  .flow-cta {
    margin-block: 50px;
  }

  .flow-heading3 {
    font-size: 28px;
  }

  .flow-point__img {
    width: 100%;
  }

  .flow-point__right {
    width: 100%;
    margin-top: 10px;
  }

  .flow__area {
    padding: 20px 10px;
  }

  .flow-qa__boxes {
    margin-top: 30px;
    margin-bottom: 100px;
    padding-inline: 0;
  }
}

/*------------------------------------------------------------------
#list 査定対象一覧
-------------------------------------------------------------------*/
.list-top {
  padding-top: 60px;
  padding-bottom: 0px;
}

.list-top__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.list-top .heading2 {
  margin-top: 80px;
}

.list-cta {
  margin-top: 80px;
}

.list-bottom {
  padding-top: 80px;
  padding-bottom: 50px;
}

.list-bottom__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.list-bottom .heading3 {
  margin-top: 70px;
}

.list-bottom__lead {
  margin-top: 20px;
}

.list-bottom__contents {
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
  margin-top: 50px;
}

.list-bottom__item {
  display: flex;
  gap: 20px;
}

.list-bottom__item:not(:first-child) {
  margin-top: 120px;
}

.list-bottom__left {
  width: 65%;
  display: flex;
  gap: 50px;
}

.list-bottom__number {
  position: relative;
}

.list-bottom__number-bar::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/list-bottom-bar.png) no-repeat center center / cover;
  width: 2px;
  height: 80px;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
}

.list-bottom__number img {
  width: 160px;
  height: 160px;
}

.list-bottom__middle {
  width: calc(100% - 210px);
}

.list-bottom__title {
  font-size: 30px;
  font-weight: 500;
  border-bottom: 2px solid #0f1b60;
  width: fit-content;
}

.list-bottom_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 20px;
}

.list-bottom__right {
  width: 35%;
}

.list-bottom__right img {
  aspect-ratio: 325 / 200;
  object-fit: cover;
}

.list-bottom__footer {
  font-size: 25px;
  font-weight: 500;
  line-height: 39px;
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 40px;
  padding: 40px 10px;
  background: url(../cocoon-master/images/feature-bg.png) no-repeat center center / cover;
}

@media screen and (max-width: 1023px) {
  .list-bottom__item {
    display: block;
  }

  .list-bottom__left {
    width: 100%;
    display: flex;
    gap: 50px;
  }

  .list-bottom__number-bar::after {
    background: none;
  }

  .list-bottom__number img {
    width: 130px;
    height: 130px;
  }

  .list-bottom__right {
    width: 100%;
    display: flex;
    gap: 50px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .list-top .heading2 {
    font-size: 22px;
    margin-top: 50px;
  }

  .list-cta {
    margin-top: 50px;
  }

  .list-bottom {
    padding-top: 50px;
  }

  .list-bottom .heading2 {
    font-size: 22px;
  }

  .list-bottom .heading3 {
    font-size: 20px;
    margin-top: 40px;
  }

  .list-bottom__contents {
    padding-inline: 0px;
    max-width: calc(1000px + 0px * 2);
  }

  .list-bottom__item:not(:first-child) {
    margin-top: 50px;
  }

  .list-bottom__left {
    width: 100%;
    display: flex;
    gap: 20px;
  }

  .list-bottom__number img {
    width: 100px;
    height: 100px;
  }

  .list-bottom__middle {
    width: calc(100% - 120px);
  }

  .list-bottom__right {
    margin-top: 15px;
  }

  .list-bottom_text {
    margin-top: 10px;
  }

  .list-bottom__footer {
    font-size: 20px;
    padding: 20px 10px;
  }
}

/*------------------------------------------------------------------
#新着情報一覧
-------------------------------------------------------------------*/
.news {
  padding-top: 60px;
  padding-bottom: 60px;
}

.news__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.news .heading1 {
}

.news .heading2 {
  margin-top: 70px;
}

.news__block {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.news__block-left {
  width: 75%;
}

.news__list {
}

.news__item {
}

.news__title {
  font-size: 34px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.68px;
  margin-top: 50px;
  padding-bottom: 5px;
  border-bottom: 3px solid #0f1b60;
  width: fit-content;
  position: relative;
}

.news__title::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: #fea01c;
}

.news-bottom {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.news__img {
  width: 300px;
}

.news__img img {
  aspect-ratio: 15 / 10;
  object-fit: cover;
}

.news__contents {
  width: 60%;
}

.news__text {
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.news__button {
  margin: 30px auto 0;
  text-align: right;
}

.news__button-link {
  font-size: 18px;
  text-align: center;
  width: 200px;
  max-width: 100%;
  padding: 15px;
}

.news__button-link::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  display: inline-block;
  background-color: #0f1b60;
  bottom: 15px;
  left: calc(50% - 50px);
  opacity: 0;
  transition: opacity 0.3s;
}

.news__button-link:after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

@media screen and (max-width: 1023px) {
  .news-bottom {
    display: block;
  }

  .news__img {
    width: 80%;
    margin: 0 auto;
  }

  .news__img img {
    object-fit: cover;
  }

  .news__contents {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .news {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .news__block {
    display: block;
  }

  .news__block-left {
    width: 100%;
  }

  .news-bottom {
    display: flex;
    gap: 30px;
    margin-top: 20px;
  }

  .news__img {
    width: 300px;
  }

  .news__img img {
    aspect-ratio: 15 / 10;
    object-fit: cover;
  }
}

/*------------------------------------------------------------------
#お役立ち情報一覧
-------------------------------------------------------------------*/
.summary {
  padding-top: 60px;
  padding-bottom: 60px;
}

.summary__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.summary .heading1 {
}

.summary .heading2 {
  margin-top: 70px;
}

.summary__block {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.summary__block-left {
  width: 75%;
}

.info__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
  margin-top: 0px;
}

.info__contents {
  height: 180px;
}

.info__time {
  display: inline-block;
  font-size: 15px;
  color: #fea01c;
  margin-top: 15px;
}

.info__title {
  font-size: 18px;
  font-weight: 500;
  color: #0f1b60;
  padding-bottom: 5px;
  border-bottom: 1px solid #0f1b60;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.info__text {
  margin-top: 10px;
}

@media screen and (max-width: 1023px) {
  .info__list {
    gap: 20px;
  }

  .top-info__item {
    padding: 0px;
  }

  .info__contents {
    height: 190px;
  }
}

@media screen and (max-width: 767px) {
  .summary {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .summary__block {
    display: block;
  }

  .summary__block-left {
    width: 100%;
  }
}

/*------------------------------------------------------------------
#results 買取実績一覧
-------------------------------------------------------------------*/
.results {
  padding-top: 60px;
  padding-bottom: 60px;
}

.results__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.results .heading1 {
}

.results .heading2 {
  margin-top: 70px;
}

.results__block {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.results__block-left {
  width: 75%;
}

.results__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 30px;
}

.results__link {
  display: block;
  padding: 15px 15px 40px;
  transition: opacity 0.3s;
}

.results__link:hover {
  opacity: 0.7;
}

.results__item {
  border-radius: 10px;
  border: 2px solid #0f1b60;
  background-color: #fff;
  box-shadow: 3px 3px 8px 0px rgba(41, 95, 142, 0.1);
  position: relative;
  z-index: 1;
}

.results__item::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/top-support-icon.png) no-repeat center center / cover;
  width: 30px;
  height: 30px;
  bottom: 10px;
  right: 10px;
  z-index: -1;
}

.results__img {
}

.results__img img {
  aspect-ratio: 250 / 220;
  object-fit: cover;
}

.results__contents {
  padding-block: 20px;
  margin: 0 auto;
}

.results__title {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 2px solid #0f1b60;
  text-align: center;
}

.results__region,
.region__maker,
.region__model {
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.results__region span,
.region__maker span,
.region__model span {
  margin-right: 20px;
}

.footer-results {
  margin-top: -3px;
  padding-top: 0;
}

.footer-results-nav {
  border-top: 1px solid #fff;
  margin-top: 2px;
}

@media screen and (max-width: 1100px) {
  .results-buttons__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .results__block-left {
    width: 70%;
  }

  .results__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .results__link {
    padding: 10px 10px 40px;
  }
}

@media screen and (max-width: 767px) {
  .results {
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .results .heading2 {
    margin-top: 40px;
  }
  .results__block {
    display: block;
  }

  .results__block-left {
    width: 100%;
  }

  .results__title {
    padding-bottom: 0px;
  }
}

/*------------------------------------------------------------------
#rental レンタル
-------------------------------------------------------------------*/
.rental {
  padding-top: 60px;
}

.rental__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.rental-heading2 {
  margin-top: 80px;
}

.rental-heading3 {
  margin-top: 50px;
}

.top-rental__area1 {
  display: flex;
  margin-top: 30px;
  height: 500px;
  padding-bottom: 30px;
  position: relative;
}

.top-rental__area1::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/recruit-icon.png) no-repeat center center / cover;
  width: 40px;
  height: 90px;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.top-rental__left {
  position: relative;
}

.top-rental__list {
  padding: 30px;
  border: 1.5px solid #0f1b60;
  box-shadow: 15px 15px 0px 0px #0f1b60;
  background-color: #fff;
  position: absolute;
  left: 20px;
  top: 50px;
  width: 620px;
}

.top-rental__img {
  width: 52%;
}

.top-rental__img img {
  min-height: 475px;
  object-fit: cover;
}

.rental__point {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  gap: 30px;
  border: 1.5px solid #fea01c;
  border-radius: 10px;
  margin: 50px auto 0;
}

.rental__img {
  width: 80px;
}

.rental__right {
  width: calc(100% - 150px);
}

.rental__subtitle {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.56px;
  text-align: center;
}

.rental__title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.56px;
  display: inline;
  background: linear-gradient(transparent 90%, #0f1b60 0%);
  padding-bottom: 3px;
}

@-moz-document url-prefix(){
  
.rental__title {
  letter-spacing: 0.4px;
}
}

.rental__text {
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 20px;
}

.rental-point__block {
  margin-top: 40px;
}

.rental-point__img {
  width: 50%;
  aspect-ratio: 585 / 358;
}

.rental-point__right {
  width: 50%;
}

.top-rental__area2 {
  padding: 40px;
  background: #f3f4ff;
  text-align: center;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 40px;
}

.rental .wp-block-table {
  margin-top: 30px;
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
}

.rental tr:first-child {
  background-color: #0f1b60;
  color: #fff;
  font-weight: 700;
}

.rental tr:not(:first-child) {
  background-color: #fff;
}

.rental td {
  padding: 10px;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.32px;
  text-align: center;
}

.rental table:not(.has-border-color) :where(th, td) {
  border: 1px solid #b3b3b3;
}

.wp-block-table__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 20px;
  text-align: center;
}

.rental__button {
  margin: 20px auto 0;
}

.low-cta {
  margin-top: 0px;
}

.low-cta__inner {
  background: none;
  padding-inline: 20px;
  max-width: calc(1170px + 20px * 2);
  margin-inline: auto;
}

.low-cta__inner::before {
  background: none;
}

.low-cta__title {
  font-size: 37px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.74px;
  display: inline;
  background: linear-gradient(transparent 85%, #fff600 0%);
  padding-bottom: 5px;
}

.low-cta__text {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 27.2px;
  letter-spacing: 0.32px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #fff;
  text-align: center;
  margin: 20px auto 0;
  width: fit-content;
}

.low-cta__img {
  margin-top: 30px;
}

.low-cta__img img:nth-child(1) {
  width: 55%;
}

@media screen and (max-width: 1023px) {
  .top-rental__area1 {
    display: block;
    height: auto;
  }

  .top-rental__list {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    width: 80%;
  }

  .top-rental__img {
    margin: 30px auto 0;
    width: 80%;
  }

  .top-rental__img img {
    min-height: auto;
    object-fit: cover;
  }

  .rental__point {
    padding: 10px;
  }

  .top-rental__area2 {
    padding: 20px;
  }

  .rental .wp-block-table {
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .top-rental__list {
    width: 100%;
    padding: 20px;
  }

  .top-rental__img {
    width: 100%;
    margin-top: 30px;
  }

  .rental__point {
    display: block;
    margin: 50px auto 0;
  }

  .rental__img {
    width: 80px;
    text-align: center;
    margin: 0 auto;
  }

  .rental__right {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .rental__subtitle {
    font-size: 18px;
  }

  .rental__title {
    font-size: 22px;
    margin-top: 10px;
  }

  .rental-point__img {
    width: 100%;
  }

  .rental-point__right {
    width: 100%;
  }

  .rental td {
    padding: 5px;
  }

  .low-cta__title {
    font-size: 24px;
  }
}

/*------------------------------------------------------------------
#repair 修理
-------------------------------------------------------------------*/
.repair {
  padding-top: 60px;
}

.repair__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.repair-heading2 {
  margin-top: 80px;
}

.repair-heading3 {
  margin-top: 50px;
}

.top-repair__area1 {
  display: flex;
  margin-top: 30px;
  height: 500px;
  padding-bottom: 30px;
  position: relative;
}

.top-repair__area1::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/recruit-icon.png) no-repeat center center / cover;
  width: 40px;
  height: 90px;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.top-repair__left {
  position: relative;
}

.top-repair__list {
  padding: 30px;
  border: 1.5px solid #0f1b60;
  box-shadow: 15px 15px 0px 0px #0f1b60;
  background-color: #fff;
  position: absolute;
  left: 20px;
  top: 50px;
  width: 640px;
}

.top-repair__img {
  width: 52%;
}

.top-repair__img img {
  min-height: 475px;
  object-fit: cover;
}

.repair__point {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  gap: 30px;
  border: 1.5px solid #fea01c;
  border-radius: 10px;
  margin: 50px auto 0;
}

.repair__img {
  width: 80px;
}

.repair__right {
  width: calc(100% - 150px);
}

.repair__subtitle {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
}

.repair__title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.56px;
  display: inline;
  background: linear-gradient(transparent 90%, #0f1b60 0%);
  padding-bottom: 3px;
}

.repair__text {
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 20px;
}

.repair-point__block {
  margin-top: 40px;
}

.repair-point__img {
  width: 50%;
  aspect-ratio: 585 / 358;
}

.repair-point__right {
  width: 50%;
}

.top-repair__area2 {
  padding: 40px;
  background: #f3f4ff;
  text-align: center;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 40px;
}

.repair-price__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 40px;
}

.repair-price__area {
  padding: 40px;
  background: #f3f4ff;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 40px;
}

.repair-price__area span {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.36px;
}

.repair-flow {
  padding-top: 0;
}

.low-cta {
  margin-top: 0px;
}

.low-cta__inner {
  background: none;
  padding-inline: 20px;
  max-width: calc(1170px + 20px * 2);
  margin-inline: auto;
}

.low-cta__inner::before {
  background: none;
}

.low-cta__title {
  font-size: 37px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.74px;
  display: inline;
  background: linear-gradient(transparent 85%, #fff600 0%);
  padding-bottom: 5px;
}

.low-cta__text {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 27.2px;
  letter-spacing: 0.32px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid #fff;
  text-align: center;
  margin: 20px auto 0;
  width: fit-content;
}

.low-cta__img {
  margin-top: 30px;
}

.low-cta__img img:nth-child(1) {
  width: 55%;
}

@media screen and (max-width: 1023px) {
  .top-repair__area1 {
    display: block;
    height: auto;
  }

  .top-repair__list {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    width: 80%;
  }

  .top-repair__img {
    margin: 30px auto 0;
    width: 80%;
  }

  .top-repair__img img {
    min-height: auto;
    object-fit: cover;
  }

  .repair__point {
    padding: 10px;
  }

  .top-repair__area2 {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .top-repair__list {
    width: 100%;
    padding: 20px;
  }

  .top-repair__img {
    width: 100%;
    margin-top: 30px;
  }

  .repair__point {
    display: block;
    margin: 50px auto 0;
  }

  .repair__img {
    width: 80px;
    text-align: center;
    margin: 0 auto;
  }

  .repair__right {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .repair__subtitle {
    font-size: 18px;
  }

  .repair__title {
    font-size: 22px;
    margin-top: 10px;
  }

  .repair-point__img {
    width: 100%;
  }

  .repair-point__right {
    width: 100%;
  }

  .repair-price__area {
    padding: 20px;
  }

  .low-cta__title {
    font-size: 24px;
  }
}

/*------------------------------------------------------------------
#機械別一覧
-------------------------------------------------------------------*/
.machine {
  padding-top: 60px;
}

.machine__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.machine-heading2 {
  margin-top: 80px;
}

.machine-block {
  display: flex;
  gap: 50px;
  margin-top: 60px;
}

.machine-block__img {
  width: 50%;
}

.machine-block__right {
  width: 50%;
}

.machine-block__title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.6px;
  display: inline;
  background: linear-gradient(transparent 90%, #0f1b60 0%);
}

.machine-block__text {
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 30px;
}

.results__block-machine {
  width: 100%;
  margin-top: 60px;
}

.results__list-machine {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px 30px;
}

.machine-heading3 {
  margin-top: 70px;
}

.machine__area {
  padding-inline: 20px;
  max-width: calc(700px + 20px * 2);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: #f3f4ff;
  padding: 30px 100px;
  margin-top: 40px;
}
.machine__area.list{
  display: block;
}
.machine__area_ex {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.machine__area_ex dt {
  font-weight: bold;
  flex: 0 0 100px; /* dtの幅を固定 */
  margin: 0;
}

.machine__area_ex dd {
  flex: 1 1 calc(100% - 120px); /* dtの幅+余白を引いた幅 */
  margin: 0;
  padding-left: 10px;
}
.machine__area_ex dt,
.machine__area_ex dd {
  position: relative;
  padding-bottom: 5px;
}

/* 共通の下線 */
.machine__area_ex dt::after,
.machine__area_ex dd::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}
.machine__area-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.32px;
  text-align: center;
}

.machine-cta {
  margin-top: 100px;
}

@media screen and (max-width: 1023px) {
  .machine-block {
    display: block;
    margin-top: 40px;
  }

  .machine-block__img {
    width: 100%;
  }

  .machine-block__right {
    width: 100%;
    margin-top: 10px;
  }

  .results__list-machine {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

@media screen and (max-width: 767px) {
  .machine-heading2 {
    margin-top: 50px;
  }

  .machine-heading3 {
    margin-top: 40px;
    font-size: 24px;
  }

  .results__block-machine {
    margin-top: 40px;
  }

  .machine__area {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    background: #f3f4ff;
    padding: 20px;
    margin-top: 20px;
  }
  
  .machine__area_ex dt {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .machine__area_ex dd {
    padding-top: 0;
    margin-left: 15px;
  }
  .machine__area_ex dt::after,
  .machine__area_ex dd::after{
    display: none; /* dtの下線を非表示 */
  }
  .machine-cta {
    margin-top: 50px;
  }
}

/*------------------------------------------------------------------
#sidebar
-------------------------------------------------------------------*/

.side__sidebar {
  min-width: 255px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-left: 30px;
  border-left: 2px solid #0f1b60;
}

.sidebar__block {
  margin-top: 10px;
}

.sidebar__title,
.archive__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  background-color: #0f1b60;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  position: relative;
}

.archive__title::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-bottom.png) no-repeat center center / cover;
  width: 22px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  transition:
    transform 0.5s,
    top 0.5s;
}

.archive__title.is-open::after {
  transform: rotate(180deg);
  top: 15px;
}

.category-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.category-item {
}

.category__link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.category__link:hover {
  text-decoration: underline;
  text-decoration-color: #fea01c;
}

.category__link.current {
  text-decoration: underline;
  text-decoration-color: #fea01c;
}

@-moz-document url-prefix() {
  .category__link:hover {
    text-decoration-thickness: 2px;
  }

  .category__link.current {
    text-decoration-thickness: 2px;
  }
}

.sidebar-news__list {
}

.sidebar-news__item {
  padding: 15px 0;
}

.sidebar-news__link:hover .sidebar-news__title {
  text-decoration: underline;
  text-decoration-color: #fea01c;
}

.sidebar-news__img {
  max-width: 75px;
  max-height: 75px;
  overflow: hidden;
}

.sidebar-news__img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s;
}

.sidebar-news__contents {
  display: flex;
  flex-direction: column;
}

.sidebar-news__info{
  display: flex;
  gap:16px;
  padding-bottom:2px;
}

.sidebar-news__info span{
  font-size: 15px;
  background-color: #666;
  color: #fff;
  padding: 0 10px;
  border-radius: 10px;
}

.sidebar-news__title {
  font-size: 20px;
  font-weight: 500;
}

.sidebar-news__time {
  font-size: 16px;
  display: block;
  color:#666;
}

.sidebar-news__button {
  margin: 20px auto 0;
  text-align: center;
}

.sidebar-news__button-link {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  max-width: 100%;
  padding: 12px 40px;
  color: #0f1b60;
  background-color: #fff;
  border: 1.5px solid #0f1b60;
  border-radius: 10px;
  transition:
    color 0.3s,
    background-color 0.3s;
  position: relative;
  text-decoration: none;
}

.sidebar-news__button-link:hover {
  color: #fff;
  background-color: #0f1b60;
}

.sidebar-news__button-link::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 2px;
  display: inline-block;
  background-color: #fff;
  bottom: 15px;
  left: calc(50% - 55px);
  opacity: 0;
  transition: opacity 0.3s;
}

.top-works__button-link:after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.top-works__button-link:hover::after {
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
}

.sidebar-news__button-link:hover::before {
  opacity: 1;
}

.sidebar-archive__list {
  display: none;
}

.sidebar-archive__list.is-open {
  display: block;
}

.sidebar-archive__list li {
  padding: 15px;
  position: relative;
}

.sidebar-archive__list a {
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.sidebar-archive__list a:hover .list-item-caption {
  text-decoration: underline;
  text-decoration-color: #fea01c;
}

.archive__title {
  font-size: 22px;
}

@media screen and (max-width: 1023px) {
  .side__sidebar {
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .side__sidebar {
    width: 100%;
    margin-top: 50px;
    padding-left: 0px;
    border-left: none;
    max-width: 100%;
  }

  .category-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .top-works__button-link:after {
    right: 75px;
  }

}

/*------------------------------------------------------------------
#contact
-------------------------------------------------------------------*/
.contact {
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../cocoon-master/images/top-contact-bg.jpg) no-repeat right center / cover;
  padding-inline: 20px;
}

.contact__inner {
  padding-inline: 120px;
  padding-block: 60px;
  max-width: calc(750px + 120px * 2);
  margin-inline: auto;
  background-color: #fff;
}

.contact__title {
}

.contact__title span {
  font-size: 48px;
  color: #fff600;
  background-color: #0f1b60;
  padding: 5px 10px;
}

.contact__lead {
  font-size: 16px;
  text-align: center;
  margin-top: 60px;
}

.contact__subtitle {
  font-size: 32px;
  font-weight: 500;
  position: relative;
  margin: 40px 0 0;
  max-width: 740px;
}

.contact__subtitle::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/contact-bar.png) no-repeat center center / cover;
  width: 50px;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
  left: 200px;
}

.contact__subtitle.confirm::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/contact-bar.png) no-repeat center center / cover;
  width: 50px;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
  left: 320px;
}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 740px;
  margin: 30px auto 0;
}

.form__field {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.form-field__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 230px;
  flex-shrink: 0;
}

.form-field__label {
  font-size: 16px;
  font-weight: 500;
}

.form-field__tag {
  display: inline-block;
  background: #0f1b60;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 3px 6px;
}

.form-field__tag.is-option {
  background: #fff;
  color: #0f1b60;
  border: 1px solid #0f1b60;
}

.form-field__data {
  flex-grow: 1;
}

.form__field-bottom {
  padding-top: 40px;
  border-top: 1px dashed #c4c4c4;
}

input,
textarea {
  font-size: 16px;
}

input::placeholder,
textarea::placeholder {
  font-size: 16px;
  color: #ccc;
}

/* 年/月/日のテキストカラーを変更 */
input[type="date"]::-webkit-datetime-edit {
  /* color: #ccc; */
}

.form-field__data-code {
  width: 170px;
}

.form-field__data-date {
  width: 200px;
}

.form__address-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.28px;
}

.form__message-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.28px;
  padding-bottom: 5px;
}

.form__field-radio-text {
  font-size: 16px;
  margin-right: 10px;
}

.form-field__data [type="text"],
.form-field__data [type="email"],
.form-field__data [type="date"] {
  border-radius: 0px;
  border: 0.5px solid #1a1a1a;
  background: #fff;
  padding: 5px;
  transition: border 0.3s;
}

.form-field__data [type="text"]:hover,
.form-field__data [type="text"]:focus,
.form-field__data [type="email"]:hover,
.form-field__data [type="email"]:focus {
  border: 0.5px solid #28688f;
  outline: none;
}

.form-field__data [type="radio"],
.form-field__data [type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.form-field__data [type="radio"]:hover + .wpcf7-list-item-label::before,
.form-field__data [type="checkbox"]:hover + .wpcf7-list-item-label::before {
  border: 1px solid #0f1b60;
}

.form-field__data [type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background-color: #0f1b60;
}

.form-field__data [type="radio"]:checked + .wpcf7-list-item-label::after,
.form-field__data [type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form-field__data textarea {
  height: 150px;
  border-radius: 0px;
  border: 0.5px solid #1a1a1a;
  background: #fff;
  padding: 5px;
  resize: vertical;
  transition: border 0.3s;
}

.form-field__data textarea:hover,
.form-field__data textarea:focus {
  border: 0.5px solid #28688f;
  outline: none;
}

.form-field__data .wpcf7-radio,
.form-field__data .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 0;
}

.wpcf7-radio .wpcf7-list-item-label {
  font-size: 16px;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}

.wpcf7-radio .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.wpcf7-radio .wpcf7-list-item-label::before {
  width: 24px;
  height: 24px;
  border: 1px solid #c9c9c9;
  left: 0;
  transition: border 0.3s;
}

.wpcf7-radio .wpcf7-list-item-label::after {
  width: 10px;
  height: 10px;
  background: #0f1b60;
  left: 7px;
  transition: opacity 0.3s;
  opacity: 0;
}

.wpcf7-checkbox .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 16px;
  padding-left: 30px;
  position: relative;
}

.wpcf7-checkbox .wpcf7-list-item-label::before,
.wpcf7-checkbox .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.wpcf7-checkbox .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::before {
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 2px solid #c9c9c9;
  transition: border 0.3s;
}

.wpcf7-checkbox .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item-label::after {
  margin-top: -2px;
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  width: 14px;
  height: 9px;
  left: 3px;
  transition: opacity 0.3s;
  opacity: 0;
}

.wpcf7-checkbox .wpcf7-list-item-label a,
.wpcf7-acceptance .wpcf7-list-item-label a {
  text-decoration-line: underline;
  font-weight: inherit;
}

.contact__privacy {
  text-align: center;
}

.contact__privacy a {
  text-decoration: underline;
}

.contact__privacy [type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.contact__privacy [type="checkbox"]:hover + .wpcf7-list-item-label::before {
  border: 2px solid #0f1b60;
}

.contact__privacy [type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.confirm__btn-Wrap {
  margin: 25px auto 0;
  text-align: center;
  width: 350px;
  position: relative;
}

.confirm__btn-Wrap::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.confirm__btn-Wrap:hover::before {
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
}

.confirm__btn-Wrap .confirm__btn {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  width: 350px;
  text-align: center;
  padding: 20px 40px;
  border-radius: 10px;
  background-color: #0f1b60;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s;
}

.confirm__btn-Wrap .confirm__btn:hover {
  color: #0f1b60;
  background-color: #fff;
  border: 2px solid #0f1b60;
  text-decoration: underline;
  text-decoration-color: #0f1b60;
}

.contact-bottom__text {
  width: 100%;
  margin-inline: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.32px;
  padding: 40px;
  margin-top: 40px;
  background: #f3f4ff;
}

.contact-qa__boxes {
  width: 100%;
  margin-inline: auto;
  margin-top: 30px;
  margin-bottom: 10px;
}

.codedropz-upload-inner {
  padding-top: 6px;
  height: 120px;
}

.codedropz-btn-wrap {
  margin-top: 8px;
}

.cd-upload-btn {
  padding: 4px 12px 6px;
  font-weight: 600;
  color: #0f1b60;
  border: 1px solid #0f1b60;
}
.cd-upload-btn:hover {
  color: #fff;
  background-color: #0f1b60;
}

@media screen and (max-width: 1023px) {
  .contact__title {
    font-size: 32px;
  }
  .contact__title span {
    font-size: 32px;
  }

  .contact__inner {
    padding-inline: 20px;
    max-width: calc(1000px + 20px * 2);
  }
}

@media screen and (max-width: 767px) {
  .contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact__inner {
    padding-block: 40px;
  }

  .contact__title {
    font-size: 25px;
  }
  .contact__title span {
    font-size: 25px;
  }
  .contact__lead {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 40px;
  }

  .contact__subtitle {
    font-size: 24px;
    margin-top: 20px;
  }

  .contact__subtitle::after {
    left: 150px;
  }

  .contact__subtitle.confirm::after {
    left: 240px;
  }

  .form__fields {
    margin-top: 30px;
  }

  .form__field {
    display: block;
  }

  .form-field__head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    width: 230px;
  }

  .form-field__label {
    margin-left: 15px;
  }

  .form-field__data {
    margin-top: 14px;
  }

  .form-field__data-code {
    width: 35%;
  }

  .form-field__data .wpcf7-radio,
  .form-field__data .wpcf7-checkbox {
    flex-direction: column;
    gap: 15px;
  }

  .contact__btn-warp {
    margin-top: 30px;
  }

  .qa-box__head {
    padding: 10px;
  }

  .qa-box__head::before,
  .qa-box__head::after {
    right: 20px;
    top: 45%;
  }

  .qa-box__head-text {
    padding-right: 45px;
  }

  .qa-box__body {
    padding: 10px 20px 10px 10px;
  }
}

/*------------------------------------------------------------------
#contact(確認・完了)
-------------------------------------------------------------------*/
.contact__btns-Wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-inline: 20px;
  margin: 60px auto 0;
}

.submit__btn-Wrap [type="submit"] {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  width: 250px;
  text-align: center;
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #0f1b60;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit__btn-Wrap [type="submit"]:hover {
  color: #0f1b60;
  background-color: #fff;
  border: 2px solid #0f1b60;
}

.back__btn {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  width: 250px;
  text-align: center;
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #0f1b60;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s;
}

.back__btn:hover {
  color: #0f1b60;
  background-color: #fff;
  border: 2px solid #0f1b60;
}

span.wpcf7-spinner {
  display: none;
}

.wpcf7-form.invalid .wpcf7-response-output {
  /* display: none; */
}

@media screen and (max-width: 767px) {
  .contact__btns-Wrap {
    gap: 10px;
    margin: 40px auto 0;
  }

  .submit__btn-Wrap [type="submit"] {
    font-size: 18px;
    padding: 10px;
    width: 140px;
  }

  .back__btn {
    font-size: 18px;
    padding: 10px;
    width: 140px;
  }
}

/*------------------------------------------------------------------
#採用情報
-------------------------------------------------------------------*/
.recruit {
  padding-top: 60px;
}

.recruit__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.recruit__lead {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.6px;
  margin-top: 60px;
  width: fit-content;
  border-bottom: 3px solid #0f1b60;
}

.recruit__lead span {
  color: #fea01c;
}

.recruit__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.32px;
  margin-top: 20px;
}

.recruit__text.apply {
  margin-top: 40px;
  padding-left: 100px;
}

.recruit-heading2 {
  margin-top: 80px;
}

.recruit__imgTop {
  margin-top: 50px;
}

.recruit-heading3 {
  margin-top: 40px;
}

.recruit__block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.recruit__left {
  width: 50%;
}

.recruit__img {
  width: 50%;
}

.recruit-gallery {
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.recruit-gallery__img {
}

.recruit-table {
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
  margin-top: 60px;
}

.recruit-table table {
  width: 100%;
}

.recruit-table tr {
}

.recruit-table tr td {
  padding: 15px;
  background-color: #fff;
}

.recruit-table tr td:first-child {
  color: #fff;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.32px;
  background: #0f1b60;
  width: 270px;
  text-align: center;
}

.recruit-table table:not(.has-border-color) :where(th, td) {
  border: 1px solid #b3b3b3;
}

.recruit-flow__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding-inline: 20px;
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
}

.recruit-flow__item {
  writing-mode: vertical-rl;
  padding: 15px 25px;
  background: #0f1b60;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-align: center;
  height: 230px;
  position: relative;
}

.recruit-flow__item::after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/recruit-icon.png) no-repeat center center / cover;
  width: 40px;
  height: 90px;
  top: 50%;
  transform: translateY(-50%);
  right: 125px;
}

.recruit-flow__item:first-child:after {
  background: none;
}

.recruit-qa__boxes {
  max-width: calc(1000px + 20px * 2);
  margin-inline: auto;
  margin-top: 30px;
  margin-bottom: 100px;
}

.recruit-form__inner {
  padding-inline: 120px;
  padding-block: 60px;
  max-width: calc(750px + 120px * 2);
  margin-inline: auto;
  background-color: #fff;
  border: 2px solid #0f1b60;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-top: 40px;
}

.recruit-form__title {
  margin-bottom: 80px;
}

.recruit-bottom__text {
  padding-inline: 20px;
  max-width: calc(960px + 20px * 2);
  margin-inline: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.32px;
  padding: 40px;
  margin-top: 40px;
  background: #f3f4ff;
}

@media screen and (max-width: 1023px) {
  .recruit__text.apply {
    margin-top: 20px;
    padding-left: 0px;
  }

  .recruit__block {
    display: block;
    margin-top: 30px;
  }

  .recruit__left {
    width: 100%;
  }

  .recruit__img {
    width: 100%;
    margin-top: 10px;
  }

  .recruit-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
    padding-inline: 0px;
  }

  .recruit-table tr td:first-child {
    width: 200px;
  }

  .recruit-flow__list {
    display: block;
    max-width: 650px;
    margin: 0 auto;
  }

  .recruit-flow__item {
    writing-mode: horizontal-tb;
    padding: 15px 25px;
    background: #0f1b60;
    text-align: center;
    height: auto;
    margin-top: 80px;
    position: relative;
  }

  .recruit-flow__item:first-child {
    margin-top: 50px;
  }

  .recruit-flow__item::after {
    position: absolute;
    content: "";
    background: url(../cocoon-master/images/recruit-icon.png) no-repeat center center / cover;
    width: 40px;
    height: 90px;
    top: -140%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .recruit-form__inner {
    padding-inline: 20px;
    max-width: calc(1000px + 20px * 2);
  }
}

@media screen and (max-width: 767px) {
  .recruit-table {
    padding-inline: 0px;
    margin-top: 30px;
  }

  .recruit-table tr td {
    padding: 10px;
  }

  .recruit-table tr td:first-child {
    width: 100px;
  }

  .recruit-form__inner {
    padding-block: 40px;
  }

  .recruit-bottom__text {
    padding: 20px;
  }
}

/*------------------------------------------------------------------
#採用情報(確認・完了)
-------------------------------------------------------------------*/
.recruit__thanks-text {
  margin-top: 30px;
  margin-bottom: 30px;
}

.recruit-thanks__button {
  margin-block: 30px;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
}

/*------------------------------------------------------------------
#baseデザイン(個別投稿ページ)
-------------------------------------------------------------------*/

.news__title-single-wrap {
  padding-bottom: 30px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 40px;
}

.news__title-single-img {
  text-align: center;
}

.news__title-single-logo {
  width: 90px;
}

.news__title-single {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.15em;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.single .base__content h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.68px;
  margin-block: 30px;
  padding-bottom: 5px;
  border-bottom: 3px solid #0f1b60;
  width: fit-content;
  position: relative;
}

.single .base__content h2::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: #fea01c;
}

.single .base__content h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 27.2px;
  letter-spacing: 0.6px;
  margin-block: 30px;
  padding: 5px 10px;
  border-left: 4px solid #0f1b60;
  position: relative;
}

.single .base__content h4 {
  font-size: 26px;
  font-weight: 500;
  line-height: 27.2px;
  letter-spacing: 0.52px;
  margin-top: 40px;
  border-bottom: 2px solid #000;
  padding-bottom: 3px;
  width: fit-content;
}

.single .base__content h5 {
}

.single .base__content td {
  padding: 10px;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.32px;
}

.single .base__content tr td:first-child {
  background-color: #0f1b60;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.single .base__content tr td:nth-child(2) {
  color: #1a1a1a;
  background-color: #fff;
}

.single .base__content tr td:nth-child(3) {
  background-color: #0f1b60;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.single .base__content tr td:nth-child(4) {
  color: #1a1a1a;
  background-color: #fff;
}

.single .base__content table:not(.has-border-color) :where(th, td) {
  border: 1px solid #b3b3b3;
}

/*------------------------------------------------------------------
#baseデザイン(固定ページ)
-------------------------------------------------------------------*/
.page-template {
  padding-top: 50px;
  padding-bottom: 0px;
}

.page-template__inner {
  padding-inline: 20px;
  max-width: calc(1200px + 20px * 2);
  margin-inline: auto;
}

.base__content .toc {
  display: none;
}

.base__content {
  padding: 20px;
}

.page .base__content h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.68px;
  margin-top: 50px;
  padding-bottom: 5px;
  border-bottom: 3px solid #0f1b60;
  width: fit-content;
  position: relative;
}

.page .base__content h2::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: #fea01c;
}

.page .base__content h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.6px;
  margin-top: 40px;
  padding: 5px 10px;
  border-left: 4px solid #0f1b60;
  position: relative;
}

.page .base__content h4 {
  font-size: 26px;
  font-weight: 500;
  line-height: 27.2px;
  letter-spacing: 0.52px;
  margin-top: 40px;
  border-bottom: 2px solid #000;
  padding-bottom: 3px;
  width: fit-content;
}

.base__content p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 20px;
  text-align: justify;
}

/* button */
.base__content .wp-block-button {
  margin-top: 0px;
}

.base__content .wp-block-button__link {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  max-width: 100%;
  padding: 20px 60px;
  color: #fff;
  background-color: #0f1b60;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
  text-decoration: none;
}

.base__content .wp-block-button__link:hover {
  color: #0f1b60;
  background-color: #fff;
  border: 2px solid #0f1b60;
  text-decoration: underline;
}

.base__content .company_fukunichi_link{
  width: 100%;
}

.base__content .company_fukunichi_link .wp-block-button__link{
  margin-top:10px;
  font-size: 16px;
}

@-moz-document url-prefix() {
  .base__content .wp-block-button__link:hover {
    text-decoration-thickness: 2px;
  }
}

.base__content .wp-block-button__link:after {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-white.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.base__content .wp-block-button__link:hover::after {
  background: url(../cocoon-master/images/arrow-blue.png) no-repeat center center / cover;
}

/* list */
.base__content ul {
  list-style-type: disc;
}
.base__content ul.wp-block-list{
  margin-left: 1.3em;
}
.base__content ol {
  list-style-type: decimal;
}

.base__content ol li::marker {
  font-size: 20px;
  font-weight: bold;
  color: #da9820;
}

.base__content .list1 li,
.base__content .list2 li {
  list-style-type: none;
  position: relative;
}

.base__content .list1 li::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/arrow-right-orange.png) no-repeat center center / cover;
  width: 10px;
  height: 15px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.base__content .list2 li::before {
  position: absolute;
  content: "";
  background: url(../cocoon-master/images/icon-check.png) no-repeat center center / cover;
  width: 20px;
  height: 15px;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

/* table */
.base__content .wp-block-table {
  margin-top: 30px;
}

.base__content tr:first-child {
}

.base__content tr:not(:first-child) {
}

.base__content td {
  padding: 10px;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.32px;
}

.base__content tr:first-child {
  background-color: #0f1b60;
  color: #fff;
  font-weight: 700;
}

.base__content tr td:nth-child(4) {
  background-color: #fff;
}

.base__content table:not(.has-border-color) :where(th, td) {
  border: 1px solid #b3b3b3;
}

@media screen and (max-width: 1023px) {
}

@media screen and (max-width: 767px) {
  .page-template__inner {
    padding-inline: 0px;
  }

  .base__content {
    padding: 20px;
  }

  .page .base__content h2 {
    font-size: 28px;
  }

  .page .base__content h3 {
    font-size: 24px;
  }

  .base__content td {
    padding: 5px;
  }

  @media screen and (max-width: 600px) {
    .base__content .wp-block-media-text > .wp-block-media-text__content {
      padding: 0px;
    }
  }
}

/*------------------------------------------------------------------
#会社案内
-------------------------------------------------------------------*/

.page-id-143 .base__content tr td:first-child {
  width: 200px;
}

.page-id-143 .base__content p span {
  line-height: 1;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .page-id-143 .base__content tr td:first-child {
    width: 130px;
  }
}

/*------------------------------------------------------------------
#よくある質問
-------------------------------------------------------------------*/
.page-id-182 .qa__boxes {
  margin-top: 30px;
}

/*------------------------------------------------------------------
#プライバシー
-------------------------------------------------------------------*/
.page-id-99 .base__content {
  padding-inline: 20px;
}

/*------------------------------------------------------------------
#利用規約
-------------------------------------------------------------------*/
.page-id-107 .base__content {
  padding-inline: 20px;
}

/*------------------------------------------------------------------
#サイトマップ
-------------------------------------------------------------------*/
.page-id-112 .base__content {
  padding-inline: 20px;
}
.page-id-112 .base__content a:hover {
  text-decoration: underline;
  text-decoration-color: #fea01c;
  text-decoration-thickness: 2px;
}

/*------------------------------------------------------------------
#404ページ
-------------------------------------------------------------------*/
.error404 .base__content {
  padding-inline: 20px;
}

.button404__wrap {
  margin-top: 50px;
  margin-bottom: 50px;
}
