@charset "UTF-8";

/*///////////////////////////////////////
全体設定
///////////////////////////////////////*/
*,*:before,*:after {
 box-sizing: border-box;
}

html {
 box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
 font-size: 62.5%;
 height: 100%;
}

body {
 color: #000;
 font-family: "M PLUS 1p", sans-serif;
 background:#fff;
 font-size: 16px;
 font-weight: 400;
 line-height: 1.2;
 margin:0;
 padding:0;
 max-width: 100%;
 height: 100%;
}
@media screen and (max-width: 768px){
body {
 font-size: 14px;
}
}

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

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

a:hover{
 opacity: 0.5;
 transition: 0.8s;
}

a:visited{
/* color: inherit!important;*//*親と同じ色*/
}

/*///////////////////////////////////////
ヘッダー
///////////////////////////////////////*/
/*SPメニュー表示時、裏のbody固定*/
body.no-scroll {
 overflow: hidden; /* スクロールを無効化 */
}
header.fixed-header {
 position: fixed;
 top: 0; /* ヘッダーをページのトップに固定 */
 width: 100%;
 z-index: 1000; /* ヘッダーが他の要素の上に表示されるように */
}
header.shrink {
 /* ヘッダー縮小時のスタイル */
background-color: rgba(255, 255, 255, 1);
/*backdrop-filter: blur(3px);*/
}

h1 {
 font-size: 1em;
 }

/*スクロール時に小さく*/
.header {
 transition: all 0.3s ease;
 /*background-color: #fff;*/
}
.header.shrink {
 /*background-color: #fff;*/
 height: 40px;
}
.header-logo img {
 height: 40px;
 transition: all 0.3s ease; /* ロゴの変化も滑らかに */
}
.header.shrink .header-logo img {
 height: 40px;
}
.header.shrink .header-logo {
 font-size: 14px;
 z-index: -1;
}
.menu-link {
 transition: all 0.3s ease;
 font-size: 18px;
}
.header.shrink .menu-link {
 font-size: 14px; /* 縮小時の文字サイズ */
}
.header.shrink .header-container {
 height: 40px;
}

/*リンクアニメーション*/
.navlink {
 display: inline-block;
 text-align: center;
 text-decoration: none;
 outline: none;
 color: #1B85FB;
 border-bottom:2px;
}
.navlink:hover{
 color: #1B85FB;
}
a.navlink {
 position: relative;
}
a.navlink::after {
 position: absolute;
 left: 0;
 content: '';
 width: 100%;
 height: 2px;
 background: #333;
 bottom: -5px;
 transform: scale(0, 1);
 transition: transform 0.5s;
 transform-origin: center top;
}
a.navlink:hover::after {
 transform: scale(1, 1)
}

@media screen and (max-width: 767px) {
.header.shrink .header-logo img {
 height: auto;
}
/*SPメニューデザイン*/
a.navlink{
 color: #fff!important;
 font-size: 1.2em!important;
 text-align: left;
}
/*
a.navlink::before{
 content: '●';
 margin-right: 10px;
 color: #616177;
}
*/
}

.fixed-header {
 position: fixed;
 top: 0;
 width: 100%;
 z-index: 9999;
 /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
}


header {
 position: sticky;
 z-index: 10;
 top: 0;
 right: 0;
 left: 0;
 width: 100%;
 max-width: 1920px;
 margin-left: auto;
 margin-right: auto;
 /*padding: clamp(20px, 5.333333333333333vw, 40px);*/
 padding:0px 20px;
 -webkit-transition-duration: 300ms;
 transition-duration: 300ms;
 height: 60px;
}

@media (min-width: 1025px) {
header {
 /*padding: clamp(30px, 3.125vw, 60px) clamp(40px, 4.6875vw, 90px);*/
}
}

@media (max-width: 768px) and (orientation: landscape) {
header {
 padding: clamp(10px, 2.998500749625187vw, 20px);
}
}

.header-container {
 display: -ms-grid;
 display: grid;
 -webkit-box-align: center;
 align-items: center;
 -ms-flex-align: center;
 -webkit-box-pack: justify;
 -ms-flex-pack: justify;
 justify-content: space-between;
 -ms-grid-columns: 1fr 1fr;
 grid-template-columns: 1fr 1fr;
 height: 60px;
}

