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

@font-face {
	font-family: 'LINE';
	src: url('../fonts/LINESeedSans_W_XBd.woff2') format('woff');
}

/* ルートレベルで変数を定義 */ :root {
  /* フォントサイズ */
  --base-font-size: 16px;
  --small-font-size: 12px;
  --little-font-size: 14px;	
  --tablet-font-size: 1.2rem;
  /* カラー */
  --text-color: #333;
  --link-color: #333;
  --contents-link-color: red;
  --base-color: #1370a9;
  --red: red;
	--orange:#ee7800;
	--gold: #b3803e;
	--light-gold: #f6ecde;
  --gray: #abb8c3;
--violet: #a40b5d;	
  --brown: #663300;
  --white: white;
--yellow:#ffff00;	
  --black: #333;	
  --x-color: #0f1419;
  --insta-color: #CF2E92;
  --yt-color: #DA1725;
  --line-color: #00B900;
	

  /* 間隔 */
  --space-10: 10px;
  --space-20: 20px;
  --space-30: 30px;	
  --space-40: 40px;
  --space-60: 60px;
	
	/* %幅サイズ*/
  --space-10p: 10%;
  --space-20p: 20%;
  --space-30p: 30%;	
  --space-40p: 40%;
  --space-46p: 46%;
 --space-50p: 50%;	
  --space-60p: 60%;
	
	
  /* コンテンツ幅とパディング */
  --max-content-width: 1200px;
  --content-padding-small: 20px;
  --content-padding-medium: clamp(1.25rem, -0.179rem + 7.14vw, 2.5rem);
  --content-padding-large: 40px;
  --content-padding-xlarge: 60px;
  /* カラム間隔 */
  --gap-2: 2%;
  --gap-5: 5%;
  /* トランジション */
  --transition-fast: 0.25s;
  --transition-slow: 0.5s;
}
/* リセットと基本設定 */
* {
  margin: 0;
  padding: 0;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  color: var(--text-color);
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
	
}

body{
 font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-feature-settings:“palt”;
		 scroll-behavior: smooth;
	
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}




blockquote {
	quotes: none;
}

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

del {
	text-decoration: line-through;
}


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

address{
	font-style: normal;
}


address p{
	text-decoration: none;
}




article{
	overflow-x: hidden;
}


/* a設定 */
a img {
  border: none;
}
a img:hover {
  opacity: 0.7;
  transition: var(--transition-slow);
}
a {
  color: var(--link-color);
  text-decoration: none;
  transition: var(--transition-fast);
}
.contents a {
  color: var(--contents-link-color);
}



/* 文字詰め設定 */
.txt-c {
  text-align: center;
}
.txt-r {
  text-align: right;
}

.pc--c-tbsp--l{
	text-align: center!important;
}

@media only screen and (max-width: 980px)  {
	.pc--c-tbsp--l{
	text-align: left!important;
}
}




/* デバイス表示設定 */

@media only screen and (min-width: 701px)  {
	.pc-tb-only{
		display: block;
	}
	
	.pb-sp-only{
		display: none;
	}
}


@media only screen and (max-width: 700px)  {
	.pc-tb-only{
		display: none;
	}
	
	.pb-sp-only{
		display: block;
	}
}

.sp-only{
		display: none;
	}

@media only screen and (max-width: 480px)  {
	.sp-only{
		display: block;
	}
}

/* マージン */
.mt10 {
  margin-top: var(--space-10);
}
.mt20 {
  margin-top: var(--space-20);
}
.mt40 {
  margin-top: var(--space-40);
}
.mt60 {
  margin-top: var(--space-60);
}
.mb10 {
  margin-bottom: var(--space-10)!important;
}
.mb20 {
  margin-bottom: var(--space-20)!important;
}

.mb30 {
  margin-bottom: var(--space-30)!important;
}

.mb40 {
  margin-bottom: var(--space-40)!important;
}
.mb60 {
  margin-bottom: var(--space-60)!important;
}
/* パディング */
.p60 {
  padding: var(--space-60) 0;
}
.p40 {
  padding: var(--space-40) 0;
}

