@charset "UTF-8";
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  color: #222;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #222;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

a,
span {
  display: inline-block;
}

/*===================================================
共通
===================================================*/
/* 基本
***************************************************************/
html {
  font-size: 16px;
  /*ゴシック */
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #1E1E1E;
  font-weight: 400;
  line-height: 1.8;
}

.mincho {
  font-family: "Zen Old Mincho", serif;
}

@media screen and (min-width: 681px) {
  body {
    min-width: 1200px;
  }
}
@media screen and (max-width: 680px) {
  html {
    font-size: 4.2666666667vw;
  }
}
main {
  overflow: hidden;
}

/* フォント
***************************************************************/
.inter {
  font-family: "Inter", sans-serif;
}

/* コンテンツ・セクション幅
***************************************************************/
.inner {
  max-width: 1060px;
  margin: 0 auto;
}

section {
  padding: 100px 0;
}

@media screen and (max-width: 680px) {
  .inner {
    padding: 0 5.0666666667vw;
  }
  section {
    padding: 21.3333333333vw 0;
  }
}
/* PC・SP 非表示
***************************************************************/
.sp_only {
  display: none !important;
}

@media screen and (max-width: 680px) {
  .sp_only {
    display: block !important;
  }
  .pc_only {
    display: none !important;
  }
}
/* 共通パーツ (全ページ)
***************************************************************/
a {
  transition: 0.3s;
}

.col_g {
  color: #7CC03F;
}

.btn a {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  background: #000;
  border-radius: 50px;
  background: #7CC03F;
  padding: 16.5px 67px;
  transition: 0.3s;
}

.btn a span {
  position: relative;
  left: 0;
  transition: 0.3s;
}

@media screen and (min-width: 681px) {
  .btn a:hover {
    opacity: 0.7;
  }
  .btn a:hover span {
    left: 5px;
  }
}
@media screen and (max-width: 680px) {
  .btn a {
    font-size: 3.4666666667vw;
    border-radius: 13.3333333333vw;
    padding: 2.6666666667vw 8vw;
  }
}
/* フェードイン
***************************************************************/
@media all and (min-width: 681px) {
  .action01 {
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    transition: opacity 0.4s, transform 0.4s ease-out;
  }
  .action01.action {
    opacity: 1;
    transform: translateY(0);
  }
  .action02 {
    opacity: 0;
    transform: translateX(-40px);
    position: relative;
    transition: opacity 0.4s, transform 0.4s ease-out;
  }
  .action02.action {
    opacity: 1;
    transform: translateY(0);
  }
  .action03 {
    opacity: 0;
    transform: translateX(40px);
    position: relative;
    transition: opacity 0.4s, transform 0.4s ease-out;
  }
  .action03.action {
    opacity: 1;
    transform: translateX(0);
  }
  .action04 {
    opacity: 0;
    transition: opacity 0.4s ease-out;
  }
  .action04.action {
    opacity: 1;
  }
  .delay1 {
    transition-delay: 0.3s;
  }
  .delay2 {
    transition-delay: 0.6s;
  }
  .delay3 {
    transition-delay: 0.9s;
  }
  .delay4 {
    transition-delay: 1.2s;
  }
  .delay5 {
    transition-delay: 1.5s;
  }
  .delay6 {
    transition-delay: 1.8s;
  }
}
@media all and (max-width: 750px) {
  .action01_sp {
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    transition: opacity 0.6s, transform 0.6s ease-out;
  }
  .action01_sp.action {
    opacity: 1;
    transform: translateY(0);
  }
  .action02_sp {
    opacity: 0;
    transform: translateX(-50px);
    position: relative;
    transition: opacity 0.6s, transform 0.6s ease-out;
  }
  .action02_sp.action {
    opacity: 1;
    transform: translateY(0);
  }
  .action03_sp {
    opacity: 0;
    transform: translateX(50px);
    position: relative;
    transition: opacity 0.6s, transform 0.6s ease-out;
  }
  .action03_sp.action {
    opacity: 1;
    transform: translateX(0);
  }
  .action04_sp {
    opacity: 0;
    transition: opacity 0.6s ease-out;
  }
  .action04_sp.action {
    opacity: 1;
  }
  .delay1_sp {
    transition-delay: 0.3s;
  }
  .delay2_sp {
    transition-delay: 0.6s;
  }
  .delay3_sp {
    transition-delay: 0.9s;
  }
  .delay4_sp {
    transition-delay: 1.2s;
  }
  .delay5_sp {
    transition-delay: 1.5s;
  }
}
/* 共通パーツ(下層)
***************************************************************/
.page_fv {
  position: relative;
}

.page_fv picture img.bg {
  height: 100vh;
  height: 100svh;
}

.page_fv .txtBox {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.page_fv .txtBox h1 {
  color: #FFF;
  font-size: 68px;
  font-weight: 700;
  line-height: 120%;
  display: inline-block;
  border-bottom: 3px solid #fff;
  padding: 0 10px 18px 0;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.page_fv .txtBox .txt {
  margin-top: 30px;
  color: #FFF;
  font-size: 23px;
  font-weight: 600;
  max-width: 1042px;
}

.page_fv .txtBox1 {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  font-size: 68px;
  width: 1100px;
  line-height: 100%;
}

.page_fv .txtBox1 h1 {
  font-size: 68px;
  font-weight: 700;
  display: inline-block;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  color: #FFF;
  position: relative;
}

.page_fv .txtBox1 h1::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: #fff;
  width: 1017px;
  height: 3px;
  margin-top: 5px;
  bottom: -30px;
}

.page_fv .txtBox2 h1 {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 68px;
  font-weight: 700;
  line-height: 120%;
  display: inline-block;
  border-bottom: 3px solid #fff;
  padding: 0 10px 18px 0;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.page_title {
  text-align: center;
  position: relative;
}

.page_title .ja {
  color: #7CC03F;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 180%;
  position: absolute;
  top: 68px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
}

.page_title .en {
  color: rgba(124, 192, 63, 0.08);
  text-align: center;
  font-family: Inter;
  font-size: 118px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

@media screen and (max-width: 680px) {
  .page_fv {
    height: 100vh;
    height: 100svh;
  }
  .page_fv .txtBox {
    position: absolute;
    left: 5.3333333333vw;
    bottom: 5.3333333333vw;
  }
  .page_fv .txtBox h1 {
    color: #FFF;
    font-size: 8vw;
    font-weight: 700;
    line-height: 120%;
    display: inline-block;
    border-bottom: 3px solid #fff;
    padding: 0 2.6666666667vw 2.6666666667vw 0;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  }
  .page_fv .txtBox .txt {
    margin-top: 10.6666666667vw;
    color: #FFF;
    font-size: 3.4666666667vw;
    font-weight: 600;
    max-width: 1042px;
  }
  .page_fv .txtBox1 {
    position: absolute;
    top: 42%;
    left: 2.6666666667vw;
    transform: unset;
    width: 96vw;
    line-height: 1;
  }
  .page_fv .txtBox1 h1::before {
    content: "";
    position: absolute;
    display: inline-block;
    background: #fff;
    width: 88vw;
    height: 3px;
    margin-top: 1.3333333333vw;
    bottom: -2.6666666667vw;
  }
  .page_fv .txtBox1 h1.inter {
    font-size: 8vw;
    padding-left: unset;
  }
  .page_fv .txtBox2 h1 {
    left: 5.3333333333vw;
    font-size: 8vw;
    padding: 0 1.3333333333vw 1.3333333333vw 0;
    max-width: 98.6666666667vw;
    transform: translate(0, -50%);
    top: 50%;
  }
  .sp_littleUp {
    margin-top: -4vw;
  }
  .page_title .ja {
    font-size: 3.7333333333vw;
    top: 8vw;
  }
  .page_title .en {
    font-size: 12vw;
  }
  .under {
    margin-top: unset;
  }
}
/*===================================================
ヘッダー
===================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 100;
  transition: 0.3s;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px;
}

.logo_content .logo {
  width: 200px;
  display: none;
}

.home.page .logo_content .logo.page_only {
  display: none;
}

.home .logo_content .logo.top_only {
  display: block;
}

.page .logo_content .logo.page_only {
  display: block;
}

/* ハンバーガーメニュー非表示 */
.toggle-menu {
  display: none;
}

.global_nav ul {
  display: flex;
  gap: 20px;
}

.global_nav ul li a {
  color: #fff;
}

header.active {
  background: #fff;
}

header.active .global_nav ul li a {
  color: #000;
}

.global_nav ul li:nth-of-type(2) {
  position: relative;
}

.nav_child {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 350px;
  background-color: #fff;
  opacity: 0.8;
}

.nav_child ul {
  display: flex;
  flex-flow: column;
  gap: unset;
}

.nav_child ul li {
  border-bottom: 1px solid #000;
}

.global_nav ul li .nav_child ul li a {
  display: flex;
  gap: 20px;
  line-height: 2;
  color: #000;
  font-size: 15px;
  letter-spacing: -0.414px;
  padding: 15px 13px;
}

.nav_child ul li a p.name-class {
  flex: 1;
}

.nav_child ul li a p.year {
  width: 112px;
}

.hidden {
  display: none;
}

@media screen and (min-width: 680px) {
  .nav_child ul li a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 680px) {
  header {
    padding: 2.6666666667vw 0;
  }
  .header_inner {
    display: block;
    margin: 0 2.6666666667vw;
  }
  .logo_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo_content .logo {
    width: 30.9333333333vw;
  }
  /* ハンバーガーメニュー */
  .toggle-menu {
    display: inline-block;
    width: 10.6666666667vw;
    height: 8vw;
    position: relative;
    z-index: 100;
  }
  .toggle-menu .toggle-line {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    text-indent: -2666.4vw;
    width: 6.6666666667vw;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
  }
  .toggle-menu .toggle-line::before,
  .toggle-menu .toggle-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 6.6666666667vw;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
  }
  header.active .toggle-menu .toggle-line,
  header.active .toggle-menu .toggle-line::before,
  header.active .toggle-menu .toggle-line::after {
    background-color: rgb(123, 192, 63);
  }
  .toggle-menu .toggle-line::before {
    top: -2.6666666667vw;
    animation: menu-barTop 0.6s forwards;
  }
  .toggle-menu .toggle-line::after {
    top: 2.6666666667vw;
    animation: menu-barBottom 0.6s forwards;
  }
  .header_nav {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 4vw 0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: rgba(124, 192, 63, 0.9);
    z-index: 90;
    transform: translateX(100%);
    transition: 0.3s ease-out;
  }
  .global_nav {
    margin-top: 21.3333333333vw;
    padding: 0 2.6666666667vw;
  }
  .open .toggle-menu {
    transition: all 0.5s linear 1s;
  }
  .open .toggle-menu .toggle-line {
    height: 0;
  }
  .open .toggle-menu .toggle-line::before {
    background-color: #fff !important;
    animation: active-menu-barTop 0.6s forwards;
    transform: rotate(-45deg);
    top: 0;
  }
  .open .toggle-menu .toggle-line::after {
    background-color: #fff !important;
    animation: active-menu-barBottom 0.6s forwards;
    transform: rotate(45deg);
    top: 0;
  }
  .open .header_nav {
    transform: translateX(20%);
    overflow: auto;
  }
  .global_nav ul {
    flex-flow: column;
    width: 69.3333333333vw;
    text-align: center;
    gap: 6.6666666667vw;
  }
  header.active .global_nav ul li a {
    color: #fff;
    font-size: 4vw;
    font-weight: 600;
  }
  .global_nav ul li a {
    letter-spacing: -0.414px;
  }
}
/*===================================================
フッター
===================================================*/
footer {
  padding: 0 30px 54px;
}

footer .footer_cont01 {
  display: flex;
  justify-content: space-between;
  margin: 66px 20px 0;
}

footer .footer_cont01 a.logo_link img {
  width: 200px;
}

footer .footer_cont01 ul {
  display: flex;
  gap: 40px;
}

footer .footer_cont01 ul li {
  display: flex;
  flex-flow: column;
  gap: 25px;
}

footer .footer_cont01 ul li a {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.345px;
}

footer p.copyright.inter {
  font-size: 10px;
  text-align: center;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: -0.22px;
  margin-top: 66px;
}

.footer_cont01 ul li:nth-of-type(2) {
  position: relative;
}

.footer_child {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 350px;
  background-color: #eee;
  opacity: 0.8;
}

.footer_cont01 .footer_child ul {
  display: flex;
  flex-flow: column;
  gap: 5px;
}

.footer_child ul li {
  border-bottom: 1px solid #000;
}

.footer_cont01 ul li .footer_child ul li a {
  display: flex;
  gap: 20px;
  line-height: 2;
  color: #000;
  font-size: 15px;
  letter-spacing: -0.414px;
  padding: 15px 13px;
}

.nav_child ul li a p.name-class {
  flex: 1;
}

.nav_child ul li a p.year {
  width: 112px;
}

.hidden {
  display: none;
}

@media screen and (max-width: 680px) {
  footer {
    padding: 0 0 11.2vw;
  }
  footer p.txt {
    font-size: 4vw;
    padding: 5.0666666667vw 0;
  }
  footer .footer_cont01 {
    flex-flow: column-reverse;
    align-items: center;
    gap: 13.3333333333vw;
    margin: 8vw 0 0;
  }
  footer .footer_cont01 a.logo_link img {
    width: 53.3333333333vw;
  }
  footer .footer_cont01 ul {
    flex-flow: column;
    align-items: center;
    gap: 6.6666666667vw;
    text-align: center;
  }
  footer .footer_cont01 ul li {
    gap: 6.6666666667vw;
  }
  footer .footer_cont01 ul li a {
    font-size: 4vw;
  }
  footer p.copyright.inter {
    font-size: 2.6666666667vw;
    margin-top: 9.8666666667vw;
  }
}
/*===================================================
トップページ
===================================================*/
/* トップページ FV
***************************************************************/
.fv {
  position: relative;
  padding: 0;
}

.fv img.bg {
  height: 100vh;
  height: 100svh;
}

.fv img.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 884px;
  display: block;
}

.fv .txtBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 680px;
}