.header-logo {
 width: -moz-fit-content;
 width: -webkit-fit-content;
 width: fit-content;
 z-index: -1;
}

@media (max-width: 768px) and (orientation: landscape) {
.header-logo {
 width: clamp(70px, 17.991004497751124vw, 140px);
}
}

.logo-link {
 display: block;
 -webkit-transition-duration: 300ms;
 transition-duration: 300ms;
}
.logo-link:hover {
 opacity: 0.6;
}

@media (max-width: 1024px) {
.nav-menu {
 position: fixed;
 z-index: 0;
 top: 0;
 right: 0;
 width: 80%;
 height: 100vh;
 height: calc(var(--vh, 1vh) * 100);
 padding-right: clamp(30px, 8vw, 60px);
 padding-bottom: clamp(30px, 8vw, 60px);
 padding-left: clamp(30px, 8vw, 60px);
 transition-duration: 300ms;
 transform: translateX(200%);
 overflow: auto;
 background-color: rgba(26, 23, 174, .8);
 padding-top: 75px;
}
.nav-menu.active {
 transform: translateX(0);
}
}

@media (min-width: 1025px) {
.nav-menu {
 padding-top: 0 !important;
}
}

@media (min-width: 1025px) {
.menu-list {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 align-items: center;
 -ms-flex-align: center;
 -webkit-box-pack: end;
 -ms-flex-pack: end;
 justify-content: flex-end;
 gap: clamp(20px, 2.0833333333333335vw, 40px);
 list-style: none!important;
 font-weight: 500;
}
}
@media (max-width: 1024px) {
 .menu-item {

 }
}

.menu-item::marker {
 content: none;
}

.menu-link {
 display: block;
 color: #333;
 -webkit-transition-duration: 300ms;
 transition-duration: 300ms;
}
.menu-link:hover {
 opacity: 0.6;
}
.nav-menu.active .menu-link {
 color: #fff;
}
@media (max-width: 1024px) {
.menu-link {
 font-size: clamp(14px, 1.0416666666666667vw, 20px);
 padding-top: clamp(10px, 2.6666666666666665vw, 20px);
 padding-bottom: clamp(10px, 2.6666666666666665vw, 20px);
 text-align: center;
 color: #000;
}
}

@media (min-width: 1025px) {
.menu-link {
 font-size: clamp(14px, 1.0416666666666667vw, 20px);
}
}
.hamburger-button {
 width: -moz-fit-content;
 width: -webkit-fit-content;
 width: fit-content;
 height: clamp(13px, 3.466666666666667vw, 26px);
 margin-right: 0;
 margin-left: auto;
 cursor: pointer;
}
.hamburger-lines {
 position: relative;
 /*
 width: clamp(40px, 10.666666666666666vw, 90px);
 */
 height: clamp(13px, 3.466666666666667vw, 26px);
 width: 30px;
 -webkit-transition-duration: 300ms;
 transition-duration: 300ms;
}

@media (max-width: 1024px) {
.hamburger-lines {
/*
 width: clamp(40px, 10.666666666666666vw, 90px);
*/
 height: clamp(13px, 3.466666666666667vw, 26px);
 width: 30px;
}
}

@media (max-width: 768px) and (orientation: landscape) {
.hamburger-lines {
/*
 width: clamp(30px, 7.496251874062969vw, 50px);
*/
 height: clamp(15px, 2.998500749625187vw, 20px);
 width: 30px;
}
}
.hamburger-lines.active {
 height: 1px;
}
.hamburger-lines .line {
 position: absolute;
 right: 0;
 left: 0;
 display: block;
 width: 100%;
 height: clamp(1px, .26666666666666666vw, 2px);
 margin: auto;
 -webkit-transition-duration: 300ms;
 transition-duration: 300ms;
 background-color: #000;
}

.hamburger-lines.active .line {
 background-color: #fff;
}

.hamburger-lines .line:nth-child(1) {
 top: 0;
}
.hamburger-lines .line:nth-child(2) {
 top: 50%;
 transform: translateY(-50%);
}
.hamburger-lines .line:nth-child(3) {
 bottom: 0;
}

.hamburger-lines.active .line:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  width: 60%;
}

