@charset "UTF-8";
/* CSS Document */

/*全体の設定
---------------------------------------------------------------------------*/
/*===============================

    Reset

================================*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;

}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

h2,
h3,
h4,
h5,
h6,
p,
dt,
dd {
    transform: rotate(0.04deg);
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    transform: rotate(0.04deg);
}

a:link,
a:visited,
a:hover,
a:active {
    color: var(--txt-black);
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

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

input,
select {
    vertical-align: middle;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-repeat: no-repeat;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

address {
    font-style: normal;
    margin: 0;
    padding: 0;
}

.hidden {
    display: none;
}

/*===============================

    Base
    サイト全体のフォント
    字間や行間
    リンクの扱い
    imgのサイズ
    幅の設定等

================================*/

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    /*ゴシック*/
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--txt-black);
}

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



/*共通の設定
------------------------------------------------*/
.pc {
    display: block;
}

.sp {
    display: none !important;
}

.sp_s {
    display: none !important;
}

@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .sp_s {
    display: none !important;
}
}

@media only screen and (max-width: 400px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .sp_s {
    display: block !important;
}
}

/*メインカラーの設定
-------------------------------------------------*/
:root {
    --txt-black: #333333;
    --main-blue: #0014A5;
    --back-glay: #F7F7F7;
}


body {
    position: relative;
}

/*header
-------------------------------------------------*/
header .pc_logo {
    
}

header .header_wrap {
    position: absolute;
    z-index: 1000;
    width: 100vw;
    display: flex;
    justify-content: space-between;
}



header .header_wrap .pc_logo {
    width: 190px;
    margin-left: 20px;
    margin-top: 15px;
}

header .header_wrap nav {
    margin-right: 40px;
    margin-top: 26px;
    border-radius: 44px;
    height: 70px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    position: fixed;
    right: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    line-height: 2.8;
}

header .header_wrap nav ul {
    width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

header .header_wrap nav ul a {
    color: var(--main-blue);
    font-size: 17px;
    font-weight: 600;
}

header {
    background-color: var(--back-glay);
}


.secFv {
  position: relative;
  width: 100%;
  height: auto !important;
  overflow: hidden;
}

.swiper.top_image {
  width: 100%;
  height: auto !important; /* ← これ最重要 */
  display: block;
}

.top_image .swiper-wrapper {
  height: auto;
}

.top_image .swiper-slide {
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .top_image.sp .swiper-slide {
    padding-top: 177.78%; /* 9:16 の縦長比率 */
    background-size: contain;
    background-position: top;
  }
}

.top_read {
    position: absolute;
    top: 40%;
    left: 100px;
    color: #fff;
    text-align: left;
    z-index: 10;
}

.read01 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.read02 {
    font-size: 1.6rem;
    line-height: 1.8;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 750px) {
    .top_read {
    position: absolute;
    top: 40%;
    left: 30px;
    color: #fff;
    text-align: left;
    z-index: 10;
}

.read01 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.read02 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

}


.top_contents .sec01 {
    background-color: var(--back-glay);
    padding-top: 60px;
    padding-bottom: 80px;
}

.top_contents .sec01 .sec01wrap {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 23px;
    padding: 40px;
}

.top_contents .sec01wrap .news_heading {
    font-size: 30px;
    letter-spacing: 1px;
    color: var(--main-blue);
    padding-bottom: 6px;
    border-bottom: 1px solid var(--main-blue);
    margin-bottom: 20px;
}

.top_contents .sec01wrap dl div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--txt-black);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.top_contents .sec01wrap dl div:last-child{
    margin-bottom: 10px;
}

.top_contents .sec01wrap dl div dt {
    font-weight: 600;
    width: 120px;
}