.p20 {
  padding: var(--space-20) 0;
}
.p10 {
  padding: var(--space-10) 0;
}



.pt10 {
  padding-top: var(--space-10);
}
.pt20 {
  padding-top: var(--space-20);
}
.pt40 {
  padding-top: var(--space-40);
}
.pt60 {
  padding-top: var(--space-60);
}
.pb10 {
  padding-bottom: var(--space-10);
}
.pb20 {
  padding-bottom: var(--space-20);
}
.pb40 {
  padding-bottom: var(--space-40);
}
.pb60 {
  padding-bottom: var(--space-60);
}

/* ボタン */

/* コンテンツ*/
.full-size-wrapper{
	max-width: 1160px;
  width: 95%;
	margin: 0 auto;
}

/* イメージ配置 */
.full-image {
  display: block;
  width: 100%;
  height: auto;
}

/* 半透明 */
.translucent-area{
  background-color: white;
  opacity: 0.5;
}

/* SNSカラー */
.fb-c {
  color: var(--fb-color);
}
.x-c {
  color: var(--x-color);
}
.insta-c {
  color: var(--insta-color);
}
.yt-c {
  color: var(--yt-color);
}
.line-c {
  color: var(--line-color);
}


/* ヘッダー */

header{
	width: 100%;
	height: 110px;
	position: fixed;
	background-color: white;
	z-index: 10000;
}

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

}

@media screen and (max-width: 700px) {
	header{
	height: 45px;
}

}


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

}

.header-top{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}


@media screen and (max-width: 1199px) {
	.header-top{
		width: 100%;
}
	
}


@media screen and (max-width:700px) {
	.header-top{
		padding: 0;
		justify-content:flex-start;
}
	
}

.site-logo {
    display: inline-block;
    padding: 10px 0 0;
	margin-left: 10px;
}


.site-logo a{
	display: block;
}

.site-logo a .logo-wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
}


.site-logo a .logo-wrapper img:first-of-type{
	width: auto;
    height: clamp(2.5rem, 1.979rem + 0.69vw, 2.813rem);
    display: block;

}

.site-logo a .logo-wrapper img:last-of-type{
	width: auto;
    height: clamp(2.188rem, 1.667rem + 0.69vw, 2.5rem);
    display: block;

}


.logo-text{
	text-align: center;
    line-height: 0.5em;
    font-weight: 400;
    padding: 0 0 0 5px;
}

.logo-subtitle{
	font-size: clamp(0.688rem, 0.583rem + 0.14vw, 0.75rem);
    margin-bottom: 10px;

}

.logo-company{
	font-size: clamp(1.188rem, 0.979rem + 0.28vw, 1.313rem);
    letter-spacing: 0.4em;
    padding-left: 5px;
    padding-bottom: 5px;
}


@media screen and (max-width: 980px) {
	.site-logo {
    padding: 10px 0 0;
}

}

@media screen and (max-width: 700px) {
	.site-logo {
    padding: 6px 0 0;
}

}




/* スマホサイズ用ロゴ調整 */
@media screen and (max-width: 700px) {

  .site-logo a .logo-wrapper {
    flex-direction: row; /* デフォルトのまま */
    align-items: center;
  }

  .site-logo a .logo-wrapper img:first-of-type {
    height: 35px;
  }

  .site-logo a .logo-wrapper img:last-of-type {
    height: 30px;
  }

  .logo-text {
    padding: 0;
    line-height: 0.8;
  }

  .logo-subtitle {
    font-size: clamp(0.6rem, 0.5rem + 0.5vw, 0.7rem);
    margin-bottom: 5px;
  }

  .logo-company {
    font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.1rem);
    letter-spacing: 0.2em;
    padding-left: 0;
    padding-bottom: 0;
  }
}


/* ヘッダーナビ */

.nav-container {
	padding: 10px 0;

}

/* ナビ上部 */
.nav-top {
  display: flex;
    justify-content: flex-end;
    align-items: center;
	margin-top: 15px;
}

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

.contact-area a{
  text-decoration: none;
margin-right: 15px;
}