.hamburger-lines.active .line:nth-child(2) {
  opacity: 0; /* 中央の線を隠す */
}

.hamburger-lines.active .line:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
  width: 60%;
}

@media (min-width: 1025px) {
/* タブレットサイズ以上でハンバーガーメニューを丸ごと非表示 */
.hamburger-button {
 display: none;
}
}

/* bodyにオーバーレイをつけるスタイル */
body.with-overlay::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  z-index: 10; /* メニューより下、他の要素の上 */
  pointer-events: none; /* クリック透過 */
}

.header-top{
 display: flex;
 background: #1a17ae;
 height: 30px;
 align-items: center;
 justify-content: flex-end;
 gap: 30px;
 padding: 0 20px;
 font-size: 0.8em;
}
.header-top ul{
 display: flex;
 align-items: center;
 gap: 30px;
 justify-content: flex-end;
 color: #fff;
 list-style: none;
}
.header-top ul li a{
 color: #fff;
}
@media screen and (max-width: 768px){
.header-top{
 justify-content: center;
 padding: 0px;
}
}

/*ヘッダーフリーダイヤル*/
.free-link{
 display: block;
 color: #feff00!important;
 font-weight: bold;
 font-size: 2em;
}
.free-link::before{
 display: inline-block;
 content: url('');
 background-image: url('../img/free.png');
 background-size: 50%;
 background-position: center;
 background-repeat: no-repeat;
 width: 45px;
 margin:5px auto;
}
@media screen and (max-width: 768px){
.free-link{
 font-size: 1.6em;
}
}

/*///////////////////////////////////////
簡易表示切り替え用
///////////////////////////////////////*/
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
@media only screen and (max-width: 750px) {
img { max-width: 100%; }
}