.top_contents .sec02 {
    background-image: url(../images/top_back.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px;
}

.top_contents .sec02 .sec02_wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.top_contents .sec02_wrap .sec02_hd {
    font-size: 35px;
    font-weight: 800;
    letter-spacing: 1.3px;
    color: var(--main-blue);
    margin-bottom: 20px;
}

.top_contents .sec02_wrap .sec02_read {
    font-size: 18px;
    font-weight: 500;
    line-height: 2.4;
    letter-spacing: 1px;
}

.top_contents .sec03 {
  width: 100%;
  overflow-x: hidden; /* ここが重要！右スクロール防止 */
  position: relative;
  padding-top: 50px;
}

.top_contents .sec03_wrap {
  width: 90%;          /* 要素幅90% */
  margin-left: auto;   /* 右寄せ */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateX(100px); /* 右から少し外にずらす */
  transition: transform 1.2s ease-out, opacity 1.2s ease-out;

  background-color: #f5f5f5;
  padding: 60px 20px 40px 80px;
  border-radius: 30px 0 0 30px;
  box-sizing: border-box;
}
.top_contents .sec03_wrap.fade-in-right {
  opacity: 1;
}

/* 中身の幅調整 */
.top_about_readArea {
  max-width: 450px;
  box-sizing: border-box;
}

.top_about_imgArea {
  width: 50%;
  position: relative; /* 子要素を絶対配置で散らすため必須 */
  display: block; 
  height: 450px; /* 親の高さを確保 */
}

.top_contents .sec03 h2,
.top_contents .sec04 h2,
.top_contents .sec06 h2 {
    color: var(--main-blue);
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 0.9px;
    line-height: 1;
    margin-bottom: 10px;
}

.top_contents .sec03 .heading_sub,
.top_contents .sec04 .heading_sub,
.top_contents .sec06 .heading_sub {
    display: inline-block;
    color: var(--main-blue);
    font-size: 25px;
    font-weight: 700;
    border-bottom: 1px solid var(--main-blue);
    padding-bottom: 8px;
    padding-right: 20px;
    margin-bottom: 40px;
}

.top_contents .sec03 .detail {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.top_contents .blueBtn a {
  display: inline-block;
  background-color: var(--main-blue);
  width: 280px;
  height: 50px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  border-radius: 24px;
}

.top_about_imgArea img {
  width: 100%;
  height: auto;
  display: block;
}

.top_about_imgArea {
    max-width: 55%;
}

.top_contents .top_about_readArea .blueBtn {
    margin-bottom: 20px;
}

/* スマホ対応 */
@media screen and (max-width: 750px) {

.top_contents .sec02 .sec02_wrap {
    text-align: left;
}
    .top_contents .sec03_wrap {
  width: 94%;          /* 要素幅90% */
  transform: translateX(15px); /* 右から少し外にずらす */
  transition: transform 1.2s ease-out, opacity 1.2s ease-out;
  padding: 60px 30px 40px 20px;
  border-radius: 30px 0 0 30px;
  box-sizing: border-box;
}
   
  .top_about_readArea,
  .top_about_imgArea {
    width: 100%;
  }

  .top_about_readArea {
    margin-bottom: 30px;
  }
}

.top_contents .sec04 {
    width: 100%;
    height: fit-content;
    background-image: url(../images/top_bus_back.png);
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 50px;
}

.top_contents .sec04 .sec04_wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.top_businessList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
}

.top_businessList li {
    margin-bottom: 40px;
}

.top_businessList li a > p {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-top: 8px;
}

.top_contents .sec04 .sec04_wrap .blueBtn {
    text-align: center;
}

.top_contents .sec05 {
    margin-top: 100px;
    overflow-x: hidden
}

.top_contents .sec05_wrap {
  width: 90%;
  margin-left: auto;
  background-color: var(--main-blue);
  gap: 30px;
  padding: 80px 20px 80px 80px;
  border-radius: 30px 0 0 30px;
  box-sizing: border-box;
  overflow: hidden; /* ← これで中身をはみ出さない */
}

/* 横スクロールリスト */
.scroll-infinity__wrap {
  position: relative;
  width: 100%;
  overflow: hidden; /* はみ出し防止 */
}

.scroll-infinity__list {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scroll-left 30s linear infinite; /* ← 無限ループで左に流す */
}

.scroll-infinity__item {
  flex: 0 0 auto; /* アイテムが縮まないように固定 */
  width: 250px;   /* 好きな幅に調整 */
  color: #fff;
}

.works_img img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* 横に流れる keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* アイテム数に応じて調整 */
  }
}

.top_contents .sec05 h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 0.9px;
    line-height: 1;
    margin-bottom: 10px;
}

.top_contents .sec05 .heading_sub {
    display: inline-block;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
    padding-right: 20px;
    margin-bottom: 40px;
}

.top_worksList {
    
}

.top_worksList ul {
    max-width: 100%;
    display: flex;
    margin-top: 10px;
    margin-bottom: 30px;
}

.top_worksList ul li {
    width: 320px;
    height: 305px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 7px;
    margin-right: 7px;
}

.top_worksList ul li .works_img {
    max-width: 300px;
    margin: 0 auto;
}

.top_worksList ul li p {
    width: 300px;
    margin: 0 auto;
    margin-top: 10px;
    margin-left: 8px;
    font-weight: 600;
    color: #333;
}

.top_contents .whiteBtn {
    text-align: center;
}

.top_contents .whiteBtn a {
  display: inline-block;
  background-color: #fff;
  width: 280px;
  height: 50px;
  color: var(--main-blue);
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  border-radius: 24px;
}

.top_contents .sec06 {
    margin-top: 150px;
    margin-bottom: 100px;
}

.top_contents .sec06_wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.top_contents .sec06_wrap .top_rec_heading {
    font-size: 30px;
    font-weight: 600;
    color: var(--main-blue);
}

.top_contents .sec06_wrap .top_rec_read {
    margin-top: 25px;
    line-height: 2.2;
    margin-bottom: 30px;
}

.top_contents .sec06_wrap .top_rec_photo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.top_contents .sec06_wrap .blueBtn {
    text-align: center;
}

.top_contents .sec06_wrap .top_rec_photo .photo {
    margin-bottom: 15px;
}


@media only screen and (max-width: 750px) {

    .top_contents .sec03 h2, .top_contents .sec04 h2, .top_contents .sec06 h2 {
    color: var(--main-blue);
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 0.9px;
    line-height: 1;
    margin-bottom: 10px;
}

    .top_contents .secFv .secFv_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column-reverse;
}

.top_contents .secFv .secFv_wrap .top_read {
    max-width: 90vw;
    margin-left: 0px;
    margin-top: 40px;
}

.top_contents .secFv .secFv_wrap .top_image {
    max-width: 100vw;
}

.top_contents .secFv .secFv_wrap .top_read .read01 {
    font-size: 34px;
}

.top_contents .sec02 {
    padding: 0px;
    margin-top: 30px;
}

.top_contents .sec01 .sec01wrap {
    max-width: 93%;
    margin: 0 auto;
    padding: 20px;
}

.top_contents .sec02 .sec02_wrap {
    max-width: 90%;
    margin: 0 auto;
}

.top_contents .sec02_wrap .sec02_hd {
    font-weight: 600;
}

.top_contents .sec02_wrap .sec02_read {
    line-height: 2;
}

.top_about_imgArea {
    max-width: 100%;
}

.top_about_imgArea img {
    margin-bottom: 20px;
}

.top_contents .blueBtn a {
    display: block;
    background-color: var(--main-blue);
    height: 50px;
    width: 280px;
    margin: 0 auto;
}