.fv .txtBox h1 {
  color: #FFF;
  font-size: 68px;
  font-weight: 700;
  line-height: 100%;
  display: inline-block;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.fv .txtBox p.text {
  position: relative;
  font-size: 23px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
}

.fv .txtBox p::before {
  content: "";
  display: inline-block;
  background: #D9D9D9;
  width: 62px;
  height: 2px;
  margin-top: 5px;
}

.fv .txtBox p::after {
  content: "";
  display: inline-block;
  background: #D9D9D9;
  width: 62px;
  height: 2px;
  margin-top: 5px;
}

@media screen and (max-width: 680px) {
  .fv img.title {
    max-width: 84vw;
    position: absolute;
    top: 50%;
    left: 5.3333333333vw;
    transform: translate(0, -50%);
  }
  .fv .txtBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84vw;
  }
  .fv .txtBox h1 {
    font-size: 12vw;
    line-height: 120%;
    display: inline-block;
  }
  .fv .txtBox p.text {
    font-size: 3.7333333333vw;
    display: block;
    margin-top: 1.3333333333vw;
    letter-spacing: -0.414px;
  }
  .fv .txtBox p::before {
    display: none;
  }
  .fv .txtBox p::after {
    display: none;
  }
}
/* トップページ section1
***************************************************************/
.sec1 {
  position: relative;
  padding: 100px 0;
}

.sec1 .inner {
  max-width: 1240px;
}

.sec1 .inner .sec1Content1 {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.sec1 .inner .sec1Content1 .img {
  max-width: 610px;
}

.sec1 .inner .sec1Content1 .wrap1 {
  display: flex;
  justify-content: space-between;
}

.sec1 .inner .sec1Content1 .txtBox p {
  font-size: 18px;
  font-weight: 300;
}

.sec1 .inner .sec1Content1 .txtBox p:not(:first-child) {
  margin-top: 30px;
}

.wrap1 {
  position: relative;
}

.wrap1::before {
  position: absolute;
  content: "";
  background-color: #A3E06C;
  width: 610px;
  height: 365px;
  right: 65px;
  top: 20px;
  z-index: -1;
}

.animate-bg::before {
  animation: slideIn 1.5s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(15%);
    /* 右から外れている状態 */
    opacity: 0;
    /* フェードイン効果も追加 */
  }
  to {
    transform: translateX(0);
    /* 元の位置に戻る */
    opacity: 1;
  }
}
.sec1 .inner .sec1Content1 .wrap2 {
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}

.sec1 .inner .sec1Content1 .wrap2 p:not(:first-child) {
  margin-top: 30px;
}

.sec1 .inner .sec1Content1 .wrap3 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.sec1 .inner .sec1Content1 .wrap3 .txtBox {
  max-width: 520px;
  text-align: justify;
}

.wrap3 {
  position: relative;
}

.wrap3::before {
  position: absolute;
  content: "";
  background-color: #A3E06C;
  width: 610px;
  height: 365px;
  left: 65px;
  top: 20px;
  z-index: -1;
}

.animate-bg2::before {
  animation: slideIn2 1.5s ease forwards;
}

@keyframes slideIn2 {
  from {
    transform: translateX(-15%);
    /* 左から外れている状態 */
    opacity: 0;
    /* フェードイン効果も追加 */
  }
  to {
    transform: translateX(0);
    /* 元の位置に戻る */
    opacity: 1;
  }
}
.sec1 .inner .sec1Content2 {
  margin-top: 100px;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
}

.sec1 .inner .sec1Content2 .txt p:not(:first-child) {
  margin-top: 30px;
}

.sec1 .inner .sec1Content2 .strong_txt {
  font-size: 25px;
  font-weight: 900;
  color: #fff;
  margin: 20px auto;
  max-width: 580px;
}

.sec1 .inner .sec1Content2 .strong_txt p:not(:first-child) {
  margin-top: 30px;
}