/*///////////////////////////////////////
ボタン
///////////////////////////////////////*/
/*ヘッダーお問い合わせボタン*/
.button {
 display: block;
 width: 200px;
 background: linear-gradient(135deg, #FF5E3A, #FF9966);
 color: #fff;
 padding: 12px 24px;
 border: none;
 border-radius: 8px;
 font-size: 16px;
 text-align: center;
 font-weight: bold;
 cursor: pointer;
 transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover {
 transform: translateY(-2px);
}
@media screen and (max-width: 768px){
.button {
 width: 100%;
 font-size: 16px;
 margin-top: 10px;
}
}

/*矢印付きボタン*/
.bluebtn {
  display: inline-block;
  width: 250px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #102e8e;
}
.bluebtn a {
  display: inline-block;
  width: 250px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #102e8e;
  position: relative;
  font-weight: bold;
  font-size: 1.1em;
}
.bluebtn a::before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  bottom: 0;
  content: "";
  height: 7px;
  width: 7px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  transform: rotate(45deg);
  transition: right .3s;
}
.bluebtn a:hover::before {
  right: 25px;
}

/*///////////////////////////////////////
CSSアニメーション
///////////////////////////////////////*/
/*画面内に入ったらフェードイン*/
.fadein_youso{
 opacity: 0;
 transition: all 2s;
}
.fadeIn {
 opacity: 1;
}

/*///////////////////////////////////////
画面内に入ったら下から出てくる
fade-upを個別につければ勝手に遅れて徐々に表示される
///////////////////////////////////////*/
.fade-up {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-visible {
 opacity: 1;
 transform: translateY(0);
}


/*///////////////////////////////////////
メインコンテンツ
///////////////////////////////////////*/

/*メインイメージ*/
.mainimg{
 display: block;
 height: 700px;
 position: relative;
 background: #fff url(../img/mainimg.jpg) 0 0 no-repeat;
 background-size: cover;
 background-attachment: fixed;
}
.imgcontent{
 display: block;
 background: rgba(255,255,255,0.6);
 position: absolute;
 top: 15%;
 left: 5%;
 width: 700px;
 padding: 30px;
 color: #333;
 line-height: 1.5;
 font-weight: bold;
}
.imgcontent h2{
 line-height: 1.2;
 font-size: 3.3em;
}
.imgcontent img{
 display: block;
 margin-top: 10px;
 width: 400px;
 max-width: 100%;
 margin: 20px 0 0 0;
}

.imgcontent02{
 display: flex;
 position: absolute;
 bottom: 20%;
 left: 5%;
 gap: 30px;
 justify-content: flex-start;
}
@media screen and (max-width: 768px){
.imgcontent{
 top: 10%;
 left: 0%;
 max-width: 100%;
}
.imgcontent02{
 flex-wrap: wrap;
 bottom: 15%;
 left: 3%;
}
}
.head-point{
 display: block;
 width: 150px;
 max-width: 100%;
 line-height: 1.5;
 background: #1a17ae;
 color: #fff;
 padding: 10px;
 box-shadow: 5px 5px 0px 0px rgba(255, 242, 50, 1);
}
.head-point h3{
 text-align: center;
 font-size: 0.8em;
}
.head-point img{
 display: block;
 width: 90%;
 margin: 10px auto 0px;
}

.head-info{
 display: block;
 background: #fff;
 padding: 20px;
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 -webkit-transform: translateX(-50%);
 -ms-transform: translateX(-50%);
 width: 90%;
}
.head-info h3{
 display: block;
 color: #26368c;
 border-bottom: 1px solid #26368c;
 padding-bottom: 5px;
}
.head-info-inner{
 display: flex;
 justify-content: left;
 align-items: center;
 gap: 30px;
 margin-top: 10px;
}
.head-time{
 display: block;
 font-weight: bold;
}


/*コンテンツ領域*/
.container {
 margin: 0 auto;
 max-width: 1200px;
 padding: 0 2.0rem;
 position: relative;
}

main {
 /*margin: 6rem 0 0 0;*/
}
section {
/* margin: 5rem 0;*/
 padding: 5rem 0;
}

.center {
 text-align: center;
 margin-bottom: 4rem;
}
.container {
 margin: 0 auto;
 max-width: 1200px;
 padding: 0 2.0rem;
 position: relative;
}

@media screen and (max-width: 768px){
.imgcontent h2{
 font-size: 1.8em;
}
}


/*///////////////////////////////////////
背景
///////////////////////////////////////*/
/*薄い水色*/
.bg01{
 background: #f3fafe;
}

/*///////////////////////////////////////
ベンリーナについて
///////////////////////////////////////*/
.about-wrap{
 display: grid;
 grid-template-columns: 300px 1fr;
 gap: 50px;
 align-items: center;
 justify-content: center;
}
.about-wrap h2{
 color: #102e8e;
 font-size: 2.2em;
 font-weight: 800;
 margin-bottom: 30px;
}
.about-wrap p{
 line-height: 1.8;
}
@media screen and (max-width: 768px){
.about-wrap{
 grid-template-columns: 1fr;
 gap: 30px;
}
.about-wrap h2{
 font-size: 1.5em;
 margin-bottom: 20px;
}
}


/*///////////////////////////////////////
ベンリーナが選ばれる理由
///////////////////////////////////////*/
.reason-section {
 position: relative;
 background: #fff;
 padding: 60px 20px;
 text-align: center;
 overflow: hidden;
}

/* 左端の縦ボーダー */
.reason-section::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 20px;
 height: 100%;
 background: linear-gradient(to bottom,#FFD600 0%,#FFD600 30%,#0A2C78 30%,#0A2C78 100%);
}

/* 右端の縦ボーダー */
.reason-section::after {
 content: "";
 position: absolute;
 top: 0;
 right: 0;
 width: 20px;
 height: 100%;
 background: linear-gradient(to bottom,#0A2C78 0%,#0A2C78 30%,#FFD600 30%,#FFD600 100%);
}

.reason-header {
 display: block;
 margin-bottom: 40px;
}
.reason-header h2 {
 display: block;
 color: #102e8e;
 font-size: 1.8em;
 font-weight: 800;
 margin-bottom: 30px;
 margin-top: 50px;
}
.reason-header img{
 display: block;
 margin: 0 auto;
 width: 150px;
 max-width: 100%;
}

.reason-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 0px;
 max-width: 1100px;
 margin: 30px auto 50px;
 background: #fff;
}

/* 各アイテム */
.reason-item {
  padding: 30px;
  text-align: center;
  position: relative;
  border: none; /* 外枠は付けない */
  margin: 0 auto;
}

/* ===== 縦の仕切り線 ===== */
.reason-item:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  top: 0%;
  right: 0px; /* gapの半分に合わせる */
  width: 1px;
  height: 100%;
  background: #ddd;
}

/* ===== 横の仕切り線 ===== */
.reason-item:nth-child(-n+3)::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 100%;
  height: 1px;
  background: #ddd;
}