.top_contents .sec04 {
    padding-top: 80px;
}

.top_contents .sec04 .sec04_wrap {
    max-width: 93%;
    margin: 0 auto;
}

.top_businessList {
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.top_contents .sec05_wrap {
    width: 100%;
    margin-left: auto;
    background-color: var(--main-blue);
    gap: 30px;
    padding: 80px 20px 80px 20px;
    border-radius: 30px 0 0 30px;
    box-sizing: border-box;
}

.top_worksList ul {
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 30px;
}

.top_worksList ul li {
    margin-bottom: 30px;
}

.top_contents .sec06 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.top_contents .sec06_wrap {
    max-width: 93%;
    margin: 0 auto;
}

.top_contents .sec06_wrap .top_rec_read {
    font-weight: 500;
}

}





/* _________________下層ページ共通 */

.sec_lowerFv {
    background-color: var(--back-glay);
    padding-top: 100px;
    padding-bottom: 100px;
}

.sec_lowerFv .secFv_wrap {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.sec_lowerFv .secFv_wrap .sub_mainHeading {
    padding-left: 50px;
    margin-bottom: 30px;
}

.sec_lowerFv .secFv_wrap .sub_mainHeading h2 {
    color: var(--main-blue);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 0.9px;
    line-height: 1;
    margin-bottom: 10px;
}

.sec_lowerFv .secFv_wrap .sub_mainHeading p {
    color: var(--main-blue);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
}

.sec_lowerFv .secFv_wrap .sub_mainHeading {
    position: relative;
    display: inline-block;
}

.sec_lowerFv .secFv_wrap .sub_mainHeading:before {
content: '';
position: absolute;
left: 50px;
bottom: -20px;/*線の上下位置*/
display: inline-block;
width: 200px;/*線の長さ*/
height: 1px;/*線の太さ*/
background-color: var(--main-blue);/*線の色*/
}

.sec_lowerFv .secFv_wrap .top_image {
    max-width: 55%;
}


.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 14px;
  padding-top: 10px;
  padding-left: 20px;
  padding-bottom: 10px;

}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--main-blue);
  font-weight: 600;
}

/* 区切りのスラッシュ */
.breadcrumb li + li::before {
  content: "/";
  margin: 0 0.5em;
  color: var(--main-blue);
}

/*__________________ABOUT*/

#about .sec01 {
    padding-top: 80px;
}

#about .sec01_wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

#about .sec01_wrap .heading {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 25px;
    color: var(--main-blue);
}

#about .sec01_wrap .read {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 2;
    color: var(--main-blue);
}

#about .sec02 {
    margin-top: 100px;
}

#about .sec02_wrap {
    max-width: 1200px;
    margin: 0 auto;
}

#about .sec02 h3,
#about .sec03 h3
 {
    color: var(--main-blue);
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

#about .sec02 h3 span,
#about .sec03 h3 span {
    font-size: 20px;
    margin-left: 20px;
}

#about .sec02_wrap .message_img {
    margin-bottom: 50px;
}

#about .sec02_wrap .message_text {
    max-width: 1000px;
    margin: 0 auto;
}

#about .sec02_wrap .message_text p {
    margin-bottom: 20px;
    line-height: 2;
    font-weight: 500;
    letter-spacing: 1px;
}

#about .sec02_wrap .message_text .message_name {
    text-align: right;
}

#about .sec03 {
    margin-top: 150px;
    margin-bottom: 170px;
}

#about .sec03_wrap {
    max-width: 1200px;
    margin: 0 auto;
}

#about .philosophy_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#about .philosophy_inner .imgArea {
    max-width: 50%;
}

#about .philosophy_inner .txtArea p {
    color: var(--main-blue);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 2;
}

@media only screen and (max-width: 750px) {
.sec_lowerFv {
    background-color: var(--back-glay);
    padding-top: 90px;
    padding-bottom: 0px;
}

.sec_lowerFv .secFv_wrap {
    justify-content: start;
}

.sec_lowerFv .secFv_wrap .sub_mainHeading {
    padding-left: 20px;
    margin-bottom: 50px;
}

.sec_lowerFv .secFv_wrap .sub_mainHeading:before {
    left: 20px;
}

.sec_lowerFv .secFv_wrap .sub_mainHeading h2 {
    color: var(--main-blue);
    font-size: 3.3rem;
    font-weight: 800;
    letter-spacing: 0.9px;
    line-height: 1;
    margin-bottom: 10px;
}

.sec_lowerFv .secFv_wrap .top_image {
    max-width: 100%;
}

#about .sec01 {
    padding-top: 40px;
}

#about .sec01_wrap {
    text-align: left;
}

#about .sec01_wrap .heading {
    padding-left: 20px;
}

#about .sec01_wrap .read {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.8;
}

#about .sec02_wrap {
    max-width: 1200px;
    margin: 0 auto;
}

#about .sec02 h3,
#about .sec03 h3 {
    color: var(--main-blue);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    margin-left: 20px;

}

#about .sec02 h3 span,
#about .sec03 h3 span {
    display: block;
    font-size: 20px;
    margin-left: 0px;
}

#about .sec02_wrap .message_img {
    margin-bottom: 20px;
}

#about .sec02_wrap .message_text {
    max-width: 93%;
    margin: 0 auto;
}

#about .sec03 {
    margin-top: 100px;
    margin-bottom: 80px;
}

#about .philosophy_inner .imgArea {
    max-width: 100%;
}

#about .philosophy_inner .txtArea {
    margin-top: 30px;
    margin-left: 20px;
}

#about .philosophy_inner .txtArea p {
    color: var(--main-blue);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.8;
}
}



/*__________________COMPANY*/