.marker {
  background: linear-gradient(transparent 0%, #7CC03F 0%);
  padding: 0 20px;
  display: block;
}

.sec1 .inner .sec1Content2 .txt2 {
  margin-top: 30px;
  position: relative;
}

.sec1 .inner .btn {
  text-align: center;
  margin: 40px auto 0;
}

.sec1 .movie {
  margin-top: 80px;
  display: grid;
  place-content: center;
}

.sec1 .movie iframe {
  width: 610px;
  height: 365px;
}

@media screen and (max-width: 680px) {
  .sec1 {
    position: relative;
    padding: 13.3333333333vw 0;
  }
  .sec1 .inner .sec1Content1 {
    display: flex;
    flex-direction: column;
    gap: 8vw;
  }
  .sec1 .inner .sec1Content1 .img {
    max-width: 93.3333333333vw;
  }
  .sec1 .inner .sec1Content1 .wrap1 {
    display: block;
    justify-content: space-between;
  }
  .sec1 .inner .sec1Content1 .wrap1 .img {
    margin-top: 8vw;
  }
  .sec1 .inner .sec1Content1 .txtBox p {
    font-size: 3.4666666667vw;
    font-weight: 300;
    letter-spacing: -0.01em;
  }
  .sec1 .inner .sec1Content1 .txtBox p:not(:first-child) {
    margin-top: 30px;
  }
  .wrap1::before {
    display: none;
  }
  .sec1 .inner .sec1Content1 .wrap2 {
    text-align: left;
    font-size: 3.4666666667vw;
  }
  .sec1 .inner .sec1Content1 .wrap2 p:not(:first-child) {
    margin-top: 6.9333333333vw;
  }
  .sec1 .inner .sec1Content1 .wrap3 {
    display: flex;
    flex-direction: column;
  }
  .sec1 .inner .sec1Content1 .wrap3 .txtBox {
    max-width: 100%;
    text-align: justify;
  }
  .wrap3 {
    position: relative;
  }
  .wrap3::before {
    display: none;
  }
  .wrap3 img {
    max-width: 93.3333333333vw;
  }
  .wrap3 .txtBox {
    order: 2;
    margin: unset;
    margin-top: 8vw;
  }
  .sec1 .inner .sec1Content2 {
    margin-top: 6.9333333333vw;
    font-size: 3.4666666667vw;
  }
  .sec1 .inner .sec1Content2 .txt {
    text-align: left;
  }
  .sec1 .inner .sec1Content2 .txt p:not(:first-child) {
    margin-top: 6.9333333333vw;
  }
  .sec1 .inner .sec1Content2 .strong_txt {
    font-size: 4vw;
    font-weight: 900;
    color: #fff;
    margin-top: 8vw;
  }
  .sec1 .inner .sec1Content2 .strong_txt p:not(:first-child) {
    margin-top: 4vw;
  }
  .marker {
    background: linear-gradient(transparent 0%, #7CC03F 0%);
    padding: 0 2.6666666667vw;
  }
  .sec1 .inner .sec1Content2 .txt2 {
    margin-top: 4vw;
    position: relative;
  }
  .sec1 .inner .btn {
    text-align: center;
    margin: 8vw auto 0;
  }
  .sec1 .movie iframe {
    margin: 8vw auto 0;
    width: 100%;
    height: 50.6666666667vw;
  }
  .sec1 .movie {
    margin-top: 0;
    display: block;
    place-content: unset;
  }
}
/* トップページ section2
***************************************************************/
.sec2 {
  padding: 0 0 100px;
  overflow: hidden;
}

.sec2 .inner {
  position: relative;
  max-width: 970px;
}

.sec2 .inner h2 {
  text-align: center;
  position: relative;
  margin-top: 150px;
}

.sec2 .inner h2 span.t1 {
  color: #7CC03F;
  font-size: 25px;
  font-weight: 700;
  line-height: 100%;
}

.sec2 .inner h2 span.t2.inter {
  color: rgba(124, 192, 63, 0.08);
  font-size: 118px;
  font-weight: 700;
  line-height: 100%;
  position: absolute;
  top: -77px;
  left: 50%;
  transform: translate(-50%, 0);
}

.sec2_cont01 {
  margin-top: 90px;
}

.sec2_cont01 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 92px 108px;
}

.sec2_cont01 ul li {
  width: 431px;
}

.sec2_cont01 ul li:nth-of-type(2n) {
  padding-top: 55px;
}

.sec2_cont01 ul li a {
  display: block;
  position: relative;
}

.sec2_cont01 ul li a .imgWrapper img {
  height: 430px;
  transition: 0.5s ease;
}

.imgWrapper {
  overflow: hidden;
}

.imgWrapper .overlay {
  width: 400px;
  font-size: 25px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5em;
  color: white;
  text-align: center;
  opacity: 0;
  transition: 0.3s ease;
}

@media screen and (min-width: 681px) {
  .imgWrapper:hover img {
    opacity: 0.6;
    scale: 1.1;
  }
  .sec2_cont01 ul li a:hover .txtBox h3 {
    color: #7CC03F;
  }
  .imgWrapper:hover .overlay {
    opacity: 1;
  }
}
.sec2_cont01 ul li a .txtBox {
  position: absolute;
  right: -20px;
  bottom: -37px;
  width: calc(100% - 70px);
}

.sec2_cont01 ul li a .txtBox p.txt {
  display: inline-block;
  background: #7CC03F;
  font-size: 18px;
  font-weight: bold;
  line-height: 100%;
  padding: 5px 10px;
  color: #fff;
}

.sec2_cont01 ul li a .txtBox p.txt span.t1 {
  margin-right: 10px;
}

.sec2_cont01 ul li a .txtBox h3 {
  background: #fff;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  margin-top: -2px;
  transition: 0.3s;
}

.sec2_cont01 .btn {
  text-align: center;
  margin-top: 149px;
}

@media screen and (max-width: 680px) {
  .sec2 {
    padding: 0 0 21.3333333333vw;
    position: relative;
  }
  .sec2 .bg {
    height: 26.9333333333vw;
    position: relative;
  }
  .sec2 .inner {
    position: unset;
    margin-top: 8vw;
  }
  .sec2 .inner h2 {
    margin-top: 8vw;
  }
  .sec2 .inner h2 span.t1 {
    color: #7CC03F;
    font-size: 3.7333333333vw;
    font-weight: 700;
    line-height: 100%;
  }
  .sec2 .inner h2 span.t2.inter {
    color: rgba(124, 192, 63, 0.08);
    font-size: 12vw;
    font-weight: 700;
    line-height: 100%;
    position: absolute;
    top: -4.2666666667vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .sec2_cont01 {
    margin-top: 6.4vw;
  }
  .sec2_cont01 ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 13.8666666667vw;
  }
  .sec2_cont01 ul li:nth-of-type(2n) {
    padding-top: 0;
  }
  .sec2_cont01 ul li a .imgWrapper img {
    height: 87.4666666667vw;
    padding-right: 5.3333333333vw;
  }
  .sec2_cont01 ul li a .txtBox {
    right: 0;
    bottom: -7.4666666667vw;
    width: 76.5333333333vw;
  }
  .sec2_cont01 ul li a .txtBox p.txt {
    font-size: 3.4666666667vw;
    padding: 1.3333333333vw 2.6666666667vw;
  }
  .sec2_cont01 ul li a .txtBox p.txt span.t1 {
    margin-right: 2.6666666667vw;
  }
  .sec2_cont01 ul li a .txtBox h3 {
    padding: 2.6666666667vw;
    font-size: 3.4666666667vw;
    margin-top: -0.5333333333vw;
  }
  .sec2_cont01 .btn {
    margin-top: 13.3333333333vw;
  }
}
/* トップページ section3
***************************************************************/
.sec3 {
  padding: 0 0 100px;
  position: relative;
  overflow: hidden;
}

.sec3::before {
  content: "";
  display: inline-block;
  width: 1200px;
  height: 1560px;
  position: absolute;
  top: 113px;
  left: 0;
  background: linear-gradient(to bottom, #7CC03F 67%, #e6e6e6 23%);
  z-index: -2;
}

.sec3 .inner {
  max-width: 1240px;
  position: relative;
  margin: unset;
  margin-left: 20px;
}

.sec3 .inner h2 {
  color: #FFF;
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
  margin-top: 15px;
}

.sec3 .inner p.en_title {
  color: rgba(124, 192, 63, 0.08);
  font-size: 118px;
  font-weight: 700;
  line-height: 100%;
  margin-top: 10px;
}

.sec3 .inner .sec3_box1 {
  margin-top: 45px;
  position: relative;
}

.sec3 .inner .sec3_box1 .wrap {
  margin-top: 45px;
  display: flex;
  gap: 100px;
}

.sec3 .inner .sec3_box1 .wrap .img {
  max-width: 520px;
  position: relative;
}

.sec3 .inner .sec3_box1 .wrap .img::before {
  position: absolute;
  content: "";
  background-color: #548E23;
  width: 520px;
  height: 350px;
  left: 60px;
  top: 20px;
  z-index: -1;
}

.sec3 .inner .sec3_box1 .wrap .txtBox {
  max-width: 509px;
}

.sec3 .inner .sec3_box1 .wrap .txtBox h3 {
  font-size: 28px;
  color: #7CC03F;
  background: #fff;
  display: inline;
  padding: 5px 20px;
  font-weight: 500;
}

.sec3 .inner .sec3_box1 .wrap .txtBox p {
  margin-top: 50px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.sec3 .btn a {
  background: #fff;
  color: #7CC03F;
  position: absolute;
  top: 70%;
  left: 50%;
}

.sec3_cont01 {
  margin-top: 145px;
}

.sec3_cont01 .sec3_tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.sec3_cont01 .sec3_tab li a {
  display: block;
  background: #C1C5CD;
  padding: 27px 0;
  text-align: center;
  color: #FFF;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 100%;
}

.sec3_cont01 .sec3_tab li.active a {
  background: #548E23;
}

.sec3_cont01 .sec3_area {
  display: flex;
}

.sec3_cont01 .sec3_area ul {
  flex: 1;
}

.sec3_cont01 .sec3_area ul li {
  border-bottom: 1px solid #C1C5CD;
}

.sec3_cont01 .sec3_area ul li p {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  display: inline;
  background: #548E23;
  padding: 8px 20px;
}

.sec3_cont01 .sec3_area ul li a {
  display: block;
  padding: 21px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  line-height: 100%;
  color: #1E1E1E;
  background: #fff;
}

.sec3_cont01 .sec3_area ul li a span {
  position: relative;
  left: 0;
  transition: 0.3s;
}

.sec3_cont01 .sec3_area .imgBox {
  width: 520px;
  height: 350px;
  position: relative;
}

.sec3_cont01 .sec3_area .imgBox img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s;
}

.sec3_cont01 .sec3_area .imgBox .img02,
.sec3_cont01 .sec3_area .imgBox .img03,
.sec3_cont01 .sec3_area .imgBox .img04,
.sec3_cont01 .sec3_area .imgBox .img05 {
  opacity: 0;
}

.sec3_cont01 .sec3_area .imgBox .img02.active,
.sec3_cont01 .sec3_area .imgBox .img03.active,
.sec3_cont01 .sec3_area .imgBox .img04.active,
.sec3_cont01 .sec3_area .imgBox .img05.active {
  opacity: 1;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sec3_cont02 {
  margin-top: 120px;
}

.sec3 .inner .sec3_cont02 h2 {
  color: #548E23;
}

.sec3_cont02 .sec3_area {
  margin-top: 25px;
}

@media screen and (min-width: 681px) {
  .sec3_cont01 .sec3_tab li a:hover {
    background: #548E23;
  }
  .sec3_cont01 .sec3_area ul li a:hover {
    color: #7CC03F;
  }
  .sec3_cont01 .sec3_area ul li a:hover span {
    left: 5px;
    color: #7CC03F;
  }
}
@media screen and (max-width: 680px) {
  .sec3 {
    padding: 0 0 40vw;
  }
  .sec3 .inner h2 {
    font-size: 8vw;
    margin-top: 1.3333333333vw;
  }
  .sec3 .inner p.en_title {
    font-size: 17.3333333333vw;
    margin-top: unset;
    position: relative;
    top: 2.6666666667vw;
  }
  .sec3::before {
    content: "";
    display: none;
    width: calc(100% - 5.6vw);
    height: 1680px;
    position: absolute;
    top: 13.3333333333vw;
    left: 0;
    background: linear-gradient(to bottom, #7CC03F 47%, #e6e6e6 41%);
    z-index: -2;
  }
  .sec3 .inner {
    margin: unset;
    margin-left: unset;
    margin-right: auto;
    width: 89.0666666667vw;
    padding-right: unset;
  }
  .sec3 .inner .sec3_box1 {
    margin-top: unset;
    position: relative;
  }
  .green_bg {
    background: #7CC03F;
    z-index: -2;
    margin: 0 calc(50% - 50vw);
    padding: 5.3333333333vw 4vw 5.3333333333vw 8vw;
  }
  .sec3 .inner .sec3_box1 .wrap {
    margin-top: 5.3333333333vw;
    display: flex;
    flex-flow: column-reverse;
    gap: 6.6666666667vw;
  }
  .sec3 .inner .sec3_box1 .wrap .img {
    max-width: 87.2vw;
    position: relative;
    order: 2;
  }
  .sec3 .inner .sec3_box1 .wrap .img::before {
    display: none;
  }
  .sec3 .inner .sec3_box1 .wrap .txtBox {
    max-width: 100%;
  }
  .sec3 .inner .sec3_box1 .wrap .txtBox h3 {
    font-size: 5.0666666667vw;
    color: #7CC03F;
    background: #fff;
    display: inline;
    padding: 1.3333333333vw 5.3333333333vw;
    font-weight: 500;
  }
  .sec3 .inner .sec3_box1 .wrap .txtBox p {
    margin-top: 6.6666666667vw;
    font-weight: 600;
    font-size: 3.4666666667vw;
    color: #fff;
  }
  .sec3 .btn a {
    background: #fff;
    color: #7CC03F;
    position: absolute;
    top: 107%;
    left: 1%;
  }
  .sec3_cont01 {
    margin-top: 26.6666666667vw;
  }
  .sec3_cont01 .sec3_tab {
    display: block;
    grid-template-columns: repeat(2, 1fr);
  }
  .sec3_cont01 .sec3_tab li.active a {
    background: #548E23;
  }
  .sec3_cont01 .sec3_area {
    position: relative;
  }
  .sec3_cont01 .sec3_area {
    display: flex;
  }
  .sec3_cont01 .sec3_area ul {
    flex: 1;
  }
  .sec3_cont01 .sec3_area ul li p {
    font-size: 3.4666666667vw;
    font-weight: 700;
    color: #fff;
    display: block;
    text-align: center;
    background: #548E23;
    padding: 3.6vw 0;
  }
  .sec3_cont01 .sec3_area ul li a {
    display: block;
    padding: 3.6vw 5.3333333333vw;
    display: flex;
    justify-content: space-between;
    font-size: 3.4666666667vw;
    line-height: 100%;
    color: #1E1E1E;
    background: #fff;
  }
  .sec3_cont01 .sec3_area ul li a span {
    position: relative;
    left: 0;
    transition: 0.3s;
  }
  .sec3_cont01 .sec3_area img {
    display: none;
  }
  .bg_gray {
    background: #e6e6e6;
    z-index: -2;
    margin: 0 calc(50% - 50vw);
    padding: 5.3333333333vw 4vw 5.3333333333vw 8vw;
  }
  .sec3_cont02 {
    margin-top: unset;
  }
  .sec3 .inner .sec3_cont02 h2 {
    color: #548E23;
  }
  .sec3_cont02 .sec3_area {
    margin-top: 6.6666666667vw;
  }
  .sec3_cont01 .sec3_area .imgBox {
    width: 520px;
    height: 350px;
    position: relative;
    display: none;
  }
}
@media screen and (min-width: 1290px) {
  .sec3 .inner {
    margin: 0 auto;
  }
  .sec3::before {
    width: calc(100% - 110px);
  }
}
/* トップページ section4
***************************************************************/
.sec4 {
  padding: 0;
}

.sec4_cont01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.sec4_cont01 .imgBox {
  position: relative;
}

.sec4_cont01 .imgBox img {
  height: 400px;
}

.sec4_cont01 .imgBox .en.inter {
  color: rgba(255, 255, 255, 0.25);
  font-family: Inter;
  font-size: 118px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  position: absolute;
  top: -19px;
  left: 13px;
}

.sec4_cont01 .txtBox h2 {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  background: #7CC03F;
  padding: 32px 0 33px 0;
}

.sec4_cont01 .txtBox p.txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.414px;
  padding: 11px 0 0 20px;
}

.sec4_cont01 .txtBox .btn {
  margin: 119px 0 0 20px;
}

@media screen and (max-width: 680px) {
  .sec4_cont01 {
    grid-template-columns: repeat(1, 1fr);
  }
  .sec4_cont01 .imgBox img {
    height: 61.3333333333vw;
  }
  .sec4_cont01 .imgBox .en.inter {
    font-size: 16vw;
    top: -2.4vw;
    left: 4.5333333333vw;
  }
  .sec4_cont01 .txtBox h2 {
    font-size: 3.7333333333vw;
    padding: 5.8666666667vw 0 6.4vw 0;
  }
  .sec4_cont01 .txtBox p.txt {
    font-size: 3.4666666667vw;
    padding: 5.3333333333vw 5.3333333333vw 0;
  }
  .sec4_cont01 .txtBox .btn {
    margin: 6.4vw 0 0;
    text-align: center;
  }
}
/* トップページ section5
***************************************************************/
.sec5 {
  padding: 175px 0 100px;
}

.sec5 .inner {
  max-width: 1240px;
}

.sec5 .inner h2 {
  text-align: center;
  position: relative;
}

.sec5 .inner h2 span.t1 {
  color: #7CC03F;
  font-size: 25px;
  font-weight: 700;
  line-height: 100%;
}

.sec5 .inner h2 span.t2.inter {
  color: rgba(124, 192, 63, 0.08);
  font-size: 118px;
  font-weight: 700;
  line-height: 100%;
  position: absolute;
  top: -89px;
  left: 50%;
  transform: translate(-50%, 0);
}

.sec5 .inner .sec5_cont01 {
  margin-top: 50px;
}

.sec5 .inner .sec5_cont01 ul {
  display: flex;
  flex-flow: column;
  gap: 60px;
}

.sec5 .inner .sec5_cont01 ul li {
  display: flex;
  flex-flow: column;
}

.sec5 .inner .sec5_cont01 ul li p.txt {
  font-size: 25px;
  background: #e6e6e6;
  padding: 27px 27px 28px 27px;
  display: flex;
  font-weight: 300;
  position: relative;
}

.sec5 .inner .sec5_cont01 ul li p.txt::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 15px 0 15px;
  border-color: #000000 transparent transparent transparent;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  /* 初期状態 */
  right: 27px;
  transition: transform 0.4s ease;
  /* アニメーションを適用 */
}

/* 開いたときに回転する */
.sec5 .inner .sec5_cont01 ul li .txt.active::before {
  transform: translateY(-50%) rotate(180deg);
  /* 半回転 */
}

.sec5 .inner .sec5_cont01 ul li .box p {
  background: #E3F6D3;
}

.sec5 .inner .sec5_cont01 ul li p.txt span.number {
  margin-right: 25px;
}

/* アコーディオンの開閉 */
.sec5 .inner .sec5_cont01 ul li .box {
  max-height: 0;
  /* 初期は閉じた状態 */
  overflow: hidden;
  transition: max-height 0.8s ease;
  /* 開閉のアニメーション */
}

/* 開いた状態 */
.sec5 .inner .sec5_cont01 ul li .box.open {
  max-height: 500px;
  /* 必要に応じて調整 */
}

.sec5 .inner .sec5_cont01 ul li p.txt2 {
  font-size: 25px;
  padding: 27px 27px 28px 27px;
  display: flex;
  font-weight: 300;
  position: relative;
}

.sec5 .inner .sec5_cont01 ul li p.txt2 span.number {
  margin-right: 25px;
}

.sec5 .inner .sec5_cont01 ul li .open::before {
  transform: rotate(-120deg);
}

.sec5 .inner .sec5_cont01 .btn {
  text-align: center;
  margin-top: 50px;
}

@media screen and (min-width: 680px) {
  .sec5_cont01 ul li:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 680px) {
  .sec5 {
    padding: 0 0 15.4666666667vw;
  }
  .sec5 .inner h2 span.t1 {
    font-size: 3.7333333333vw;
  }
  .sec5 .inner h2 span.t2.inter {
    font-size: 16vw;
    top: -8vw;
  }
  .sec5 .inner .sec5_cont01 {
    margin-top: 6.1333333333vw;
  }
  .sec5 .inner .sec5_cont01 ul {
    gap: 5.3333333333vw;
  }
  .sec5 .inner .sec5_cont01 ul li p.txt {
    font-size: 3.4666666667vw;
    padding: 3.4666666667vw 4vw;
    line-height: 1.3;
  }
  .sec5 .inner .sec5_cont01 ul li p.txt::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.8666666667vw 2.4vw 0 2.4vw;
    border-color: #000000 transparent transparent transparent;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    /* 初期状態 */
    right: 5.3333333333vw;
    transition: transform 0.4s ease;
    /* アニメーションを適用 */
  }
  /* 開いたときに回転する */
  .sec5 .inner .sec5_cont01 ul li .txt.active::before {
    transform: translateY(-50%) rotate(180deg);
    /* 半回転 */
  }
  .sec5 .inner .sec5_cont01 ul li .box p {
    background: #E3F6D3;
  }
  .sec5 .inner .sec5_cont01 ul li p.txt span.number {
    margin-right: 4vw;
  }
  /* アコーディオンの開閉 */
  .sec5 .inner .sec5_cont01 ul li .box {
    max-height: 0;
    /* 初期は閉じた状態 */
    overflow: hidden;
    transition: max-height 0.4s ease;
    /* 開閉のアニメーション */
  }
  /* 開いた状態 */
  .sec5 .inner .sec5_cont01 ul li .box.open {
    max-height: 500px;
    /* 必要に応じて調整 */
  }
  .sec5 .inner .sec5_cont01 ul li p.txt2 {
    font-size: 3.4666666667vw;
    padding: 3.4666666667vw 5.0666666667vw;
    display: flex;
    font-weight: 300;
    position: relative;
    letter-spacing: -0.144vw;
    line-height: 1.5;
  }
  .sec5 .inner .sec5_cont01 ul li p.txt2 span.number {
    margin-right: 2.6666666667vw;
  }
  .sec5 .inner .sec5_cont01 .btn {
    margin-top: 10.6666666667vw;
  }
}
/* section1
***************************************************************/
.about_sec1 {
  padding: 0 0 100px;
}

.about_sec1 .inner {
  max-width: 1240px;
}

.messageBox {
  margin-top: 100px;
}

.messageBox h3.title3 {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.messageBox h3.title3 .t1 {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 90px;
  background: #FF9900;
  padding-left: 30px;
  width: 540px;
  display: inline-block;
}

.messageBox h3.title3 .t2 {
  color: rgba(255, 153, 0, 0.15);
  font-size: 118px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: 0;
  flex: 1;
}

.messageBox .txtBox {
  padding: 30px;
  background: rgba(255, 153, 0, 0.15);
  box-shadow: 0px 2px 1px 1px rgba(0, 0, 0, 0.2);
}

.messageBox .txtBox h4.title4 {
  color: #FF9900;
  font-size: 35px;
  font-weight: 700;
  line-height: 180%;
  text-align: center;
  position: relative;
}

.messageBox .txtBox h4.title4::before {
  content: "";
  display: inline-block;
  width: 70px;
  border-top: 3px solid #FF9900;
  position: absolute;
  bottom: -30px;
  transform: translateX(-50%);
  left: 50%;
}

.messageBox .txtBox p.txt {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.414px;
  margin-top: 60px;
  text-align: justify;
}

.messageBox .txtBox p.strong {
  font-size: 25px;
  font-weight: 900;
  text-align: right;
  margin-top: 30px;
}

@media screen and (max-width: 680px) {
  .about_sec1 .inner {
    padding: unset;
  }
  .messageBox {
    margin-top: 13.3333333333vw;
  }
  .messageBox h3.title3 {
    height: auto;
    flex-flow: column-reverse;
    align-items: flex-start;
    gap: 0;
  }
  .messageBox h3.title3 .t1 {
    font-size: 6.6666666667vw;
    line-height: 15.4666666667vw;
    padding-left: 5.3333333333vw;
    width: 100%;
    display: block;
    background: linear-gradient(to right, #FF9900 92%, transparent 80%);
  }
  .messageBox h3.title3 .t2 {
    font-size: 16vw;
    top: 0;
    margin-left: 5.0666666667vw;
  }
  .messageBox .txtBox {
    padding: 5.3333333333vw;
    box-shadow: unset;
  }
  .messageBox .txtBox h4.title4 {
    font-size: 5.3333333333vw;
  }
  .messageBox .txtBox h4.title4::before {
    border-top: 0.8vw solid #FF9900;
    bottom: -2.6666666667vw;
  }
  .messageBox .txtBox p.txt {
    font-size: 3.3333333333vw;
    margin-top: 5.3333333333vw;
  }
  .messageBox .txtBox p.strong {
    font-size: 4vw;
    font-weight: 900;
    text-align: right;
    margin-top: 30px;
  }
}
/* section2
***************************************************************/
.about_sec2 {
  padding: 200px 0 100px;
}

.about_sec2 .inner {
  max-width: 1240px;
  background: rgba(163, 224, 108, 0.3);
  padding-bottom: 200px;
}

.about_sec2 h2 {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  top: -90px;
}

.about_sec2 h2 span.t1 {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 90px;
  background: #7CC03F;
  padding-left: 30px;
  width: 540px;
  display: inline-block;
}

.about_sec2 h2 span.t2 {
  color: rgba(124, 192, 63, 0.08);
  font-size: 118px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: 1px;
  flex: 1;
}

.about_sec2 .inner .about_sec2_cont {
  max-width: 1180px;
  margin: -40px auto;
}

.about_sec2 .inner .about_sec2_cont .title {
  font-size: 35px;
  color: #fff;
  text-align: center;
  background: #548E23;
}

.about_sec2 .inner .about_sec2_cont ul {
  display: flex;
  flex-flow: column;
  margin-top: 50px;
}

.about_sec2 .inner .about_sec2_cont ul li {
  position: relative;
  width: 530px;
}

.about_sec2 .inner .about_sec2_cont ul li + li {
  margin-top: 120px;
}

.about_sec2 .inner .about_sec2_cont ul li + li + li {
  margin-top: 200px;
}

.about_sec2 .inner .about_sec2_cont ul li:nth-child(2n) {
  margin-left: auto;
}

.about_sec2 .inner .about_sec2_cont ul li .txtBox {
  flex: 1;
  position: absolute;
  z-index: 1;
  padding: 50px 40px 50px 165px;
  background: #fff;
  top: 0;
  width: 760px;
  left: calc(100% - 110px);
  text-align: justify;
}

.about_sec2 .inner .about_sec2_cont ul li:nth-of-type(2) .txtBox {
  flex: 1;
  z-index: 1;
  background: #fff url("../../assets/images/about/woman.svg") no-repeat 50px 150px;
  background-size: 550px 440px;
  /* 透かし画像のサイズ調整 */
  opacity: 1;
  /* 背景全体の透明度を調整 */
  top: 0;
  width: 760px;
  left: calc(100% - 110px);
}

.about_sec2 .inner .about_sec2_cont ul li img {
  width: 530px;
  height: 467px;
  position: relative;
  z-index: 2;
}

.about_sec2 .inner .about_sec2_cont ul li:nth-child(even) .txtBox {
  left: unset;
  right: calc(100% - 110px);
  padding: 50px 165px 50px 40px;
}

.about_sec2 .inner .about_sec2_cont ul li .txtBox h3.title3 {
  color: #7CC03F;
  font-size: 25px;
  font-weight: 700;
  line-height: 180%;
  position: relative;
}

.about_sec2 .inner .about_sec2_cont ul li .txtBox h3.title3::before {
  content: "";
  display: inline-block;
  border-bottom: 3px solid #7CC03F;
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 70px;
}

.about_sec2 .inner .about_sec2_cont ul li .txtBox p.txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: -0.414px;
  margin-top: 40px;
}

@media screen and (max-width: 680px) {
  .about_sec2 {
    padding: 0 0 10.6666666667vw;
    margin-top: 21.3333333333vw;
  }
  .about_sec2 .inner {
    width: 100%;
    background: rgba(163, 224, 108, 0.3);
    padding-bottom: 16vw;
  }
  .about_sec2 h2 {
    height: auto;
    flex-flow: column-reverse;
    align-items: flex-start;
    gap: 0;
    top: -31.4666666667vw;
    left: -6.1333333333vw;
    margin-top: 0;
  }
  .about_sec2 h2 span.t1 {
    font-size: 6.6666666667vw;
    line-height: 15.4666666667vw;
    padding-left: 11.4666666667vw;
    width: 93.0666666667vw;
  }
  .about_sec2 h2 span.t2 {
    font-size: 16vw;
    top: 2.4vw;
    padding-left: unset;
  }
  .about_sec2 .inner .about_sec2_cont {
    margin-top: -24vw;
  }
  .about_sec2 .inner .about_sec2_cont .title {
    font-size: 4vw;
    color: #fff;
    text-align: center;
    background: #548E23;
  }
  .about_sec2 .inner .about_sec2_cont ul {
    gap: 5.3333333333vw;
    margin-top: 8vw;
  }
  .about_sec2 .inner .about_sec2_cont ul li {
    position: unset;
    width: 100%;
    margin: 0 auto;
  }
  .about_sec2 .inner .about_sec2_cont ul li + li {
    margin-top: unset;
  }
  .about_sec2 .inner .about_sec2_cont ul li:nth-child(2n) {
    margin-left: unset;
  }
  .about_sec2 .inner .about_sec2_cont ul li:nth-of-type(3) {
    margin-top: unset;
  }
  .about_sec2 .inner .about_sec2_cont ul li .txtBox {
    position: unset;
    z-index: 1;
    padding: 5.3333333333vw;
    background: #fff;
    top: 0;
    width: 100%;
    left: unset;
    text-align: justify;
  }
  .about_sec2 .inner .about_sec2_cont ul li:nth-of-type(2) .txtBox {
    background: #fff url("../../assets/images/about/woman.svg") no-repeat center 26.6666666667vw;
    background-size: 67.4666666667vw 74.9333333333vw;
    /* 透かし画像のサイズ調整 */
    width: 100%;
    left: calc(100% - 110px);
  }
  .about_sec2 .inner .about_sec2_cont ul li img {
    width: 100%;
    height: 80vw;
    position: unset;
    z-index: 2;
  }
  .about_sec2 .inner .about_sec2_cont ul li:nth-child(even) .txtBox {
    left: unset;
    right: unset;
    padding: 5.3333333333vw;
  }
  .about_sec2 .inner .about_sec2_cont ul li .txtBox h3.title3 {
    color: #7CC03F;
    font-size: 5.3333333333vw;
  }
  .about_sec2 .inner .about_sec2_cont ul li .txtBox h3.title3::before {
    content: "";
    display: inline-block;
    border-bottom: 2px solid #7CC03F;
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 11.4666666667vw;
  }
  .about_sec2 .inner .about_sec2_cont ul li .txtBox p.txt {
    font-size: 3.3333333333vw;
  }
}
/* section3
***************************************************************/
.about_sec3 .inner h2.title2 {
  text-align: center;
  position: relative;
}

.about_sec3 .inner h2.title2 span.t1 {
  color: #7CC03F;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 180%;
  position: absolute;
  top: 68px;
  left: 50%;
  transform: translate(-50%, 0);
}

.about_sec3 .inner h2.title2 span.t2.inter {
  color: rgba(124, 192, 63, 0.08);
  text-align: center;
  font-family: Inter;
  font-size: 118px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.about_sec3_cont01 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 35px;
  margin-top: 50px;
}

.about_sec3_cont01 ul li {
  background: #FFF;
}

.about_sec3_cont01 ul li img {
  height: 250px;
}

.about_sec3_cont01 ul li .txtBox {
  padding: 30px;
}

.about_sec3_cont01 ul li h3.title3 {
  text-align: center;
  color: #7CC03F;
  font-size: 25px;
  font-weight: 700;
  line-height: 180%;
  position: relative;
}

.about_sec3_cont01 ul li h3.title3::before {
  content: "";
  display: inline-block;
  width: 50px;
  border-top: 3px solid #7CC03F;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%, 0);
}

.about_sec3_cont01 ul li p.txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: -0.414px;
  margin-top: 18px;
}

@media screen and (max-width: 680px) {
  .about_sec3 {
    padding: 10.6666666667vw 0 13.3333333333vw;
  }
  .about_sec3 .page_title .ja {
    top: 5.6vw;
  }
  .about_sec3_cont01 ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8vw;
    margin-top: 5.3333333333vw;
  }
  .about_sec3_cont01 ul li img {
    height: 53.3333333333vw;
  }
  .about_sec3_cont01 ul li .txtBox {
    padding: 5.3333333333vw 0 5.3333333333vw;
  }
  .about_sec3_cont01 ul li h3.title3 {
    font-size: 5.3333333333vw;
  }
  .about_sec3_cont01 ul li h3.title3::before {
    width: 11.4666666667vw;
    border-top: 0.8vw solid #7CC03F;
    bottom: -4vw;
  }
  .about_sec3_cont01 ul li p.txt {
    font-size: 3.4666666667vw;
    margin-top: 8vw;
  }
}
/* section4
***************************************************************/
.about_sec4 .inner {
  max-width: 1240px;
}