.reason-item img {
 height: 60px;
 margin-bottom: 15px;
}
.reason-item h3 {
 color: #0a2c78;
 margin-bottom: 10px;
}
.reason-item p {
 text-align: left;
 font-size: 0.9em;
 color: #333;
 line-height: 1.6;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
.reason-grid {
 grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 600px) {
.reason-grid {
 grid-template-columns: 1fr;
}
.reason-header h2{
 font-size: 1.5em;
}
.reason-item {
 width: 85%;
 border-bottom: 1px solid #ddd;
 padding: 15px;
}

.reason-item:not(:nth-child(3n))::after {
 display: none;
}
.reason-item:nth-child(-n+3)::before {
 display: none;
}
}


/*///////////////////////////////////////
エリア選択
///////////////////////////////////////*/
.area-wrap {
 display: flex;
 gap: 20px;
 position: relative;
 align-items: flex-start;
}

/* 右画像・左テキスト */
.area-wrap.reverse {
 flex-direction: row-reverse;
}

.area-img {
 flex: 1 1 45%;
}

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

.area-txt {
 flex: 1 1 55%; /* gap込みで収まるように調整 */
 padding-left: 3.125vw;
 padding-right: 3.125vw;
 line-height: 2;
 box-sizing: border-box; /* パディング込みで幅を計算 */
}
.area-txt h2{
 font-size: 1.8em;
 font-weight: 800;
 color: #102e8e;
}
.area-select{
 display: block;
}
.area-select h3{
 display: block;
 margin: 20px auto;
 border-bottom: 2px solid #2a3d66;
}

.area-select ul{
 display: grid;
 grid-template-columns: repeat(4,1fr);
 gap: 10px;
 align-items: center;
 justify-content: flex-start;
 list-style: none;
}
.area-select ul li{
 display: block;
 background-image: linear-gradient(180deg, rgba(97, 142, 255, 1), rgba(0, 11, 173, 1));
 cursor: pointer;
 padding: 20px;
 border-radius: 5px;
}
.area-select ul li:hover{
 background-image: linear-gradient(180deg, rgba(66, 111, 255, 1), rgba(112, 146, 255, 1));
}
.area-select ul li a{
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;

}/* タブレット用（768px〜1024px） */
@media screen and (max-width: 1024px) {
.area-select ul{
 grid-template-columns: repeat(3,1fr);
}
}

@media screen and (max-width: 767px) {
.area-wrap{
 flex-direction: column;
 margin-top: 0px;
 height: auto;
}
.area-img img{
 width: 100%;
 margin-left: 0;     /* 左寄せ */
 margin-right: auto; /* デフォルトは左に寄せる */
}
.area-wrap.reverse .area-img img {
 margin-left: auto;  /* reverse のときは右に寄せる */
 margin-right: 0;
}
.area-txt{
 width: 100%;
 padding-left: 5vw;
 padding-right: 5vw;
}
.area-select ul{
 grid-template-columns: repeat(3,1fr);
}
}


/*///////////////////////////////////////
ご契約までの流れ
///////////////////////////////////////*/
.flow-h2{
 display: block;
 margin-bottom: 80px;
}
.flow-wrap{
 display: grid;
 grid-template-columns: repeat(4,1fr);
 gap: 30px;
}
.flow-inner{
 display: block;
 border: 3px solid #1a17ae;
 padding: 30px 20px 15px;
 position: relative;
 margin: 0px auto 50px;
}
.flow-inner span{
 display: flex;
 align-items: center;
 justify-content: center;
 width: 50px;
 height: 50px;
 font-weight: 800;
 color: #fff;
 font-size: 1.2em;
 background: #26368c;
 padding: 20px;
 border-radius: 50%;
 position: absolute;
 top: -25px;
 left: 50%;
 transform: translateX(-50%);
 -webkit-transform: translateX(-50%);
 -ms-transform: translateX(-50%);
}
.flow-inner h3{
 margin-bottom: 10px;
}
.flow-inner p{
 text-align: left;
 font-size: 0.95em;
 line-height: 1.5;
}
@media screen and (max-width: 767px) {
.flow-wrap{
 grid-template-columns: 1fr;
 gap: 0;
}
.flow-h2{
 margin-bottom: 50px;
}
}


/*///////////////////////////////////////
各ページタイトル/パンくず
///////////////////////////////////////*/
.pagetitle{
 display: flex;
 justify-content: center;
 align-items: center;
 font-size: 80%;
 font-weight: bold;
 height: 200px;
 background: url(../img/titleBG.jpg) no-repeat center center / cover;
 background-color: #fff;
}
.pagetitle h2{
 color: #fff;
 font-size: 2.5em;
}

/*パンくず*/
.breadcrumb {
 display: flex;
 flex-wrap: wrap;
 list-style: none;
 padding: 5px 20px;
 font-size: 0.8em;
}
.breadcrumb li:not(:last-of-type)::after {
 content: "/";
 margin: 0 .6em;
 color: #777;
}






/*///////////////////////////////////////
見出し
///////////////////////////////////////*/
h2{
 font-size: 1.8em;
 font-weight: 800;
 color: #102e8e;
}
@media screen and (max-width: 767px) {
h2{
 font-size: 1.3em;
}
}

/*///////////////////////////////////////
フッター
///////////////////////////////////////*/
.footer-contact{
 display: block;
 background: #fff url(../img/mainimg_bg.jpg) 0 0 no-repeat;
 background-size: cover;
 background-attachment: fixed;
}
.footer-contact h2{
 color: #fff;
}
.footer-contact h2 span{
 display: block;
 font-size: 0.7em;
 color: #feff00;
 margin-bottom: 5px;
}

.footer-contact p{
 display: block;
 margin: 30px auto;
 font-weight: bold;
 color: #fff;
}

.free-link02{
 display: block;
 color: #1a17ae;
 font-weight: 800;
 font-size: 2em;
}
.free-link02::before{
 display: inline-block;
 content: url('');
 background-image: url('../img/free02.png');
 background-size: 50%;
 background-position: center;
 background-repeat: no-repeat;
 width: 80px;
 margin:5px auto;
}
@media screen and (max-width: 768px){
.free-link02{
 font-size: 1.6em;
}
}

.footer-contact-inner{
 display: grid;
 grid-template-columns: repeat(2,1fr);
 gap: 30px;
 background: #fff;
 padding: 20px;
 justify-content: center;
 font-weight: bold;
 align-items: center;
 max-width: 800px;
 margin: 0 auto;
}
@media screen and (max-width: 768px){
.footer-contact-inner{
 grid-template-columns: 1fr;
 gap: 0;
}
}

/*フッターメニュー*/
.footer-wrap{
 display: grid;
 grid-template-columns: 200px 1fr;
 margin: 50px auto;
 align-items: center;
 justify-content: center;
 padding: 0 40px;
}
@media screen and (max-width: 768px){
.footer-wrap{
 grid-template-columns: 1fr;
}
}

.footer-wrap ul{
 display: flex;
 flex-wrap: wrap;
 gap: 30px;
 align-items: center;
 justify-content: end;
 list-style: none;
 font-weight: bold;
}
@media screen and (max-width: 768px){
.footer-wrap ul{
 margin-top: 30px;
 display: grid;
 grid-template-columns: repeat(2,1fr);
 gap: 10px;
 justify-content: flex-start;
}
}

/*コピーライト*/
.copyright {
 text-align: center;
 padding: 1rem 0;
 background-color: #fff;
 border-top: 1px solid #1a17ae;
 color: #333;
 font-size: 0.8em;
}




/*///////////////////////////////////////
レスポンシブ表示
///////////////////////////////////////*/
@media screen and (max-width: 768px){

/*ヘッダー*/
.header {
 flex-direction: column;
 /*margin-bottom: 10px;*/
}

.header-box {
 display: none;
}

/*メインコンテンツ*/

/*フッター*/
#nav ul{
 display: inline-block;
}
#nav li{
 display: inline-block;
 width: 160px;
}

}