#company .sec01 {
    background-color: var(--back-glay);
    padding-top: 80px;
    padding-bottom: 100px;
}

#company h3 {
    max-width: 1100px;
    margin: 0 auto;
    color: var(--main-blue);
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

#company h3 span {
    font-size: 20px;
    margin-left: 20px;
}

#company .sec01_wrap {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 25px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.company_autline {
    max-width: 1000px;
    margin: 0 auto;
}

.company_autline div {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 15px;
    border-bottom: 1px solid var(--main-blue);
}

.company_autline div dt {
    width: 200px;
    color: var(--main-blue);
    font-weight: 600;
}

.company_autline div dt dd {
    line-height: 18px;
}

#company .sec02 {
    padding-top: 100px;
}

#company .sec02 h3 {
    max-width: 1100px;

}

#company .sec_contact_wrap .con_inner .con_item h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media only screen and (max-width: 750px) {
#company h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-left: 20px;
}

#company h3 span {
    display: block;
    font-size: 20px;
    margin-left: 0px;
}

#company .sec01 {
    padding-top: 40px;
    padding-bottom: 70px;
}

#company .sec01_wrap {
    max-width: 95%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 25px;
    padding-top: 20px;
    padding-bottom: 40px;
}

.company_autline div {
    display: block;
    padding: 20px 15px;
}

.company_autline div dt {
    width: 200px;
    margin-bottom: 5px;
}

#company .sec02 {
    padding-top: 50px;
}

}

/*__________________BUSINESS*/

#business .sec01 {
    padding-top: 60px;

}

#business .sec01_wrap {
    max-width: 1000px;
    margin: 0 auto;
}

#business .business_read {
    text-align: center;
    color: var(--main-blue);
    font-size: 20px;
    font-weight: 600;
    line-height: 2.3;
}

#business .sec01_wrap .business_index {
    max-width: 550px;
    margin: 0 auto;
    margin-top: 40px;
}

#business .sec01_wrap .business_index dl {
    display: flex;
    flex-wrap: wrap;
}

#business .sec01_wrap .business_index dl div {
    border-bottom: 1px solid var(--main-blue);
    padding-bottom: 7px;
    margin-bottom: 17px;
    margin-right: 40px;
}

#business .sec01_wrap .business_index dl div dt {
    color: var(--main-blue);
    font-size: 16px;
    font-weight: 600;

}

#business .sec01_wrap .business_index dl div dd {
    color: var(--txt-black);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1.1px;
}

#business .sec01_wrap .business_index dl div dd:after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-left: 5px;
    background-image: url('../images/link_blue.png');
    background-size: contain;
    vertical-align: middle;
}

#business .sec02 {
    margin-top: 80px;
    margin-bottom: 80px;
    background-image: url(../images/top_bus_back.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

#business .sec02_wrap {
    max-width: 88vw;
    margin-right: 0;
    margin-left: auto;
}

#business .sec02_wrap .business_item {
    border: 1px solid var(--main-blue);
    background-color: #fff;
    border-radius: 30px 0 0 30px;
    padding: 60px 20px 60px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 70px;
}

#business .sec02_wrap .business_item .readArea {
    max-width: 45%;
}

#business .sec02_wrap .business_item .readArea .nmb {
    color: var(--main-blue);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

#business .sec02_wrap .business_item .readArea h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

#business .sec02_wrap .business_item .readArea > p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
}

#business .business_item .rope_linkBtn {
    margin-top: 15px;
}

#business .business_item .rope_linkBtn a{
    display: block;
    max-width: 360px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 10px;
    border-radius: 30px;
    background-color: var(--main-blue);
    margin-top: 10px;
    text-align: center;
}

#business .business_item .rope_linkBtn a:hover {
    opacity: 0.8;
    transition: 0.3s;
}

#business .sec02_wrap .business_item .imgArea {
    max-width: 45%;
    padding-top: 30px;
}

#business .sec03 {
    margin-bottom: 100px;
}

#business .sec03_wrap {
    max-width: 88%;
    margin: 0 auto;
    background-color: var(--back-glay);
    border-radius: 30px;
    padding-top: 60px;
    padding-bottom: 50px;
}

#business .sec03_wrap h4 {
    color: var(--main-blue);
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

#business .sec03_wrap .flow_read {
    max-width: 960px;
    margin: 0 auto;
    color: var(--main-blue);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 50px;
}

#business .sec03_wrap .flow_list {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 70px;
}

#business .sec03_wrap .flow_list div {
    background-color: #fff;
    padding: 25px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

#business .sec03_wrap .flow_list div dt {
    color: var(--main-blue);
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid var(--main-blue);
    padding-bottom: 7px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 750px) {

    #business .sec01 {
    padding-top: 40px;
}

    #business .business_read {
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
}

#business .sec01_wrap .business_index {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 40px;
}

#business .sec02 {
    margin-top: 60px;
    margin-bottom: 60px;
}

#business .sec02_wrap {
    max-width: 96vw;
    margin-right: 0;
    margin-left: auto;
}

#business .sec02_wrap .business_item {
    border: 1px solid var(--main-blue);
    border-radius: 30px 0 0 30px;
    padding: 50px 20px 50px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 70px;
}

#business .sec02_wrap .business_item .readArea {
    max-width: 100%;
}

#business .sec02_wrap .business_item .imgArea {
    max-width: 100%;
    padding-top: 30px;
}

#business .sec03_wrap {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 50px;
}

#business .sec03_wrap .flow_read {
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 40px;
}

#business .sec03_wrap .flow_list {
    max-width: 93%;
    margin: 0 auto;
}

#business .sec03_wrap .flow_list div {
    background-color: #fff;
    padding: 20px 20px;
}

}