.about_sec4_cont01 {
  margin-top: 80px;
}

@media screen and (max-width: 1200px) {
  .about_sec4_cont01 {
    padding: 0 20px;
  }
}
.about_sec4_cont01 ul li {
  background: #FFF;
}

.inner .about_sec4_cont01 ul li .textBox1 + li + li {
  margin-top: 100px;
}

.about_sec4_cont01 ul li .txtBox1 {
  display: flex;
  gap: 110px;
}

.about_sec4_cont01 ul li .txtBox1 .found {
  width: 520px;
}

.about_sec4_cont01 ul li .txtBox2 .found {
  width: 520px;
}

.about_sec4_cont01 ul li .txtBox2 {
  margin-top: 150px;
  display: flex;
  display: -webkit-flex; /* Safari用 */
  flex-direction: row-reverse;
  gap: 110px;
}

.about_sec4_cont01 ul li .txtBox1 .found .txt2 {
  font-size: 18px;
}

.about_sec4_cont01 ul li .txtBox2 .found .txt2 {
  font-size: 18px;
}

.found .sec4_square {
  background: linear-gradient(to right, #7CC03F 92%, transparent 80%);
  margin-top: 50px;
  padding: 10px;
  position: relative;
}

.found .sec4_square h3 {
  font-size: 20px;
  color: #fff;
  padding-left: 91px;
  position: relative;
}

.found .sec4_square h3::before {
  content: "";
  display: inline-block;
  border-top: 3px solid #fff;
  width: 162px;
  position: absolute;
  bottom: -10px;
  left: 22%;
  transform: translate(-50%, 0);
}

.found .sec4_square p.txt {
  padding-left: 56px;
}

.found .sec4_square p.txt span.t1 {
  font-size: 45px;
  color: #FFF600;
  font-weight: 700;
  line-height: 1;
  font-family: Inter;
}

.found .sec4_square p.txt span.t2 {
  font-size: 30px;
  color: #FFF600;
  font-weight: 700;
  line-height: 1;
}

.found .sec4_square img {
  width: 301px;
  position: absolute;
  bottom: -3px;
  left: 40%;
}

.txtBox2 .found .sec4_square img {
  width: 180px;
  position: absolute;
  bottom: -7px;
  left: 45%;
}

.about_sec4_cont01 ul li h3 {
  font-size: 25px;
  color: #000;
  font-weight: 700;
  position: relative;
}

.about_sec4_cont01 ul li h3::before {
  content: "";
  display: inline-block;
  border-top: 3px solid #000;
  width: 30px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
}

.about_sec4_cont01 ul li p.txt {
  margin-top: 26px;
}

.about_sec4_cont01 ul li p.txt span.t1 {
  font-size: 68px;
  color: #7CC03F;
  font-weight: 700;
  line-height: 1;
  font-family: Inter;
}

.about_sec4_cont01 ul li p.txt span.t2 {
  font-size: 45px;
  color: #7CC03F;
  font-weight: 700;
  line-height: 1;
}

.about_sec4_cont01 ul li .txtBox1 .img {
  max-width: 610px;
  position: relative;
  z-index: 2;
}

.about_sec4_cont01 ul li .txtBox1 .img::before {
  position: absolute;
  content: "";
  background-color: #7CC03F;
  width: 610px;
  height: 365px;
  top: 50px;
  left: -50px;
  z-index: -1;
}

.about_sec4_cont01 ul li .txtBox2 .img {
  max-width: 610px;
  position: relative;
  z-index: 2;
}

@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .about_sec4_cont01 ul li .txtBox2 .img {
      max-width: 610px;
      position: relative;
      z-index: 2;
    }
  }
}
.about_sec4_cont01 ul li .txtBox2 .img::before {
  position: absolute;
  content: "";
  background-color: #7CC03F;
  width: 610px;
  height: 365px;
  top: 50px;
  left: 50px;
  z-index: -1;
}