@media screen and (max-width: 700px) {
	
	.nav-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 0 20px;
}
	
	.contact-area{
  display: none;
}
}



.contact-tel{
	  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
	font-size: clamp(1.625rem, 1.208rem + 0.56vw, 1.875rem);
}

.contact-btn{
font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 10px 1.5em 10px 1em;
	font-size: clamp(0.813rem, 0.708rem + 0.14vw, 0.875rem);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.05em;
    color: white;
    border-bottom: 3px solid #9f000c;
    border-radius: 100vh;
    background: red;
	}

.contact-btn:hover {
  margin-top: 3px;
  border-bottom: 1px solid #9f000c;
}



.fa-position-right {
  position: absolute;
    top: calc(50% - .4em);
    right: 0.5em;
}


.language-switch a {
   font-size: clamp(0.875rem, 0.667rem + 0.28vw, 1rem);
	font-weight: bold;
}


.language-switch a:first-child::after {
  content: "|";
  margin: 0 8px;
 
}


@media screen and (max-width: 700px) {
	
	.language-switch a {
   font-size: 12px;
}


.language-switch a:first-child::after {
  margin: 0 5px;
 
}
}

@media screen and (max-width: 980px) {
	
	.nav-container {
	padding: 10px 20px;

}
	
.contact-tel{
	font-size:21px;
}

.contact-btn{
    padding: 7px 2em 7px 1.5em;
    font-size: 12px;
	}

.contact-btn:hover {
  margin-top: 3px;
  border-bottom: 1px solid #9f000c;
}
	
}

/* ナビ下部 */

.nav-container{
	position: relative;
}

.nav-bottom {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.main-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.main-menu li {
  
  margin-left: 20px;
}

.main-menu li:first-child {
  margin-left: 0;
}

.main-menu a {
  text-decoration: none;
  font-size: clamp(1rem, 0.792rem + 0.28vw, 1.125rem);
  padding: 10px;
  display: flex;
  align-items: center;
  font-weight: bold;
}


@media screen and (max-width: 980px) {
	.main-menu a {
  font-size:14px;
}
}


.main-menu a i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.has-submenu:hover > a,
.has-submenu:hover > a i {
  color: var(--base-color);
}

/* 回転用クラス */
.rotate-up {
  transform: rotate(180deg);
}


/* サブメニュー：画面左端から表示 */
.has-submenu {
  position: static;
}


.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background-color: var(--base-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 20;

  /* アニメーション用 */
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* 表示時 */
.submenu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* 内部コンテンツ中央寄せ */
.submenu-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  padding: 10px 20px;
}

.submenu ul {
  list-style: none;
  display: flex;
 justify-content: center;
	align-items: flex-start;
  gap: 1%;
  padding: 0;
  margin: 0;
}

.submenu li{
	width: 18%;
	margin-left: 0px;
}

.submenu li a {
	display: block;
	width: 100%;
	text-align: center;
  font-size:  clamp(0.688rem, 0.583rem + 0.14vw, 0.75rem);
	color: white;
}

.submenu li a img {
    width: 100%; 
	height: auto;
	display: block;
	margin-bottom: 0.5em;
}

.submenu li a:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
  padding: 6px;
}




@media screen and (max-width: 700px) {
  /* ハンバーガーボタンのラッパー */
  .sp-btn-wrapper {
    position: fixed;
    width: 45px;
    height: 45px;
    top: 0;
    right: 0;
    background-color: var(--base-color); 
    display: grid;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  /* ハンバーガーボタン */
  .btn-trigger {
    position: relative;
    width: 28px;
    height: 40px;
    cursor: pointer;
  }

  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
  }

  .btn-trigger,
  .btn-trigger span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }

  .btn-trigger span:nth-of-type(1) {
    top: 10px;
  }

  .btn-trigger span:nth-of-type(2) {
    top: 19px;
  }

  .btn-trigger span:nth-of-type(3) {
    bottom: 10px;
  }

  /* ナビゲーションメニュー */
  #sp-nav {
    position: fixed;
    top: 44px;
    right: -100%; /* 初期状態では非表示 */
    width: 100%;
    height: calc(100vh - 44px);
    background-color: var(--base-color); /* 必要に応じて色を調整 */
    transition: right 0.5s ease-in-out;
    z-index: 999;
  }

  #sp-nav.active {
    right: 0; /* 右からスライドイン */
  }

  #sp-nav ul {
    list-style: none;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  #sp-nav li {
    text-align: center;
  }

  #sp-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 10px;
  }
}