@media only screen and (max-width: 400px) {
    #business .business_item .rope_linkBtn a{
    display: block;
    max-width: 360px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1px;
    padding: 10px 10px;
    border-radius: 12px;
    background-color: var(--main-blue);
    margin-top: 10px;
    text-align: center;
}
}

/*__________________WORKS*/

#works .sec01 {
    margin-top: 50px;
    margin-bottom: 200px;
}

#works .sec01_wrap {
    max-width: 1000px;
    margin: 0 auto;
}

#works .works_inner .works_item {
    padding-top: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--main-blue);
}

#works .works_item .works_hd {
    color: var(--main-blue);
}

#works .works_item .works_hd h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

#works .works_item .works_hd p {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}

#works .works_item .works_detail {
    font-size: 15px;
    margin-bottom: 30px;
}

#works .works_item .works_img {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#works .works_item .works_img div {
    max-width: 320px;
}

@media only screen and (max-width: 750px) {
    #works .sec01 {
    margin-top: 20px;
    margin-bottom: 100px;
}

#works .sec01_wrap {
    max-width: 93%;
    margin: 0 auto;
}

#works .works_inner .works_item {
    padding-top: 40px;
}

#works .works_inner .works_item:first-of-type {
    padding-top: 20px;
}

#works .works_item .works_img {
    justify-content: center;
}

#works .works_item .works_img div {
    margin-bottom: 20px;
}
}

/*__________________RECRUIT*/

#recruit .sec01 {
    margin-top: 70px;
    margin-bottom: 100px;
}

#recruit .sec01 .sec01_wrap {
    max-width: 1000px;
    margin: 0 auto;
}

#recruit .recruit_read {
    margin-bottom: 150px;
}

#recruit .recruit_read .read1 {
    color: var(--main-blue);
    font-size: 33px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

#recruit .recruit_read .read2 {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.9;
}

#recruit .sec01 h3,
#recruit .sec02 h3,
#recruit .sec03 h3,
#recruit .sec04 h3 {
    max-width: 800px;
    margin: 0 auto;
    color: var(--main-blue);
    font-size: 33px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;

}

#recruit h3:before {
content: '';
position: absolute;
left: 50%;
bottom: -24px;/*線の上下位置*/
display: inline-block;
width: 120px;/*線の長さ*/
height: 2px;/*線の太さ*/
-webkit-transform: translateX(-50%);
transform: translateX(-50%);/*位置調整*/
background-color: var(--main-blue);
border-radius: 2px;/*線の丸み*/
}

#recruit .jinzai_list {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 30px;
}

#recruit .jinzai_list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
}

#recruit .jinzai_list .reverse {
    flex-direction: row-reverse;
} 

#recruit .jinzai_list li .readArea {
    max-width: 450px;
}

#recruit .jinzai_list li .readArea h4 {
    color: var(--main-blue);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

#recruit .jinzai_list li .readArea p {
    font-size: 15px;
    line-height: 2;
}

#recruit .jinzai_list li .imgArea {
    max-width: 450px;
}

#recruit .sec02 {
    background-color: var(--back-glay);
    padding-top: 80px;
    padding-bottom: 100px;
}

#recruit .sec02 .sec02_wrap {
    max-width: 900px;
    margin: 0 auto;
}

#recruit .interview_list li {
    max-width: 900px;
    padding: 20px;
    border: 1px solid var(--main-blue);
    background-color: #fff;
    margin-bottom: 30px;
}

#recruit .interview_list .iv_container {
    display: flex;
    flex-wrap: wrap;
}

#recruit .interview_list .iv_container .readArea {
    max-width: 600px;
    margin-left: 30px;
}

#recruit .interview_list .iv_container .readArea .post {
    background-color: var(--main-blue);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 30px;
    border-radius: 25px;
    width: 290px;
    text-align: center;
    margin-bottom: 10px;
}

#recruit .interview_list .iv_container .readArea .name {
    font-size: 17px;
    font-weight: 600;
}

#recruit .interview_list .iv_container .readArea .name span {
    margin-left: 10px;
}

#recruit .sec03 {
    margin-top: 90px;
    margin-bottom: 150px;
}

#recruit .sec03_wrap {
    
}

#recruit .sec03_wrap .faq {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
}

#recruit .sec03_wrap .faq div {
    margin-bottom: 50px;
}

#recruit .sec03_wrap .faq div dt {
    color: var(--main-blue);
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--main-blue);
    margin-bottom: 8px;
    line-height: 25px;
    letter-spacing: 1.2px;

}

#recruit .sec03_wrap .faq div dd {
    line-height: 28px;
}


#recruit .sec03_wrap .faq div dt:before,
#recruit .sec03_wrap .faq div dd:before {
  display: inline-block;       /* ← ここがカギ */
  width: 29px;                 /* ← "Q." や "A." の幅を固定 */
  font-size: 27px;
  font-weight: 700;
  color: var(--main-blue);
  margin-right:4px;
  vertical-align: top;
}

#recruit .sec03_wrap .faq div dt:before {
    content: 'Q.';
}

#recruit .sec03_wrap .faq div dd:before {
    content: 'A.';    
}

#recruit .sec03_wrap .faq div dt,
#recruit .sec03_wrap .faq div dd {
  display: flex;
  align-items: flex-start;
}

#recruit .sec04 {
    background-color: var(--back-glay);
    padding-top: 100px;
    padding-bottom: 150px;
}

#recruit .sec04_wrap {
    margin-top: 70px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 25px;
    padding-top: 50px;
    padding-bottom: 80px;
}

#recruit .sec04_wrap h4 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    max-width: 400px;
    margin: 0 auto;
    padding: 8px 14px;
    background-color: var(--main-blue);
    text-align: center;
    border-radius: 25px;

}