.about_sec4_cont02 {
  display: flex;
  gap: 20px;
  margin-top: 150px;
}

.about_sec4_cont02 h3 {
  font-size: 25px;
  color: #000;
  font-weight: 700;
  position: relative;
  text-align: center;
}

.about_sec4_cont02 h3::before {
  content: "";
  display: inline-block;
  border-top: 3px solid #000;
  width: 30px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, 0);
}

.about_sec4_cont02 .oldYear {
  width: 340px;
  padding: 30px 60px;
  border-right: 2px solid #7CC03F;
  border-bottom: 2px solid #7CC03F;
}

.about_sec4_cont02 .twenty {
  width: 1080px;
  padding: 20px 0 50px;
  text-align: center;
  position: relative;
  border-right: 2px solid #7CC03F;
  border-bottom: 2px solid #7CC03F;
}

.about_sec4_cont02 .twenty h3 {
  margin-top: 25px;
}

.about_sec4_cont02 .twenty .row {
  margin-top: 60px;
}

.about_sec4_cont02 p.txt {
  margin-top: 29px;
  font-family: Inter;
}

.about_sec4_cont02 p.txt + .txt {
  margin-top: 10px;
}

.about_sec4_cont02 p.txt span.t1 {
  color: #3F82C0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-right: 30px;
  position: relative;
  top: -10px;
}

.about_sec4_cont02 .txt.type2 span.t1 {
  color: #C03F3F;
}

.about_sec4_cont02 p.txt span.t2 {
  font-size: 68px;
  color: #7CC03F;
  font-weight: 700;
  line-height: 1;
}

.about_sec4_cont02 p.txt span.t3 {
  font-size: 45px;
  color: #7CC03F;
  font-weight: 700;
  line-height: 1;
}

.about_sec4_cont02 img.img1 {
  width: 235px;
  position: absolute;
  top: 45%;
  left: 0px;
  transform: translate(0, -50%) scaleX(-1);
}

.about_sec4_cont02 img.img2 {
  width: 235px;
  position: absolute;
  top: 45%;
  right: 0px;
  transform: translate(0, -50%);
}

.about_sec4_cont03 {
  margin-top: 100px;
}

.about_sec4_cont03 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about_sec4_cont03 ul li {
  background: #FFF;
  padding: 20px 0 184px;
  text-align: center;
  position: relative;
  border-right: 2px solid #7CC03F;
  border-bottom: 2px solid #7CC03F;
}

.about_sec4_cont03 ul li h3 {
  font-size: 25px;
  color: #000;
  font-weight: 700;
  position: relative;
}

.about_sec4_cont03 ul li h3::before {
  content: "";
  display: inline-block;
  border-top: 3px solid #000;
  width: 30px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
}

.about_sec4_cont03 ul li p.txt {
  margin-top: 26px;
}

.about_sec4_cont03 ul li p.txt span.t1 {
  font-size: 68px;
  color: #7CC03F;
  font-weight: 700;
  line-height: 1;
  font-family: Inter;
}

.about_sec4_cont03 ul li p.txt span.t2 {
  font-size: 45px;
  color: #7CC03F;
  font-weight: 700;
  line-height: 1;
}