/* ハンバーガーボタンのアクティブ状態（X形状） */
#sp-btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}

#sp-btn.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-sp-btn-bar02 0.8s forwards;
  animation: active-sp-btn-bar02 0.8s forwards;
}

@-webkit-keyframes active-sp-btn-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-sp-btn-bar02 {
  100% {
    height: 0;
  }
}

#sp-btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
	
@media screen and (max-width: 429px) {
	  #sp-nav {
		  top: 79px;
    height: calc(100vh - 79px);
  }
	
}

/* SPコンタクトボタン*/

ul.sp-contact{
	display: none;
}
	
@media screen and (max-width: 700px) {
ul.sp-contact{
	position: absolute;
	top:0;
	right:45px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
    text-align: center;
	color: white;
}

ul.sp-contact li{
	width: 45px;
	height: 45px;
	display: grid;
	justify-content: center;
	align-items: center;
	border-width: 0 0 1px 1px;
border-style: solid;
border-color: var(--base-color);
}

ul.sp-contact li a span:nth-of-type(1){
	display: block;
}
	
ul.sp-contact li a span:nth-of-type(2){
	display: none;
}


ul.sp-contact li .fa-solid{
	display: block;
	font-size: 18px;
	color: var(--gold);
}
}


@media screen and (max-width: 429px) {
ul.sp-contact{
	position: absolute;
	top:45px;
	left: 0;
	right: inherit;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
    text-align: center;
	color: #333;
	background: var(--light-gold);
	gap: 20px;
	padding: 7px 2em;
}

ul.sp-contact li{
	width: auto;
	height: auto;
	background: white;
	border-radius: 20px;
	padding: 2px 20px;
	border-width: 0;
}

ul.sp-contact li a{
	display: flex;
	justify-content: center;
	align-items: center;
}
ul.sp-contact li a span:nth-of-type(1){
	display: none;
}
	
ul.sp-contact li a span:nth-of-type(2){
	display: block;
}

ul.sp-contact li .fa-solid{
	font-size: 16px;
	margin-right: 10px;
}
}



/* メイン*/



	.header-offset{
	padding-top: 110px;
}


@media screen and (max-width: 980px) {
	.header-offset{
	padding-top: 107px;
}

}


@media screen and (max-width: 700px) {
	.header-offset{
	padding-top: 45px;
}

}


@media screen and (max-width: 429px) {
	.header-offset{
	padding-top: 79px;
}

}







.contents-wrapper {
    max-width:1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    line-height: 2em;
}



.contents {
    width: 95%;
    margin: 0 auto;
}


@media screen and (max-width: 980px) {
	
	.contents-wrapper {
    padding: 0 40px;
}

}


@media screen and (max-width: 700px) {
	
	.contents-wrapper {
    width: 100%;
    padding: 0 2em;
}

	
	.contents {
    width: 100%;
    margin: 0 auto;
}


}




/* フッター */
footer{
	background-color: var(--base-color);
	padding: var(--space-40) 0 var(--space-20);
	color: white;
}

footer a{
	color: white;
}

footer a:hover{
	color: var(--yellow);
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-40);
}

.footer-logo-area{
	text-align: center;
}

.footer-logo-link{
	display: inline-block;
}


.footer-logo-wrapper{
	display: flex;
}


.footer-logo-wrapper img:first-of-type{
	width: auto;
    height: 56px;
    display: block;

}


.footer-logo-wrapper img:last-of-type{
	width: auto;
    height: 50px;
    display: block;

}