#recruit .rec_information {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 80px;
}

#recruit .rec_information div {
    display: flex;
    border-bottom: 1px solid var(--main-blue);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

#recruit .rec_information div dt {
    font-size: 17px;
    font-weight: 600;
    width: 200px;
}

#recruit .sec04_wrap .ctt_linkBtn a {
    display: block;
    max-width: 350px;
    margin: 0 auto;
    color: var(--main-blue);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1.1px;
    border: 1px solid var(--main-blue);
    border-radius: 30px;
    padding: 12px 10px;
    margin-top: 50px;
    text-align: center;
}

@media only screen and (max-width: 750px) {

#recruit .sec01 {
    margin-top: 70px;
    margin-bottom: 70px;
}

    #recruit .sec01 .sec01_wrap {
    max-width: 93%;
    margin: 0 auto;
}

#recruit .recruit_read {
    margin-bottom: 60px;
}

#recruit .recruit_read .read1 {
    color: var(--main-blue);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

#recruit .sec01 h3,
#recruit .sec02 h3,
#recruit .sec03 h3,
#recruit .sec04 h3 {
    max-width: 800px;
    margin: 0 auto;
    color: var(--main-blue);
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

#recruit .sec01 h3:before {
    bottom: -16px;
}

#recruit .jinzai_list li {
    display: block;
}

#recruit .jinzai_list li .readArea {
    margin-bottom: 15px;
}

#recruit .jinzai_list li .readArea h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

#recruit .jinzai_list li .readArea p {
    font-weight: 500;
}

#recruit .sec02 {
    padding-top: 60px;
    padding-bottom: 60px;
}

#recruit .sec02 h3:before {
    bottom: -16px;
}

#recruit .sec02 .sec02_wrap {
    max-width: 93%;
    margin: 0 auto;
}

#recruit .interview_list .iv_container {
    justify-content: center;
}

#recruit .interview_list .iv_container .readArea {
    margin-left: 0px;
    margin-top: 20px;
}

#recruit .interview_list .iv_container .readArea .post {
    margin-bottom: 20px;
}

#recruit .interview_list .iv_container .readArea .name {
    margin-bottom: 5px;
}

#recruit .interview_list .iv_container .readArea .detail {
    line-height: 1.9;
}

#recruit .sec03 {
    margin-top: 60px;
    margin-bottom: 80px;
}

#recruit .sec03 h3:before {
    bottom: -16px;
}

#recruit .sec03_wrap .faq {
    max-width: 93%;
    margin: 0 auto;
    margin-top: 50px;
}

#recruit .sec03_wrap .faq div dt {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--main-blue);
    margin-bottom: 8px;
    line-height: 25px;
    letter-spacing: 1.2px;
}

#recruit .sec03_wrap .faq div dt:before,
#recruit .sec03_wrap .faq div dd:before {
    display: inline-block;
    width: 25px;
    font-size: 25px;
    font-weight: 700;
    color: var(--main-blue);
    margin-right: 4px;
    vertical-align: top;
}

#recruit .sec04 {
    padding-top: 60px;
    padding-bottom: 60px;
}

#recruit .sec04_wrap h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    max-width: 300px;
    margin: 0 auto;
    padding: 8px 12px;
}

#recruit .sec04_wrap {
    margin-top: 70px;
    max-width: 95%;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 50px;
}

#recruit .rec_information {
    max-width: 95%;
    margin: 0 auto;
    margin-top: 50px;
}

#recruit .rec_information div {
    display: block;
    border-bottom: 1px solid var(--main-blue);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

#recruit .rec_information div dt {
    margin-bottom: 6px;
}

#recruit .sec04_wrap .ctt_linkBtn a {
    max-width: 320px;
    margin: 0 auto;
    color: var(--main-blue);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0px;
    border: 1px solid var(--main-blue);
    border-radius: 30px;
    padding: 12px 10px;
    margin-top: 50px;
    text-align: center;
}

}

/*__________________CONTACT*/

#contact .sec01 h3{
    max-width: 800px;
    margin: 0 auto;
    color: var(--main-blue);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
}

#contact .sec02 h3{
    max-width: 800px;
    margin: 0 auto;
    color: var(--main-blue);
    font-size: 33px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
}

#contact h3:before {
content: '';
position: absolute;
left: 50%;
bottom: -24px;/*線の上下位置*/
display: inline-block;
width: 120px;/*線の長さ*/
height: 2px;/*線の太さ*/
-webkit-transform: translateX(-50%);
transform: translateX(-50%);/*位置調整*/
background-color: var(--main-blue);
border-radius: 2px;/*線の丸み*/
}

#contact .sec01 .contact_read {
    text-align: center;
    color: var(--main-blue);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 30px;
}

#contact .sec01_wrap {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--back-glay);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 80px;
}

#contact .sec01_wrap h3 {
    margin-bottom: 30px;
}

#contact .sec01_wrap h3:before {
bottom: -18px;/*線の上下位置*/
}


#contact .sec01_wrap a {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1.1px;
    color: var(--main-blue);
    margin-bottom: 20px;
}


#contact .sec02 {
    background-color: var(--back-glay);
    padding-top: 100px;
    padding-bottom: 100px;
}

@media only screen and (max-width: 750px) {

    #contact .sec01_wrap {
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 60px;
}

    #contact .sec01 .contact_read {
    margin-bottom: 30px;
    margin-top: 40px;
    font-size: 17px;
}

#contact .sec01 h3 {
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 35px;
}

#contact h3:before {
    bottom: -16px;
}

#contact .sec01_wrap a {
    display: block;
    font-size: 23px;
    margin-bottom: 10px;
}