.about_sec4_cont03 ul li img {
  width: 140px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

@media screen and (max-width: 680px) {
  .about_sec4 {
    padding: 13.3333333333vw 0;
  }
  .about_sec4 .inner {
    padding: 0 5.3333333333vw;
  }
  .about_sec4 .page_title .ja {
    top: 5.6vw;
  }
  .about_sec4_cont01 {
    margin-top: 6.1333333333vw;
    padding: unset;
  }
  .about_sec4_cont01 ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8vw;
  }
  .about_sec4_cont01 ul li {
    padding: 2.1333333333vw 0 1.0666666667vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4vw;
  }
  .about_sec4_cont01 ul li:nth-of-type(2) {
    margin-top: unset;
  }
  .about_sec4_cont01 ul li:nth-of-type(3) {
    margin-top: unset;
  }
  .about_sec4_cont01 ul li .txtBox1 {
    display: flex;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
  .about_sec4_cont01 ul li .txtBox1 .img::before {
    display: none;
  }
  .about_sec4_cont01 ul li .txtBox1 .found {
    width: 100%;
    order: 2;
  }
  .about_sec4_cont01 ul li .txtBox1 .found .txt2 {
    font-size: 3.3333333333vw;
  }
  .about_sec4_cont01 ul li .txtBox2 {
    margin-top: unset;
    display: flex;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
  .about_sec4_cont01 ul li .txtBox2 .found {
    order: 2;
    width: 100%;
  }
  .about_sec4_cont01 ul li .txtBox2 .found .txt2 {
    font-size: 3.3333333333vw;
    text-align: justify;
  }
  .found .sec4_square {
    background: #7CC03F;
    margin-top: 2.6666666667vw;
    padding: 2.6666666667vw 0;
  }
  .found .sec4_square h3 {
    font-size: 5.3333333333vw;
    padding-left: 13.3333333333vw;
  }
  .found .sec4_square h3::before {
    width: 29.0666666667vw;
  }
  .found .sec4_square p.txt {
    padding-left: 4vw;
  }
  .found .sec4_square p.txt span.t1 {
    font-size: 12vw;
  }
  .found .sec4_square p.txt span.t2 {
    font-size: 8vw;
    color: #FFF600;
    font-weight: 700;
    line-height: 1;
  }
  .txtBox1 .found .sec4_square img {
    width: 52.5333333333vw;
    position: absolute;
    bottom: 2.6666666667vw;
    left: 40%;
  }
  .txtBox2 .found .sec4_square img {
    width: 33.3333333333vw;
    position: absolute;
    bottom: 0;
    left: 55%;
  }
  .about_sec4_cont01 ul li .txtBox1 .img {
    width: 100%;
    margin: unset;
    padding: unset;
  }
  .about_sec4_cont01 ul li .txtBox2 .img {
    max-width: 100%;
    position: relative;
    z-index: 2;
    order: 1;
  }
  .about_sec4_cont01 ul li .txtBox2 .img::before {
    display: none;
  }
  .about_sec4_cont02 {
    display: flex;
    flex-direction: column;
    gap: 8vw;
    margin-top: 8vw;
  }
  .about_sec4_cont02 h3 {
    font-size: 3.7333333333vw;
  }
  .about_sec4_cont02 h3::before {
    border-top: 2px solid #000;
    width: 5.3333333333vw;
  }
  .about_sec4_cont02 .oldYear {
    display: flex;
    gap: 8vw;
    justify-content: center;
    padding: unset;
    border-right: 2px solid #7CC03F;
    border-bottom: 2px solid #7CC03F;
    width: 100%;
  }
  .about_sec4_cont02 .oldYear img {
    width: 30.4vw;
  }
  .about_sec4_cont02 .twenty {
    margin-top: VW(30);
    width: 100%;
    padding: 5.3333333333vw;
    text-align: center;
    position: relative;
    border-right: 2px solid #7CC03F;
    border-bottom: 2px solid #7CC03F;
  }
  .about_sec4_cont02 .twenty h3 {
    margin-top: unset;
  }
  .about_sec4_cont02 .twenty .row {
    margin-top: 5.3333333333vw;
  }
  .about_sec4_cont02 p.txt span.t1 {
    font-size: 5.3333333333vw;
    margin-right: 6.6666666667vw;
  }
  .about_sec4_cont02 p.txt span.t2 {
    font-size: 12vw;
  }
  .about_sec4_cont02 p.txt span.t3 {
    font-size: 8vw;
  }
  .about_sec4_cont02 img.img1 {
    display: none;
  }
  .about_sec4_cont02 img.img2 {
    display: none;
  }
  .about_sec4_cont03 {
    margin-top: 8vw;
  }
  .about_sec4_cont03 ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8vw;
  }
  .about_sec4_cont03 ul li {
    width: 100%;
    padding: unset;
    text-align: center;
    position: unset;
    border-right: 2px solid #7CC03F;
    border-bottom: 2px solid #7CC03F;
  }
  .about_sec4_cont03 .txtBox {
    display: flex;
    justify-content: center;
    gap: 8vw;
  }
  .about_sec4_cont03 .txtBox .div {
    width: 42.6666666667vw;
  }
  .about_sec4_cont03 ul li h3 {
    font-size: 3.7333333333vw;
    color: #000;
    font-weight: 700;
    position: relative;
  }
  .about_sec4_cont03 ul li h3::before {
    border-top: 0.5333333333vw solid #000;
    width: 5.3333333333vw;
    bottom: -1.3333333333vw;
  }
  .about_sec4_cont03 ul li p.txt {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .about_sec4_cont03 ul li p.txt span.t1 {
    font-size: 12vw;
    color: #7CC03F;
    font-weight: 700;
    line-height: 1;
    font-family: Inter;
  }
  .about_sec4_cont03 ul li p.txt span.t2 {
    font-size: 8vw;
    color: #7CC03F;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 0.8vw;
  }
  .about_sec4_cont03 ul li img {
    width: 30.6666666667vw;
    position: unset;
    transform: unset;
  }
}
/* section5
***************************************************************/
.about_sec5 {
  overflow: hidden;
  padding-bottom: 0;
}

.about_sec5 .inner h2.title2 {
  text-align: center;
  position: relative;
}

.about_sec5 .inner h2.title2 span.t1 {
  color: #7CC03F;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 180%;
  position: absolute;
  top: 68px;
  left: 50%;
  transform: translate(-50%, 0);
}

.about_sec5 .inner h2.title2 span.t2.inter {
  color: rgba(124, 192, 63, 0.08);
  text-align: center;
  font-family: Inter;
  font-size: 118px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.about_sec5_cont01 {
  margin-top: 80px;
}

.about_sec5_cont01 table {
  border: 1px solid #000;
  width: 100%;
}

.about_sec5_cont01 table tbody tr th {
  width: 25%;
  border: 1px solid #000;
  background: #D9D9D9;
  text-align: center;
  vertical-align: middle;
  padding: 23px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.414px;
}

.about_sec5_cont01 table tbody tr td {
  width: 75%;
  border: 1px solid #000;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.414px;
  padding: 23px;
}

.about_sec5_cont01 .imgBox img {
  margin-top: 60px;
}

.about_sec5_cont02 {
  margin-top: 80px;
}

.about_sec5_cont02 h3.title3 {
  font-size: 28px;
  font-weight: bold;
}

.about_sec5_cont02 iframe {
  display: block;
  width: 100%;
  height: 500px;
  margin-top: 30px;
}

.about_sec5_cont02 .btn {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 680px) {
  .about_sec5 {
    padding: 0;
  }
  .about_sec5 .page_title .ja {
    top: 16.8vw;
  }
  .about_sec5_cont01 {
    margin: 7.2vw 0 0;
  }
  .about_sec5_cont01 table tbody tr th {
    width: 30%;
    padding: 6.1333333333vw 0;
    font-size: 3.4666666667vw;
  }
  .about_sec5_cont01 table tbody tr td {
    width: 70%;
    font-size: 3.4666666667vw;
    padding: 4vw 4vw;
  }
  .about_sec5_cont01 .imgBox img {
    margin-top: 10.6666666667vw;
  }
  .about_sec5_cont02 {
    margin: 10.6666666667vw 0 0;
  }
  .about_sec5_cont02 h3.title3 {
    font-size: 4.2666666667vw;
  }
  .about_sec5_cont02 iframe {
    height: 66.6666666667vw;
    margin-top: 8vw;
  }
  .about_sec5_cont02 .btn {
    margin-top: 6.4vw;
  }
}
/* section1
***************************************************************/
.intern_sec1 .inner {
  max-width: 1240px;
}

.intern_accordion-area {
  display: flex;
  flex-flow: column;
  gap: 50px;
  margin-top: 90px;
}

/*アコーディオンタイトル*/
.intern_title {
  position: relative;
  cursor: pointer;
}

.intern_title::after {
  content: "▶";
  display: inline-block;
  font-size: 20px;
  color: #fff;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, 0) rotate(90deg);
}

/*アコーディオンで現れるエリア*/
.intern_box {
  display: none;
  background: #E3F6D3;
  padding: 100px 70px;
}

.intern_title {
  text-align: center;
  background: #7CC03F;
  padding: 25px 0 51px;
}

.intern_title span.t1 {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  line-height: 100%;
  display: block;
}

.intern_title span.t2 {
  color: #FFF;
  font-size: 35px;
  font-weight: 900;
  line-height: 100%;
  display: block;
  margin-top: 14px;
}

.intern_accordion-area li .intern_title::before {
  content: "";
  display: inline-block;
  background-image: url(../images/intern/01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 210px;
  height: 137px;
  position: absolute;
  top: 50%;
  left: 223px;
  transform: translate(0, -50%);
}

.intern_accordion-area li:nth-of-type(2) .intern_title::before {
  background-image: url(../images/intern/02.svg);
}

.intern_accordion-area li:nth-of-type(3) .intern_title::before {
  background-image: url(../images/intern/03.svg);
}

.intern_accordion-area li:nth-of-type(4) .intern_title::before {
  background-image: url(../images/intern/04.svg);
}

.intern_box .txtBox {
  position: relative;
  font-size: 18px;
  font-weight: 300;
  line-height: 200%;
  flex: 1;
}

.intern_box h4.title4 {
  color: #7CC03F;
  font-size: 35px;
  font-weight: 900;
  line-height: 100%;
  position: relative;
  padding-bottom: 40px;
}

.intern_box h4.title4::before {
  content: "";
  display: inline-block;
  width: 70px;
  border-top: 3px solid #7CC03F;
  position: absolute;
  left: 0;
  bottom: 0;
}

.intern_box .cont1 {
  display: flex;
  gap: 90px;
}

.intern_box .txtHead_content01 {
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.intern_box .txtHead_content01 ul {
  margin-top: 30px;
  display: flex;
  flex-flow: column;
  gap: 5px;
}

.intern_box .txtHead_content01 ul li p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.intern_box .txtHead_content01 ul li p::before {
  content: "1";
  /* 表示する数字 */
  width: 20px;
  /* 円のサイズ */
  height: 20px;
  background-color: #7CC03F;
  /* 背景色 */
  color: #E3F6D3;
  /* 数字の色 */
  border-radius: 50%;
  /* 円形にする */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* 数字のサイズ */
  font-weight: 300;
  margin-top: 3px;
  line-height: 1.1;
  padding-left: 1px;
}

.intern_box .txtHead_content01 ul li:nth-of-type(2) p::before {
  content: "2";
  /* 表示する数字 */
  width: 20px;
  /* 円のサイズ */
  height: 20px;
  background-color: #7CC03F;
  /* 背景色 */
  color: #E3F6D3;
  /* 数字の色 */
  border-radius: 50%;
  /* 円形にする */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* 数字のサイズ */
  font-weight: 300;
  line-height: 1.1;
  padding-left: 1px;
}

.intern_box .txtHead_content01 ul li:nth-of-type(3) p::before {
  content: "3";
  /* 表示する数字 */
  width: 20px;
  /* 円のサイズ */
  height: 20px;
  background-color: #7CC03F;
  /* 背景色 */
  color: #E3F6D3;
  /* 数字の色 */
  border-radius: 50%;
  /* 円形にする */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* 数字のサイズ */
  font-weight: 300;
  line-height: 1.1;
  padding-left: 1px;
}

.intern_box .txtHead_content02 {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.intern_box .txtHead_content02 ul {
  margin-top: 30px;
}

.intern_box .txtHead_content02 ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 200%;
}

.intern_box .txtHead_content02 ul li:not(:first-child) {
  margin-top: 30px;
}

.intern_box .txtHead_content02 ul li p.text1 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #7CC03F;
  font-weight: 700;
}

.intern_box .txtHead_content02 ul li p.text1::before {
  content: "1";
  /* 表示する数字 */
  width: 20px;
  /* 円のサイズ */
  height: 20px;
  background-color: #7CC03F;
  /* 背景色 */
  color: #E3F6D3;
  /* 数字の色 */
  border-radius: 50%;
  /* 円形にする */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* 数字のサイズ */
  font-weight: 300;
  margin-top: 3px;
  line-height: 1.1;
  padding-left: 1px;
}

.intern_box .txtHead_content02 ul li:nth-of-type(2) p.text1::before {
  content: "2";
  /* 表示する数字 */
  width: 20px;
  /* 円のサイズ */
  height: 20px;
  background-color: #7CC03F;
  /* 背景色 */
  color: #E3F6D3;
  /* 数字の色 */
  border-radius: 50%;
  /* 円形にする */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* 数字のサイズ */
  font-weight: 300;
  line-height: 1.1;
  padding-left: 1px;
}

.intern_box .txtHead_content02 ul li:nth-of-type(3) p.text1::before {
  content: "3";
  /* 表示する数字 */
  width: 20px;
  /* 円のサイズ */
  height: 20px;
  background-color: #7CC03F;
  /* 背景色 */
  color: #E3F6D3;
  /* 数字の色 */
  border-radius: 50%;
  /* 円形にする */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* 数字のサイズ */
  font-weight: 300;
  line-height: 1.1;
  padding-left: 1px;
}

.intern_box .txtHead_content02 ul li:nth-of-type(4) p.text1::before {
  content: "4";
  /* 表示する数字 */
  width: 20px;
  /* 円のサイズ */
  height: 20px;
  background-color: #7CC03F;
  /* 背景色 */
  color: #E3F6D3;
  /* 数字の色 */
  border-radius: 50%;
  /* 円形にする */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  /* 数字のサイズ */
  font-weight: 300;
  line-height: 1.1;
  padding-left: 1px;
}

.intern_box .txtHead_content02 ul li p.text2 {
  padding-left: 35px;
}

.intern_box .txtHead_content02 ul p.color_red {
  margin-top: 50px;
  color: #FF0000;
}

.intern_accordion-area li:nth-of-type(1) .txtHead_content02 ul p.color_red {
  display: none;
}

.intern_accordion-area li:nth-of-type(2) .txtHead_content02 ul p.color_red {
  display: none;
}

.intern_box .imgBox {
  max-width: 380px;
  display: flex;
  flex-flow: column;
  gap: 100px;
}

@media screen and (min-width: 681px) {
  .intern_box .txtHead .img1,
  .intern_box .txtHead .img2 {
    opacity: 0.7;
  }
}
.intern_box .tableWrap {
  margin-top: 150px;
}

.intern_box .tableWrap table {
  border: 1px solid #000;
  width: 100%;
  margin-top: 45px;
}

.intern_box .tableWrap table tbody tr th {
  width: 25%;
  border: 1px solid #000;
  background: #D9D9D9;
  text-align: center;
  vertical-align: middle;
  padding: 23px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.414px;
}

.intern_box .tableWrap table tbody tr td {
  width: 75%;
  border: 1px solid #000;
  background: #fff;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: -0.414px;
  padding: 23px;
  font-family: "Courier New", monospace;
}

.intern_box .tableWrap table tbody tr td ul li {
  display: flex;
}

.intern_box .tableWrap table tbody tr td ul li p:nth-of-type(1) {
  width: 175px;
}

.intern_box .tableWrap table tbody tr td ul li p:nth-of-type(2) {
  flex: 1;
}

.rikunabi {
  padding: 0 66px 10px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.rikunabi img {
  width: 100%;
}

@media screen and (min-width: 681px) {
  .rikunabi a:hover,
  .rikunabi a img:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 680px) {
  .intern_sec1 {
    padding: 13.3333333333vw 0 37.3333333333vw;
  }
  .intern_accordion-area {
    gap: 6.6666666667vw;
    margin-top: 13.3333333333vw;
  }
  .intern_title::after {
    font-size: 3.7333333333vw;
    bottom: 1.3333333333vw;
  }
  .intern_box {
    padding: 6.6666666667vw 0;
  }
  .intern_title {
    padding: 4vw 0 11.2vw;
  }
  .intern_title span.t1 {
    font-size: 3.7333333333vw;
  }
  .intern_title span.t2 {
    font-size: 5.3333333333vw;
    margin-top: 2.9333333333vw;
  }
  .intern_accordion-area li .intern_title::before {
    width: 27.4666666667vw;
    height: 16.5333333333vw;
    position: absolute;
    top: unset;
    left: 2.9333333333vw;
    bottom: 1.8666666667vw;
    transform: unset;
  }
  .intern_box .txtBox {
    position: relative;
    font-size: 3.4666666667vw;
    font-weight: 300;
    line-height: 200%;
    flex: 1;
  }
  .intern_box h4.title4::before {
    width: 18.6666666667vw;
    border-top: 0.8vw solid #7CC03F;
  }
  .intern_box .txtBox {
    position: relative;
    font-size: 18px;
    font-weight: 300;
    line-height: 200%;
    flex: 1;
  }
  .intern_box h4.title4 {
    color: #7CC03F;
    font-size: 6.6666666667vw;
    font-weight: 900;
    line-height: 100%;
    position: relative;
    padding-bottom: 5.3333333333vw;
    text-align: left;
  }
  .intern_box .cont1 {
    display: flex;
    flex-flow: column;
    gap: 12vw;
    padding: 0 4vw;
  }
  .intern_box .txtHead_content01 {
    font-size: 3.4666666667vw;
    position: relative;
    z-index: 1;
  }
  .intern_box .txtHead_content01 ul {
    margin-top: 5.3333333333vw;
    gap: 0.2666666667vw;
  }
  .intern_box .txtHead_content01 ul li {
    position: relative;
  }
  .intern_box .txtHead_content01 ul li p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3.2vw;
    line-height: 200%;
  }
  .intern_box .txtHead_content01 ul li p::before,
  .intern_box .txtHead_content01 ul li:nth-of-type(2) p::before,
  .intern_box .txtHead_content01 ul li:nth-of-type(3) p::before {
    font-size: 3.4666666667vw;
    width: 3.4666666667vw;
    /* 円のサイズ */
    height: 3.4666666667vw;
    line-height: 1.3;
    padding-left: 0.0533333333vw;
    margin-top: unset;
  }
  .sp_img {
    margin-top: 5.3333333333vw;
  }
  .intern_box .imgBox {
    margin-top: 48vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 380px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    place-content: center;
    gap: 1200px;
    width: 80%;
  }
  .intern_box .imgBox .img3 {
    display: none;
  }
  .intern_box .txtHead_content02 {
    margin-top: 8vw;
    position: relative;
    z-index: 1;
  }
  .intern_box .txtHead_content02 ul {
    margin-top: 5.3333333333vw;
    position: relative;
  }
  .intern_box .txtHead_content02 ul li {
    font-size: 3.4666666667vw;
    font-weight: 300;
    line-height: 200%;
  }
  .intern_box .txtHead_content02 ul li:not(:first-child) {
    margin-top: 30px;
  }
  .intern_box .txtHead_content02 ul li p.text1 {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 3.2vw;
    color: #7CC03F;
    font-weight: 700;
  }
  .intern_box .txtHead_content02 ul li p.text2 {
    padding-left: 6.6666666667vw;
    text-align: justify;
    letter-spacing: -0.144vw;
  }
  .intern_box .txtHead_content02 ul p.color_red {
    font-size: 3.2vw;
    margin-top: 2.6666666667vw;
    padding-left: 6.6666666667vw;
    line-height: 1.4;
  }
  .intern_box .txtHead_content02 ul li p.text1::before,
  .intern_box .txtHead_content02 ul li:nth-of-type(2) p.text1::before,
  .intern_box .txtHead_content02 ul li:nth-of-type(3) p.text1::before,
  .intern_box .txtHead_content02 ul li:nth-of-type(4) p.text1::before {
    font-size: 3.4666666667vw;
    width: 3.4666666667vw;
    /* 円のサイズ */
    height: 3.4666666667vw;
    margin-top: 1.6vw;
    line-height: 1.3;
    padding-left: 0.0266666667vw;
  }
  .intern_box .tableWrap {
    margin-top: 10.6666666667vw;
  }
  .tableWrap h4.title4 {
    text-align: center;
    padding-bottom: unset;
  }
  .tableWrap h4.title4::before {
    display: none;
  }
  .intern_box .tableWrap table {
    margin-top: 4vw;
  }
  .intern_box .tableWrap table tbody tr th {
    width: 30%;
    padding: 6.1333333333vw 0;
    font-size: 3.4666666667vw;
  }
  .intern_box .tableWrap table tbody tr td {
    width: 70%;
    font-size: 3.3333333333vw;
    padding: 3.7333333333vw;
    letter-spacing: -0.144vw;
  }
  .intern_box .tableWrap table tbody tr td ul li p:nth-of-type(1) {
    width: 30.6666666667vw;
  }
  .intern_box .tableWrap table tbody tr td .entry {
    padding: 1.3333333333vw;
  }
  .rikunabi {
    flex-flow: column;
    gap: 5.3333333333vw;
    padding: unset;
  }
}
/* section1
***************************************************************/
.interview_sec1 .inner {
  max-width: 1240px;
}

.interview_sec1 .content {
  margin-top: 100px;
}

.interview_sec1 .content ul {
  display: flex;
  flex-flow: column;
  gap: 100px;
}

.interview_sec1 .content ul li {
  display: flex;
  gap: 180px;
}

.interview_sec1 .content ul li:nth-child(2n) {
  flex-flow: row-reverse;
}

.interview_sec1 .content ul li h3.title {
  color: #7CC03F;
  font-size: 25px;
  font-weight: 700;
  line-height: 180%;
  position: relative;
  margin-right: calc(50% - 50vw);
}

.interview_sec1 .content ul li h3.title::before {
  content: "";
  display: inline-block;
  width: 70px;
  border-top: 3px solid #7CC03F;
  position: absolute;
  bottom: -15px;
}

.interview_sec1 .content ul li h4 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  background: #7CC03F;
  display: inline;
  padding: 0 20px;
}

.interview_sec1 .content .txtBox {
  flex: 1;
}

.interview_sec1 .content .txtBox p {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  text-align: justify;
  letter-spacing: -0.414px;
}

.interview_sec1 .content ul li.special {
  display: flex;
  gap: 120px;
  justify-content: space-between;
}

.txtBox_strong {
  flex: 1;
  text-align: center;
  max-width: 594px;
  padding: 0 20px 26px 20px;
}

.txtBox_strong p {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: -0.414px;
}

.txtBox_strong img {
  margin-top: 10px;
  width: 554px;
}

.interview_sec1 .content .img {
  position: relative;
  max-width: 540px;
}

.interview_sec1 .content .img::before {
  position: absolute;
  content: "";
  background-color: #7CC03F;
  width: 540px;
  height: 100%;
  left: -60px;
  top: 20px;
  z-index: -1;
}

.interview_sec1 .content ul li:nth-child(2n) .img::before {
  position: absolute;
  content: "";
  background-color: #7CC03F;
  width: 540px;
  height: 100%;
  left: 60px;
  top: 20px;
  z-index: -1;
}

@media screen and (max-width: 680px) {
  .interview_sec1 {
    padding: 8vw 0 26.6666666667vw;
  }
  .interview_sec1 .content {
    margin-top: 8vw;
  }
  .interview_sec1 .content ul {
    display: flex;
    flex-flow: column;
    gap: 8vw;
  }
  .interview_sec1 .content ul li {
    display: flex;
    flex-flow: column;
    gap: 8vw;
  }
  .interview_sec1 .content ul li:nth-child(2n) {
    flex-flow: column;
    gap: 8vw;
  }
  .interview_sec1 .content ul li h3.title {
    font-size: 3.8666666667vw;
  }
  .interview_sec1 .content ul li h3.title::before {
    width: 11.4666666667vw;
    bottom: -3.7333333333vw;
    border-top: 2px solid #7CC03F;
  }
  .interview_sec1 .content ul li h4 {
    font-size: 4vw;
    font-weight: 700;
    color: #fff;
    background: #7CC03F;
    display: inline;
    padding: 0 20px;
  }
  .interview_sec1 .content .txtBox {
    flex: 1;
  }
  .interview_sec1 .content .txtBox p {
    margin-top: 8vw;
    font-size: 3.4666666667vw;
    letter-spacing: -0.144vw;
  }
  .interview_sec1 .content ul li.special {
    gap: 8vw;
  }
  .txtBox_strong {
    flex: 1;
    text-align: center;
    max-width: 100%;
    padding: unset;
  }
  .txtBox_strong p {
    font-size: 3.3333333333vw;
    margin-top: 10px;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: -0.414px;
  }
  .txtBox_strong img {
    margin-top: 10px;
    width: 100%;
  }
  .interview_sec1 .content .img {
    position: relative;
    max-width: 100%;
  }
  .interview_sec1 .content .img::before {
    display: none;
  }
  .interview_sec1 .content ul li:nth-child(2n) .img::before {
    display: none;
  }
}
/* section2
***************************************************************/
.interview_sec2 {
  background: rgba(163, 224, 108, 0.3);
  padding: 0 0 200px;
  margin-top: 200px;
}

.interview_sec2 .inner {
  max-width: 1280px;
}

.interview_sec2 h2 {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  top: -90px;
}

.interview_sec2 h2 span.t1 {
  color: #FFF;
  font-size: 25px;
  font-weight: 700;
  line-height: 90px;
  background: #7CC03F;
  padding-left: 110px;
  width: 540px;
  display: inline-block;
}

.interview_sec2 h2 span.t2 {
  color: rgba(124, 192, 63, 0.08);
  font-size: 118px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: 2px;
  flex: 1;
}

.interview_sec2_cont01 {
  max-width: 1060px;
  margin: 0 auto;
}

.interview_sec2_cont01 ul.list {
  display: flex;
  flex-flow: column;
  gap: 160px;
}

.interview_sec2_cont01 .list .item {
  display: flex;
  align-items: center;
  position: relative;
  flex-flow: row-reverse;
}

.interview_sec2_cont01 .list .item::before {
  content: "";
  display: inline-block;
  width: calc(100% - 80px);
  height: calc(100% - 20px);
  position: absolute;
  left: 0;
  top: 80px;
  background: #fff;
}

.interview_sec2_cont01 .list .item img {
  width: 450px;
  height: 471px;
  position: relative;
}

.interview_sec2_cont01 .list .item .txtBox {
  flex: 1;
  padding-top: 115px;
  position: relative;
  z-index: 1;
  padding: 60px 0 0 10px;
}

.interview_sec2_cont01 .list .item .txtBox ul li {
  display: flex;
  gap: 40px;
}

.interview_sec2_cont01 .list .item .txtBox .txtBox ul {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 5px;
}

.interview_sec2_cont01 .list .item .txtBox .txtBox2 ul {
  display: flex;
  flex-flow: column;
  gap: 20px;
  padding-top: 60px;
}

.interview_sec2_cont01 .list .item .txtBox p.txt {
  font-size: 21px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.575px;
}

.interview_sec2_cont01 .list .item .txtBox p.txt:nth-of-type(1) {
  width: 91px;
  text-align: right;
  font-weight: 700;
  font-family: "Courier New", monospace;
}

.interview_sec2_cont01 .list .item .txtBox p.txt:nth-of-type(1).left {
  text-align: left;
}

.interview_sec2_cont01 .list .item .txtBox p.txt:nth-of-type(2) {
  flex: 1;
}

.interview_sec2_cont01 .list .item .txtBox p.txt2 {
  font-size: 21px;
  font-weight: 500;
  margin-top: 20px;
}

@media screen and (max-width: 680px) {
  .interview_sec2 {
    padding: 0 0 6.6666666667vw;
    margin-top: 16vw;
  }
  .interview_sec2 h2 {
    height: auto;
    flex-flow: column-reverse;
    align-items: flex-start;
    gap: 0;
    top: -31.4666666667vw;
    left: -5.3333333333vw;
    margin-top: 0;
  }
  .interview_sec2 h2 span.t1 {
    font-size: 3.7333333333vw;
    line-height: 15.4666666667vw;
    padding-left: 9.8666666667vw;
    width: 93.0666666667vw;
  }
  .interview_sec2 h2 span.t2 {
    font-size: 16vw;
    top: 2.4vw;
    padding-left: 7.4666666667vw;
  }
  .interview_sec2_cont01 {
    margin-top: -24vw;
  }
  .interview_sec2_cont01 .list .item {
    flex-flow: column;
    align-items: flex-start;
  }
  .interview_sec2_cont01 .list .item::before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    left: 5.3333333333vw;
    top: 5.3333333333vw;
  }
  .interview_sec2_cont01 .list .item img {
    width: 81.8666666667vw;
    height: 81.8666666667vw;
    position: relative;
  }
  .interview_sec2_cont01 .list .item .txtBox {
    padding: 2.6666666667vw 0 2.6666666667vw 2.9333333333vw;
  }
  .interview_sec2_cont01 .list .item .txtBox ul li {
    gap: 5.3333333333vw;
  }
  .interview_sec2_cont01 .list .item .txtBox .txtBox2 ul {
    display: flex;
    flex-flow: column;
    gap: 0.8vw;
    padding: 1.3333333333vw 0 0 2.6666666667vw;
  }
  .interview_sec2_cont01 .list .item .txtBox p.txt {
    font-size: 3.4666666667vw;
  }
  .interview_sec2_cont01 .list .item .txtBox p.txt:nth-of-type(1) {
    white-space: nowrap;
    width: 16vw;
  }
  .interview_sec2_cont01 .list .item .txtBox p.txt:nth-of-type(2) {
    padding-right: 2.6666666667vw;
  }
  .interview_sec2_cont01 .list .item .txtBox p.txt2 {
    font-size: 3.4666666667vw;
    margin-top: 2.6666666667vw;
  }
  .interview_sec3 {
    padding: 5.3333333333vw 0 13.3333333333vw;
  }
}
.page_fv h1.left {
  left: 10%;
  width: 227px;
}

@media screen and (max-width: 680px) {
  .faq {
    padding-top: 21.3333333333vw;
  }
  .page_fv h1.left {
    width: 21.3333333333vw;
  }
}
@media screen and (max-width: 680px) {
  .interview_sec1 .content ul li h3.title.fz20 {
    font-size: 20px;
  }
}
/* section1
***************************************************************/
.new-rec_sec1 {
  padding: 20px 0 100px;
}

.requirements {
  width: 100%;
  margin-top: 45px;
}

.requirements tbody tr th {
  width: 25%;
  border: 1px solid #000;
  background: #D9D9D9;
  vertical-align: middle;
  padding: 23px 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.414px;
}

.requirements tbody tr td {
  width: 75%;
  border: 1px solid #000;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.414px;
  padding: 23px;
}

.requirements tbody tr td span {
  font-weight: bold;
}

.requirements tbody tr td a {
  text-decoration: underline;
}

.outLink {
  display: flex;
  justify-content: center;
  margin-top: 93px;
  gap: 100px;
}

.outLink img {
  width: 330px;
}

@media screen and (min-width: 680px) {
  .outLink a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 680px) {
  .new-rec_sec1 {
    padding: unset;
    padding-bottom: 16vw;
    margin-top: -13.3333333333vw;
  }
  .rec_sec1 .page_title .ja {
    top: 5.3333333333vw;
  }
  .requirements {
    margin-top: 5.3333333333vw;
  }
  .requirements tbody tr th {
    width: 24%;
    padding: 4vw 0vw 4vw 3.2vw;
    font-size: 3.4666666667vw;
  }
  .requirements tbody tr td {
    width: 66%;
    font-size: 3.4666666667vw;
    padding: 3.8666666667vw;
  }
  .requirements tbody tr td span {
    font-weight: bold;
  }
  .outLink {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 20vw;
    gap: 13.3333333333vw;
  }
  .outLink a {
    width: 69.3333333333vw;
  }
  .outLink img {
    width: 100%;
  }
}
/* section2
***************************************************************/
.rec_sec2 {
  padding: 0 0 100px;
}

.rec_sec2 .inner {
  max-width: 1240px;
}

.rec_sec2 .inner .page_title {
  margin-top: 67px;
}

.rec_sec2 .inner .txtBox {
  margin-top: 55px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: -0.414px;
}

.rec_sec2 .inner .img2 {
  margin-top: 50px;
}

@media screen and (max-width: 680px) {
  .rec_sec2 {
    padding: 0 0 16vw;
  }
  .rec_sec2 .inner {
    max-width: 1240px;
  }
  .rec_sec2 .page_title .ja {
    top: 5.3333333333vw;
  }
  .rec_sec2 .inner .txtBox {
    margin-top: unset;
    padding-top: 8vw;
    text-align: justify;
    font-size: 3.4666666667vw;
  }
  .rec_sec2 .inner .img2 {
    margin-top: 8vw;
  }
}
/* section3
***************************************************************/
.rec_sec3 {
  padding: 50px 0 100px;
}

.rec_sec3 .inner {
  max-width: 1240px;
}

.rec_sec3 .inner .page_title {
  margin-top: 0;
}

.rec_sec3 .inner .txtBox {
  margin-top: 55px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: -0.414px;
}

.rec_sec3 .inner .img {
  margin-top: 50px;
}

@media screen and (max-width: 680px) {
  .rec_sec3 {
    padding: 0 0 13.3333333333vw;
  }
  .rec_sec3 .page_title .ja {
    top: 5.3333333333vw;
  }
  .rec_sec3 .inner .txtBox {
    margin-top: unset;
    padding-top: 8vw;
    text-align: justify;
    font-size: 3.4666666667vw;
  }
  .rec_sec3 .inner .img2 {
    margin-top: 50px;
  }
}
/* section4
***************************************************************/
.rec_sec4 {
  padding: 0 0 100px;
}

.rec_sec4 .page_title .ja {
  top: 5.3333333333vw;
}

.rec_sec4 .inner .page_title {
  margin-top: 50px;
}

/* section1
***************************************************************/
/*tabの形状*/
.half .rec_link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 100px;
}

.half .rec_link li a {
  display: block;
  background: #C1C5CD;
  padding: 22px 0 21px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.half .rec_link li.active a {
  background: #548E23;
}

@media screen and (max-width: 680px) {
  .half .rec_link {
    margin-top: 8vw;
  }
  .half .rec_link li a {
    padding: 3.7333333333vw 0 3.4666666667vw;
    font-size: 3.4666666667vw;
  }
}
/* section1
***************************************************************/
.half .rec_sec1 {
  background: rgba(163, 224, 108, 0.3);
  padding: 100px 0 0;
}

.half .rec_sec1 .inner .rec_tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px 90px;
}

.half .rec_sec1 .inner .rec_tab li {
  position: relative;
}

.half .rec_sec1 .inner .rec_tab li a {
  display: block;
}

.half .rec_sec1 .inner .rec_tab li .txtBox {
  position: absolute;
  left: 0;
  top: -40px;
  width: 360px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.half .rec_sec1 .inner .rec_tab li .txtBox p.txt {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  padding: 18px 10px 17px 30px;
  background: #fff;
  width: 100%;
}

.half .rec_sec1 .inner .rec_tab li img {
  height: 410px;
}

.half .rec_area {
  display: none;
  opacity: 0;
}

.half .rec_area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  padding: 100px 0;
  margin: 60px calc(50% - 50vw) 0;
  width: 100vw;
  background: #fff;
}

.half .rec_area ul {
  display: flex;
  flex-flow: column;
  gap: 85px;
}

.half .rec_area ul li h3 {
  color: #7CC03F;
  font-size: 35px;
  font-weight: 900;
  padding-bottom: 40px;
  position: relative;
}

.half .rec_area ul li h3::before {
  content: "";
  display: inline-block;
  width: 70px;
  border-top: 3px solid #7CC03F;
  position: absolute;
  left: 0;
  bottom: 0;
}

.half .rec_area ul li table {
  border: 1px solid #000;
  width: 100%;
  margin-top: 45px;
}

.half .rec_area ul li table tbody tr th {
  width: 25%;
  border: 1px solid #000;
  background: #D9D9D9;
  vertical-align: middle;
  padding: 23px 25px;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.414px;
}

.half .rec_area ul li table tbody tr td {
  width: 75%;
  border: 1px solid #000;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.414px;
  padding: 23px;
}

.half .rec_area ul li table tbody tr td span {
  font-weight: bold;
}

.half .rec_area ul li table tbody tr td a {
  text-decoration: underline;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 680px) {
  .half .rec_sec1 {
    padding: 13.3333333333vw 0 0;
  }
  .half .rec_sec1 .inner .rec_tab {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 13.3333333333vw;
  }
  .half .rec_sec1 .inner .rec_tab li .txtBox {
    position: absolute;
    left: 0;
    top: -5.3333333333vw;
    width: 76.5333333333vw;
  }
  .half .rec_sec1 .inner .rec_tab li .txtBox p.txt {
    font-size: 3.4666666667vw;
    padding: 2.4vw 4.8vw 2.1333333333vw;
  }
  .half .rec_sec1 .inner .rec_tab li img {
    height: 53.3333333333vw;
  }
  .half .rec_area.is-active {
    padding: 16vw 0;
    margin: 8vw calc(50% - 50vw) 0;
  }
  .half .rec_area ul {
    gap: 16vw;
  }
  .half .rec_area ul li h3 {
    font-size: 6.6666666667vw;
    padding-bottom: 6.6666666667vw;
  }
  .half .rec_area ul li h3::before {
    width: 18.6666666667vw;
    border-top: 0.8vw solid #7CC03F;
  }
  .half .rec_area ul li table {
    margin-top: 6.6666666667vw;
  }
  .half .rec_area ul li table tbody tr th {
    width: 30%;
    padding: 6.1333333333vw 1.3333333333vw 6.1333333333vw 5.0666666667vw;
    font-size: 3.4666666667vw;
  }
  .half .rec_area ul li table tbody tr td {
    width: 70%;
    font-size: 3.4666666667vw;
    padding: 1.3333333333vw 4vw;
  }
}
/* section2
***************************************************************/
.half .rec_sec2 {
  padding: 200px 0 100px;
}

.half .rec_sec2 .inner {
  display: flex;
  flex-flow: column;
  gap: 200px;
}

.half .rec_sec2_cont01 {
  background: rgba(163, 224, 108, 0.3);
}

.half .rec_sec2_cont01 .txtWrap {
  position: relative;
}

.half .rec_sec2_cont01 .txtWrap .txtBox {
  width: 610px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 25px 30px;
  position: absolute;
  left: 0;
  top: -106px;
}

.half .rec_sec2_cont01:nth-of-type(2n) .txtWrap .txtBox {
  left: unset;
  right: 0;
}

.half .rec_sec2_cont01 .txtWrap .txtBox h3.title3 {
  color: #7CC03F;
  font-size: 25px;
  font-weight: 700;
  line-height: 180%;
  position: relative;
  padding-bottom: 15px;
}

.half .rec_sec2_cont01 .txtWrap .txtBox h3.title3::before {
  content: "";
  display: inline-block;
  width: 70px;
  border-top: 3px solid #7CC03F;
  position: absolute;
  left: 0;
  bottom: 0;
}

.half .rec_sec2_cont01 .txtWrap .txtBox p.txt {
  font-size: 18px;
  margin-top: 21px;
}

.half .rec_sec2_cont01 .txtWrap img {
  width: 610px;
  height: 350px;
  margin-left: auto;
  display: block;
}

.half .rec_sec2_cont01:nth-of-type(2n) .txtWrap img {
  margin-left: unset;
}

.half .rec_sec2_cont01 ul {
  padding: 40px 30px 30px;
  display: flex;
  flex-flow: column;
  gap: 40px;
}

.half .rec_sec2_cont01 ul li h4.title4 {
  color: #7CC03F;
  font-size: 25px;
  font-weight: 700;
  line-height: 180%;
  position: relative;
  padding-bottom: 15px;
}

.half .rec_sec2_cont01 ul li h4.title4::before {
  content: "";
  display: inline-block;
  width: 70px;
  border-top: 3px solid #7CC03F;
  position: absolute;
  left: 0;
  bottom: 0;
}

.half .rec_sec2_cont01 ul li p.txt {
  font-size: 18px;
  margin-top: 21px;
}

@media screen and (max-width: 680px) {
  .half .rec_sec2 {
    padding: 26.6666666667vw 0;
  }
  .half .rec_sec2 .inner {
    gap: 26.6666666667vw;
  }
  .half .rec_sec2_cont01 .txtWrap {
    padding: 6.6666666667vw 5.3333333333vw;
    background: #fff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  }
  .half .rec_sec2_cont01 .txtWrap .txtBox {
    width: 100%;
    box-shadow: unset;
    padding: 0;
    position: unset;
  }
  .half .rec_sec2_cont01 .txtWrap .txtBox h3.title3 {
    font-size: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
  }
  .half .rec_sec2_cont01 .txtWrap .txtBox h3.title3::before {
    border-top: 0.8vw solid #7CC03F;
  }
  .half .rec_sec2_cont01 .txtWrap .txtBox p.txt {
    font-size: 3.4666666667vw;
    margin-top: 5.3333333333vw;
  }
  .half .rec_sec2_cont01 .txtWrap img {
    width: 100%;
    height: 40vw;
    margin-top: 5.3333333333vw;
  }
  .half .rec_sec2_cont01:nth-of-type(2n) .txtWrap img {
    margin-left: unset;
  }
  .half .rec_sec2_cont01 ul {
    padding: 5.3333333333vw;
    display: flex;
    flex-flow: column;
    gap: 9.3333333333vw;
  }
  .half .rec_sec2_cont01 ul li h4.title4 {
    font-size: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
  }
  .half .rec_sec2_cont01 ul li h4.title4::before {
    width: 18.6666666667vw;
    border-top: 0.8vw solid #7CC03F;
  }
  .half .rec_sec2_cont01 ul li p.txt {
    font-size: 3.4666666667vw;
    margin-top: 5.3333333333vw;
  }
}
/* section3
***************************************************************/
.half .rec_sec3 {
  padding: 0 0 100px;
  overflow: hidden;
}

.half .rec_sec3_cont01 {
  margin: 50px calc(50% - 50vw) 0;
  width: 100vw;
}

.half .rec_sec3_cont01 picture img {
  display: block;
  margin: 0 auto;
  max-width: 1240px;
}

.half .rec_sec3_cont01 p.txt {
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}

.half .rec_sec3_cont02 {
  max-width: 1060px;
  margin: 100px auto 0;
}

.half .rec_sec3_cont02 img.img {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 400px;
}

.half .rec_sec3_cont02 h3 {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  top: -90px;
}

.half .rec_sec3_cont02 h3 span.ja {
  color: #7CC03F;
  font-size: 25px;
  font-weight: 700;
  line-height: 90px;
  background: #fff;
  padding-left: 110px;
  width: 540px;
  display: inline-block;
}

.half .rec_sec3_cont02 h3 span.en.inter {
  color: rgba(255, 255, 255, 0.25);
  font-size: 118px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: 2px;
  flex: 1;
}

.half .rec_sec3_cont02 p.txt {
  font-size: 18px;
  margin-top: -40px;
}

.half .rec_sec3_cont02 .img02 {
  margin-top: 50px;
}

@media screen and (max-width: 680px) {
  .half .rec_sec3 {
    padding: 5.3333333333vw 0 13.3333333333vw;
    overflow: hidden;
  }
  .half .rec_sec3_cont01 {
    margin: 10.6666666667vw 0 0;
    width: 100%;
  }
  .half .rec_sec3_cont01 picture img {
    display: block;
    margin: 0 auto;
    max-width: 330.6666666667vw;
  }
  .half .rec_sec3_cont01 p.txt {
    font-size: 3.4666666667vw;
    text-align: left;
    margin-top: 2.6666666667vw;
  }
  .half .rec_sec3_cont02 {
    margin: 26.6666666667vw auto 0;
    position: relative;
  }
  .half .rec_sec3_cont02 img.img {
    height: 61.3333333333vw;
  }
  .half .rec_sec3_cont02 h3 {
    align-items: flex-start;
    flex-flow: column;
    position: absolute;
    left: -20px;
    top: 0;
    gap: 34.1333333333vw;
    height: auto;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }
  .half .rec_sec3_cont02 h3 span.ja {
    font-size: 3.7333333333vw;
    padding: 5.8666666667vw 0 5.8666666667vw 5.3333333333vw;
    width: 76.5333333333vw;
    line-height: 1;
  }
  .half .rec_sec3_cont02 h3 span.en.inter {
    font-size: 13.3333333333vw;
    padding-left: 3.4666666667vw;
  }
  .half .rec_sec3_cont02 p.txt {
    font-size: 3.4666666667vw;
    margin-top: 7.4666666667vw;
  }
  .half .rec_sec3_cont02 .img02 {
    margin-top: unset;
  }
}