.footer-logo-text{
	text-align: center;
    line-height: 0.5em;
    font-weight: 400;
    padding: 7px 0 0 3px;
}

.footer-logo-subtitle{
	font-size: 12px;
    margin-bottom: 14px;

}

.footer-logo-company{
	font-size: 24px;
    letter-spacing: 0.3em;
    padding-left: 5px;
    padding-bottom: 5px;
}



.footer-sns{
padding: var(--space-20) 2em var(--space-40) 2em;
	display: flex;
	justify-content: center;
	gap:30px;
	align-items: center;
}


.footer-sns li{
	font-size: 21px;
}

.footer-inner nav{
	width: 800px;
}

 .footer-menu{
	display: flex;
	justify-content: space-between;
	font-weight: bold;
}


.footer-menu li > a {
	margin-bottom: 1em;
    display: block;
}

.footer-submenu ul li a{
	font-size: 14px;
    margin-bottom: 0.75em;
    display: block;
    padding-left: 0.5em;
}


@media screen and (max-width: 980px) {
	 .footer-menu{
	display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 7% 20px;
        padding-left: 5%;
}

	.footer-menu li {
	width: 31%;
        padding-left: 1%;
}
	
	.footer-submenu ul li{
	width: 100%;
}
	
}

@media screen and (max-width: 700px) {
	
	.footer-menu {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 7% 20px;
        padding-left: 10%;
        width: 50%;
        margin: 0 auto;
    }

.footer-menu > li:nth-child(-n+4) {
  display: none;
	}
	
	.footer-menu li {
        width: 100%;

    }
}


@media screen and (max-width: 480px) {
	
	.footer-menu {
        padding-left: 12%;
        width: 70%;
    }


}


@media screen and (max-width: 399px) {
	
	.footer-menu {
        padding-left: 10%;
        
    }
}


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

	    .footer-menu {
        width: 100%;
        padding: 0 2em;
        margin: 0 auto;
        text-align: center;
    }
	
	.footer-submenu ul li a {
    font-size: 13px;
    margin-bottom: 0.75em;
    display: block;
    padding-left: 2em;
		text-align: left;
}
	
	.footer-logo-wrapper img:first-of-type {
    width: auto;
    height: 45px;
    display: block;
}
	
	.footer-logo-wrapper img:last-of-type {
    width: auto;
    height: 42px;
    display: block;
}
	
	.footer-logo-subtitle {
    font-size: 11px;
    margin-bottom: 14px;
}
	
	.footer-logo-company {
    font-size: 21px;
    letter-spacing: 0.3em;
    padding-left: 5px;
    padding-bottom: 5px;
}
	
}

.copyright{
	font-size: var(--little-font-size);
	padding: var(--space-20) 2em 0 2em;
}





/* リスト */

ul.item-list {
		margin: 1.5em;
		list-style: none;
		padding-left: 1.5em;
		font-size: 0.95em;
	}
	ul.item-list li {
		margin-bottom: 0.5em;
		border: none;
		width: 100% !important;
		position: relative;
		padding-left: 1em;
		list-style: none;
	}
	ul.item-list li::before {
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f058";
		position: absolute;
		left: -1.5em;
		top: 0;
	}
	@media only screen and (max-width: 980px) {
		ul.item-list {
			margin: 1em 0;
			list-style: none;
			padding-left: 1em;
		}
		ul.item-list li::before {
			left: -0.5em;
		}
	}



/* dl dt dd*/

dl.information dt{
	font-size: clamp(1.125rem, 1.087rem + 0.19vw, 1.313rem);
	padding: 0.25em;
	margin-bottom: 0.5em;
	border-bottom: dotted var(--gray) 1px;
	line-height: 1.5em;
	padding-left: 1.5em;
  text-indent: -1.4em;
	font-weight: bold;
}


dl.information dd{
	margin-bottom:30px;
}

dl.information dd a{
	color: var(--text-color);
}

	
dl.information dd:last-child{
	margin-bottom:0;
}



/* パーツ*/

/* パンくずリスト*/
.breadcrumb{
	
	font-size: var(--small-font-size);
	padding: 0.5em 0;

}