#contact .sec02 {
    padding-top: 60px;
    padding-bottom: 70px;
}

#contact .sec02 h3 {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
}

}

/*__________________ROPE ACCESS*/

.rope_contents .sec01 {
    margin-top: 80px;
}

.rope_contents .sec01_wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 80px;
}

.rope_contents .sec01 .rope_read {
    font-size: 16px;
    line-height: 2;
}

.rope_contents .sec01 .bottom-images {
  display: flex;
  width: 100%;
}

.rope_contents .sec01 .bottom-images .img-item {
  flex: 1;           /* ← これがポイント */
}

.rope_contents .sec01 .bottom-images img {
  width: 100%;
  height: auto;
  display: block;
}

.rope_contents h3 {
    max-width: 800px;
    margin: 0 auto;
    color: var(--main-blue);
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
}

.rope_contents h3:before {
content: '';
position: absolute;
left: 50%;
bottom: -24px;/*線の上下位置*/
display: inline-block;
width: 120px;/*線の長さ*/
height: 2px;/*線の太さ*/
-webkit-transform: translateX(-50%);
transform: translateX(-50%);/*位置調整*/
background-color: var(--main-blue);
border-radius: 2px;/*線の丸み*/
}

.rope_contents .sec02 {
    margin-bottom: 80px;
    background-image: url(../images/top_bus_back.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

.rope_contents .sec02_wrap {
    max-width: 900px;
    margin: 0 auto;
}

.rope_contents .sec02 .merit li {
    margin-bottom: 80px;
}

.rope_contents .sec02_wrap h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-blue);
    letter-spacing: 1.2px;
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--main-blue);
}

.rope_contents .sec02 .merit_container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.rope_contents .sec02 .merit_container .imgArea {
    max-width: 400px;
}

.rope_contents .sec02 .merit_container .readArea {
    max-width: 450px;
}

.rope_contents .sec02 .merit_container .readArea p {
    line-height: 2;
}

.rope_contents .sec03 {
    margin-top: 100px;
    margin-bottom: 50px;
}

.rope_contents .sec03 .rope_detail_txt {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 2;
}

.rope_contents .sec03 .rope_detail_txt2 {
    margin-top: 50px;
    font-size: 20px;
    font-weight: 700;
    color: var(--main-blue);
    text-align: center;
}

.rope_contents .sec03 .blueBtn {
    text-align: center;
    margin-top: 30px;
}
.rope_contents .sec03 .blueBtn a {
  display: inline-block;
  background-color: var(--main-blue);
  width: 280px;
  height: 50px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  border-radius: 24px;
}


@media only screen and (max-width: 750px) {

.rope_contents .sec01 {
    margin-top: 70px;
    margin-bottom: 70px;
}

.rope_contents .sec01_wrap {
    max-width: 90%;
    margin: 0 auto;
    text-align: left;
}

.rope_contents .sec02 {
    background-color: #F7F7F7;
    padding-top: 60px;
    padding-bottom: 20px;
}

.rope_contents .sec02_wrap {
    max-width: 90%;
    margin: 0 auto;
}

.rope_contents .sec02 .merit_container {
    justify-content: center;
}

.rope_contents .sec02 .merit_container .imgArea {
    margin-bottom: 20px;
}

.rope_contents .sec02 .merit li {
    margin-bottom: 60px;
}

.rope_contents .sec03_wrap {
    max-width: 90%;
    margin: 0 auto;
}

.rope_contents .sec03 .rope_detail_txt,
.rope_contents .sec03 .rope_detail_txt2 {
    text-align: left;
}


}




/*__________________PRIVACYPOLICY*/

.pp_contents .sec_lowerFv .secFv_wrap .sub_mainHeading h2 {
    line-height: 1.2;
}

.pp_contents .sec_lowerFv .secFv_wrap .sub_mainHeading p {
    font-size: 20px;
    letter-spacing: 1.2px;
}

.pp_contents .sec01 {
    background-color: var(--back-glay);
    padding-top: 100px;
    padding-bottom: 100px;
}

.pp_contents .sec01 .pp_hd {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 33px;
    font-weight: 700;
    color: var(--main-blue);
    margin-bottom: 30px;
}

.pp_contents .sec01_wrap {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 0 50px 0;
}

.pp_contents .sec01_wrap .pp_read {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.pp_contents .sec01_wrap .pp_list {
    max-width: 900px;
    margin: 0 auto;
}

.pp_contents .sec01_wrap .pp_list div {
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--main-blue);
}

.pp_contents .sec01_wrap .pp_list div dt {
    font-size: 17px;
    font-weight: 600;
    color: var(--main-blue);
    margin-bottom: 13px;
}

.pp_contents .sec01_wrap .pp_list div dd {
    padding-left: 20px;
}

.pp_contents .sec01_wrap .pp_list div dd address {
    text-align: left;
}

@media only screen and (max-width: 750px) {
.pp_contents .sec01 .pp_hd {
    max-width: 95%;
    margin: 0 auto;
    font-size: 30px;
}

.pp_contents .sec01_wrap {
    max-width: 95%;
    margin: 0 auto;
    padding: 20px 15px 50px 15px;
}

}















.sec_contact {
    background-color: var(--main-blue);
    padding: 80px 0 100px 0;
}

.sec_contact .sec_contact_wrap {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.sec_contact_wrap .con_heading {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 0.9px;
    line-height: 1;
    margin-bottom: 10px;
}

.sec_contact_wrap .con_heading_sub {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    border-bottom: 1px solid #fff;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 10px;
}

.sec_contact_wrap .con_heading_note {
    font-weight: 500;
    letter-spacing: 1.1px;
    margin-top: 10px;
    margin-bottom: 50px;
}

.sec_contact_wrap .con_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 真ん中に寄せる */
  align-items: stretch;    /* 縦の高さそろえる（任意） */
}


.sec_contact_wrap .con_inner .con_item {
  width: 400px;
  position: relative;
  margin: 0; /* 中央揃えは親でやる */
}

/* 2つ目の左に線を表示 */
.sec_contact_wrap .con_inner .con_item:not(:first-child)::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px; /* con_itemの外側に出すように調整 */
  width: 1px;
  background-color: #fff;
}

.sec_contact_wrap .con_inner .con_item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sec_contact_wrap .con_inner .con_item .telNumber {
    font-size: 40px;
    font-weight: 600;
}

.sec_contact_wrap .con_inner .con_item .con_linkBtn a {
    display: block;
    width: 320px;
    margin: 0 auto;
    font-size: 17px;
    font-weight: 600;
    color: var(--main-blue);
    background-color: #fff;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
}

@media only screen and (max-width: 750px) {
    .sec_contact {
    padding: 80px 0 70px 0;
}
.sec_contact_wrap .con_inner .con_item:first-child {
    margin-bottom: 30px;
}

}


footer {
    background-color: var(--back-glay);
    padding-top: 80px;
    padding-bottom: 60px;
}

footer .footer_wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

footer .footer_wrap h1 {
    margin-bottom: 10px;
}

footer .footer_wrap .address {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

footer .footer_wrap .sns_box {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

footer .footer_wrap .sns_box .sns_icon {
    margin: 0 7px;
}

footer .footer_wrap .sns_box .sns_icon img {
    width: 90px;
}

footer nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
}

footer nav ul li .f_nav {
    font-size: 17px;
    font-weight: 600;
    color: var(--main-blue);
    margin: 0 8px;
}

footer .pp_link a {
    font-size: 15px;
    font-weight: 600;
    color: var(--main-blue);
}

@media only screen and (max-width: 750px) {
    footer .footer_wrap h1 {
    width: 220px;
    margin: 0 auto;
    margin-bottom: 10px;
}

footer nav ul {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
}

footer nav ul li {
    margin-bottom: 15px;
}

footer nav ul li .f_nav {
    font-size: 19px;
    font-weight: 600;
    color: var(--main-blue);
    margin: 0 8px;
}
}


header .header_wrap_sp {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

.header_wrap_sp .sp_headerLogo {
    max-width: 170px;
    padding: 5px 10px;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 12;
  top  : 0;
  left : 0;
  color: #fff;
  background: var(--main-blue);
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  text-align: left;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}

nav.globalMenuSp .spmenu_heading {
    font-size: 30px;
    font-weight: 600;
    border-bottom: 2px solid #fff;
    padding-bottom: 8px;
}


nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
  border-bottom: 1px solid #fff;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;

}

address {
    text-align: center;
}

address .com_name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.2px;
}
address .spmenu_tel {
    display: block;
    color: #fff;
}

address .sp_snsBox {
    display: flex;
    justify-content: center;
}

address .sp_snsBox div {
    margin: 20px 10px;
    
}

nav.globalMenuSp {
visibility: hidden;
}

nav.globalMenuSp.active {
opacity: 100;
visibility: visible;
}

/* 非表示用 */
.hide-logo {
  display: none;
}


/* 初期状態（非表示・下にずらす） */
.section-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

/* 表示時にふわっと */
.section-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* フェードいん */

.target {
      opacity: 0;
      transform: translateX(80px); /* 右から出す */
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in-right {
      opacity: 1;
      transform: translateX(0);
    }



@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 40s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 6);
}
.scroll-infinity__item>img {
  width: 100%;
}



.swiper.top_image {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

body, html {
  touch-action: pan-y; /* 縦スクロールは許可、横スワイプをSwiperに渡す */
}

/* SP用スライダー容器 */
.top_image.sp {
  width: 100%;
  aspect-ratio: 9 / 13; /* スマホ縦長の比率 */
  position: relative;
}

/* 各スライド */
.top_image.sp .swiper-slide {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}




/* --- 親エリア --- */
.top_about_imgArea {
  width: 50%;
  position: relative;
  height: 550px;
  margin: 0 auto;
}

/* --- 画像アイテム --- */
.overlap-visual .ov-item {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeImg 1s ease forwards;
}
/* 個別遅延 */
.item1 { top: 0; left: -40px; animation-delay: .2s; }
.item2 { top: 120px; left: 320px; animation-delay: .5s; }
.item3 { top: 280px; left: 30px; animation-delay: .8s; }



/* --- 画像共通スタイル --- */
.overlap-visual img {
  width: 350px;
  border-radius: 3px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* --- 回転も移動も入れないフェードイン --- */
@keyframes fadeImg {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOpacity {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- スマホ表示 --- */
@media screen and (max-width: 768px) {

.top_about_imgArea {
  width: 100%;
  position: relative;
  height: auto;
  margin: 0 auto;
}

.top_about_btnArea .blueBtn:first-child {
    margin-bottom: 20px;
}

  .overlap-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: auto;
  }

  .overlap-visual .ov-item {
    position: relative;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 0;
    animation: fadeOpacity 1s ease forwards;
  }

  .item1 { animation-delay: 0.2s; }
  .item2 { animation-delay: 0.4s; }
  .item3 { animation-delay: 0.6s; }

  .overlap-visual img {
    width: 90%;
  }
}

/* PCではPC版だけ表示 */
.pc { display: block; }
.sp { display: none; }

/* スマホではSP版だけ表示 */
@media screen and (max-width: 768px) {
  .pc { display: none; }
  .sp { display: block; }
}

