@charset "UTF-8";
@font-face {
  font-family: 'LINESeedJP';
  src: url("./fonts/LINESeedJP_OTF_Bd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #333;
  line-height: 1.6; }

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

.img_center{
margin: 0 auto;
text-align: center;
}

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

ul, ol {
  list-style: none; }

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent; }

header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px 20px 0px; }/*20 0*/

header .header-container .header-logo {
      position: relative;
      display: block;
      width: 116px;/*220*/
      height: 55px;
      margin-right: auto; }

header .header-container .header-logo  img {
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.3s ease; }

header .logo-default {
    opacity: 1; }
header .logo-scroll {
    opacity: 0; }
header.scrolled {
    background: #fff; }
header.scrolled .logo-default {
      opacity: 0; }
header.scrolled .logo-scroll {
      opacity: 1; }
header.scrolled .gnav-list::before {
      position: absolute;
      content: '';
      width: 680px;
      height: 1px;
      bottom: 36px;
      background: #0074be; }
header.scrolled .gnav-list a {color: #333; }
header.scrolled .hamburger span {background: #333; }

header .gnav-list {
display: flex;
gap:75px; }

header .gnav-list::before {
      position: absolute;
      content: '';
      width: 750px;
      height: 1px;
      bottom: 36px;
      background: #fff; }

header .gnav-list > li > a {
position: relative;
display: flex;
align-items: center;
height: 60px;
color: #fff;
font-size: 20px;
font-weight: 600;
transition: color 0.3s ease;
border-bottom: rgba(0, 0, 0, 0) 3px solid; }

header .gnav-list > li > a:hover {
color: #0074be; }

header .gnav-list > li > a:hover::before {
          position: absolute;
          content: '';
          width: 100%;
          height: 3px;
          bottom: 14px;
          background: #0074be; }

header .has-submenu > a {
    position: relative;
    padding-right: 20px; }

header .has-submenu > a::after {
      content: '+';
      position: absolute;
      right: 0;
      top: 48%;
      transform: translateY(-50%);
      font-size: 20px;
      font-weight: bold;
      color: inherit;
      transition: all 0.3s ease; }

header .has-submenu:hover > a::after {
    content: '−'; }

header .has-submenu .submenu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    /*20260420:背景*/
    width: 100%;
    padding: 48px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }

header .has-submenu .submenu p {
      width: 960px;
      margin: 0 auto;
      color: #000;
      font-size: 28px;
      font-weight: bold; }

header .has-submenu .submenu ul {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      width: 960px;
      padding: 0 32px 0;
      /*20260420:高さ余白で調整*/
      margin: 0 auto; }

header .has-submenu .submenu ul li {
        width: calc((100% - 64px)/3);
        margin-top: 24px; }

header .has-submenu .submenu ul li a {
          position: relative;
          display: inline-block;
          color: #000;
          font-size: 18px;
          padding-right: 24px;
          border-bottom: 1px solid #fff; }

header .has-submenu .submenu ul li a::before {
            position: absolute;
            content: '';
            width: 15px;
            height: 12px;
            top: 8px;
            right: 0;
            background: url(../img/icon-gnav.svg) no-repeat; }

header .has-submenu .submenu ul li a:hover {
border-bottom: #0074be 1px solid; }

header .has-submenu .submenu ul li a:hover::before {
background: url(../img/icon-gnav-hover.svg) no-repeat; }

header .has-submenu:hover .submenu {
display: block; }

header .hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px; }

header .hamburger span {
      width: 30px;
      height: 3px;
      background: #fff;
      transition: all 0.3s ease; }
header .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px); }
header .hamburger.active span:nth-child(2) {
      opacity: 0; }
header .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -8px); }

@media (max-width: 1200px) {
header .hamburger {
      display: flex;
      position: relative;
      z-index: 1002; }
header .hamburger.active {
        position: fixed;
        top: 20px;
        right: 20px; }
header .hamburger.active span {
          background: #333; }
header .gnav {
      position: fixed;
      top: 0;
      right: -100%;/*-100%*/
      width: 100%;
      max-width: 400px;
      height: 100vh;
      background: #fff;
      transition: right 0.3s ease;
      padding: 80px 30px 30px;
      overflow-y: auto;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      z-index: 1001; }
header .gnav.active {
        right: 0; }
header .gnav .gnav-list {
        flex-direction: column;
        gap: 0; }
header .gnav .gnav-list::before {
          display: none; }
header .gnav .gnav-list > li {
          border-bottom: 1px solid #e0e0e0; }
header .gnav .gnav-list > li > a {
            color: #333;
            display: block;
            padding: 20px 10px;
            font-size: 16px;
            font-weight: 600; }
header .gnav .gnav-list > li > a:hover::before {
              display: none; }
header .gnav .gnav-list a {
          color: #333; }
header .gnav .has-submenu {
        position: relative; }
header .gnav .has-submenu > a::after {
          content: '＋';
          position: absolute;
          top: 30px;
          right: 10px;
          font-size: 28px;
          transition: transform 0.3s ease; }
header .gnav .has-submenu .submenu {
          display: none;
          position: static;
          background: #f8f8f8;
          padding: 0;
          box-shadow: none;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease; }
header .gnav .has-submenu .submenu p {
            font-size: 18px;
            padding: 24px 24px 8px; }
header .gnav .has-submenu .submenu ul {
            gap: 0;
            margin: 0;
            padding: 0;
            width: 100%; }
header .gnav .has-submenu .submenu ul li {
              width: 100%;
              border: none;
              margin: 0; }
header .gnav .has-submenu .submenu ul li a {
                display: block;
                padding: 12px 20px;
                font-size: 14px;
                font-weight: 600;
                display: block; }
header .gnav .has-submenu .submenu ul li a::before {
                  top: 16px;
                  right: 16px; }
header .gnav .has-submenu .submenu ul li a:hover {
                  background: #e8e8e8; }
header .gnav .has-submenu.open > a::after {
          content: '－'; }
header .gnav .has-submenu.open .submenu {
          display: block;
          max-height: 800px; }
header .menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: transparent;
      z-index: 500; }
header .menu-overlay.active {
        display: block; } 
}

main {
  /*コンテンツ*/ }
main section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease; }
main section.is-visible {
      opacity: 1;
      transform: translateY(0); }

main section.gray-bg {
      background: #f7f6f6; }

main section.about p {
  color: #595757;
  font-size: 18px;/*25*/
  font-weight: normal;
	padding-top: 5px;
	line-height: 2em;
}
main section.about h2 {
color: #1A1311;/*#0074be*/
  font-size: 28px;
  font-weight:700;
  line-height: 2;
  text-align: center;
 padding-bottom: 10px;
	padding-top: 0px;
	border-bottom: none;
}

main section.about .right{
	width: 97%;
}
main section.about p.right {
  color: #595757;
  font-size: 18px;/*25*/
  font-weight: normal;
	line-height: 1.5em;
	text-align: right;
}

.info_box{
	width: 65%;
	margin-left: 10px;
	margin-top: 20px;
	border: 1px solid #b9b9b9;
	height: auto;
}
.info_box p{
	font-size: 18px;
   font-weight: normal;
	line-height: 1.5em;
	padding: 20px;
}

main.page-list #sub_top {
	background-color: #EEE;
	background-repeat: no-repeat;
	background-position: center center;
	height: 360px;
	line-height: 30px;
	padding-top: 260px;
	width: 100%;
	background-size: cover;
	text-align: center;
}
#sub_top .sub-content {
  position: relative;
 top:-120%;
  margin: 0 auto;
  width: 60%;/*60%*/
  text-align: center;
  padding: 0px 0 20px 0;
 background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
 opacity: 0.8; /* 0.0(完全透明) 〜 1.0(不透明) */
		 box-sizing: border-box; 
}
#sub_top .sub-content-left {
  position: relative;
 top:-120%;
 left:-30%;
  margin: 0 auto;
  width: 60%;/*60%*/
  text-align: center;
  padding: 0px 0 20px 0;
	letter-spacing: 1px;
 background: linear-gradient(to right, rgba(255, 255, 255), rgb(255, 255, 255), rgba(255, 255, 255, 0));
 opacity: 0.8; /* 0.0(完全透明) 〜 1.0(不透明) */
}

#sub_top .sub-content-right {
  position: relative;
 top:-120%;
 left:20%;
  margin: 0 auto;
  width: 60%;/*60%*/
  text-align: center;
  padding: 0px 0 20px 50px;
	letter-spacing: 1px;
 background: linear-gradient(to left, rgba( 255, 255, 255), rgb(255, 255, 255), rgba(255, 255, 255, 0));
 opacity: 0.8; /* 0.0(完全透明) 〜 1.0(不透明) */
}
#sub_top h1 {
  color: #000;
  font-size: 42px;
text-align: center;
}
#sub_top h1 span {
color: #0074be;
  font-size: 16px;
  font-weight: bold;
  font-family: "LINESeedJP", "Noto Sans JP", sans-serif;
  letter-spacing: 0px;
line-height: 3em;
}
/*サブページのヘッダー画像　帯レイヤー*/

#sub_top.service01{
	background-image: url(../img/service01.jpg);
}
@media screen and (max-width: 960px) {
#sub_top.service01{
	background-image: url(../img/service01_sp.jpg);
}	
}
@media (max-width: 768px) {
main section.about p {
          font-size: 18px;
          text-align: left;
	line-height: 1.5em}
main section.about p br {
            display: none; } 
main section.about .right br {
            display: block; }
.info_box{
	width: 95%;
	margin-left: auto;
	margin: 20px auto;
}
.info_box p{
	font-size: 16px;
}	
}
info_box p br{
display: block; 
}
main.top {
    /*コンテンツ*/ }
/*トップ動画*/

main.top #index_top video {
 position: absolute;
	width: 100%;
 top: 50%;
left: 50%;
 min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
transform: translate(-50%, -50%);
object-fit: cover;
z-index: 1; 
box-sizing: border-box; /* これを追記 */

}

main.top #index_top {
  width: 100%;
  height: 100vh;
	position: relative;
	overflow: hidden;
	margin-top: -10px;
}
/*
main.top .mv {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      background: #0074be; }

main.top .mv video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 1; }*/

main.top .mv-content {
      position: relative;
      width: 100%;
      text-align: center;
      z-index: 3; }

main.top .mv-content .inner {
        position: relative;
        height: 100dvh;
}

main.top .mv-content .inner h1 {
          position: absolute;
          bottom: -4px; }

main.top .mv-content .inner h1 img {
            width: 100%;
            height: 248px;
            filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5)); }

main.top .mv-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      z-index: 2; }

/*トップ動画*/
@media only screen and (max-width: 1200px) {
/*211210追加タブレット*/
main.top #index_top video {
margin-top: 0px;/*5*/
 width: 100%;
height: 100%;
height: auto;
}

main.top #index_top {
  width: 100%;
  height:auto;
　margin-top: 0px;/*10px*/
}
}
@media only screen and (max-width: 828px) {
/*211210追加タブレット*/
main.top #index_top video {
margin-top: 0px;/*5*/
 width: 100%;
height: 100%;
height: auto;
}

main.top #index_top {
  width: 100%;
  height:450px;
　margin-top: 0px;/*10px*/
}

}
@media screen and (max-width:640px){
main.top #index_top video {
	margin-top: 0px;
	padding-top: 0px;
    width: 100%;
	height: auto;
}

main.top #index_top  {
	width: 100%;
	height: 200px;
	margin-top: 5px;
	}
}
/*light box*/
.light_box {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #fff;/*#eee*/
}

.light_box h2{
font-size: 36px;
  line-height: 1.6;
  margin-bottom: 10px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #DDD;
  font-weight: normal;
  letter-spacing: 1px;
  color: #111;
  text-align: center;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  padding-top: 30px;
  padding-right: 10px;
  padding-bottom: 15px;
  padding-left: 30px;
  clear: both;
}
/*contents*/
.contents {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #fff;/*#eee*/
}

.contents h2{
font-size: 36px;
  line-height: 1.6;
  margin-bottom: 10px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #DDD;
  font-weight: normal;
  letter-spacing: 1px;
  color: #111;
  text-align: center;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  padding-top: 30px;
  padding-right: 0px;/*10*/
  padding-bottom: 30px;
  padding-left: 0px;/*10*/
  clear: both;
	 box-sizing: border-box; /* これを追記 */
}

.contents h3 {
  font-size: 22px;
  line-height: 30px;
  background-color: #F6F6F6;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  position: relative;
  padding-top: 15px;
  padding-right: 10px;
  padding-bottom: 15px;
  padding-left: 44px;
  font-weight: normal;
  color: #111;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  clear: both;
  margin-top: 50px;
  margin-right: 25px;
  margin-bottom: 30px;
  margin-left: 0px;
}
.contents h3::after {
	display: block;
	width: 3px;
	height: 20px;
	position: absolute;
	top: 20px;
	left: 20px;
	background-color:#1F1F1F;/* #00A7E6;*/
	content: '';
}


.contents h3 span {
	font-size: 16px;
	color: #888;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
	padding-left: 15px;
}
.container {
  display: flex; /* 左右に並べる魔法のコード */
  gap: 20px; /* 左右の隙間（余白） */
	margin-left: 10px;
	
}

.left-box {
  width: 20%; /* 左側の幅 */
}

.right-box {
  width: 80%; /* 右側の幅 */
}
.right-box ul {
width: 95%;
margin-top: 20px;
	}

.right-box ul li{
	list-style-type: none;
	padding-bottom: 15px;
	padding-left: 5px;
	text-indent: -1em;
	line-height: 1.7em;
	}

.flex{
  display:flex;
}

main.page-list .mv {
position: relative;
padding-top: 100px;
border: none;
}
	

main.page-list .mv .mv-content {
top: 50%;
left: 2px;
width: 100%;
text-align: center;
position: absolute;
}
main.page-list .mv .mv-content h1 {
font-size: 32px;	  
}
main.page-list .mv video {
width: 100%;
height: 100%;
border: none;
outline: none;
}

.image-container{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  padding: 10px;
  columns: 4;
}
.image-container img:hover {
  transform: scale(1.04);
  box-shadow: 2px 2px 6px #555;
}
.image-container .img-boder{
  border: 1px solid #999;
}

.contents-image{
width: 1200px;
padding-top: 30px;
padding-bottom: 30px;
}
/*
テーブル
-------------------------------------------*/

table {
	border-collapse: collapse;
}
table td,th{
border-collapse: collapse;
}

.contents table.table_01{
	width: 98%;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
}
.contents table.table_01 th,
.contents table.table_01 td {
	padding: 30px;
	font-size: 16px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E3E3E3;
}
.contents table.table_01 th {
background-color: #F9F9F9;
color: #00365E;
letter-spacing: 2px;
text-align: left;
}
.contents table.table_02{
width: 90%;
margin-top: 20px;
}
.contents table.table_02 th{
white-space: nowrap;
	display:inline-block;
	font-weight: normal;
	font-size: 18px;
	padding-bottom: 20px;
	}

.contents table.table_02 td{
font-weight: normal;
padding-left: 20px;
padding-bottom: 20px;
font-size: 18px;
	}

.contents table.table_03{
width: 80%;
margin-bottom: 30px;
	margin-left: 10px;
border: 1px solid #666;
	border-collapse: collapse;
}

.contents table.table_03 td{
font-weight: normal;
padding-left: 15px;
padding-bottom: 10px;
padding-top: 10px;
font-size: 18px;
border-bottom:1px solid #666;
border-right: 1px solid #666;
border-top: 1px solid #666;
border-collapse: collapse;
	}

.contents table.table_03 th{
font-weight: normal;
padding-left: 15px;
padding-bottom: 10px;
padding-top: 10px;
font-size: 18px;
border-top: 1px solid #666;
border-left: 1px solid #666;
border-bottom:1px solid #666;
border-right: 1px solid #666;
text-align: left;
border-collapse: collapse;
	}
/*テーブルここまで*/

.contents .colum{
max-width: 1200px;
margin: 0 auto;
padding: 50px 0 0 0;
width:auto;
height: auto;
overflow: hidden;
} 

.contents .colum p{
	font-size: 16px;
	line-height: 1.8em;
	margin-bottom: 10px;
	margin-right: 30px;
	margin-left: 30px;
	padding-top: 0px;
}
.contents .col_3{
    width: 100%;/*100%*/
    display: flex;
    flex-wrap: wrap;
	margin: 0 auto;
}
.contents .col_3 > *{
    width: calc( 30% - 8px ) ;
    margin-right: 16px;
    margin-bottom: 0px;
}
.contents .col_3 > *:nth-child(3n){
    margin-right: auto;
}

.contents .col_3 > * > *{
    height: auto;/*120*/
    position: relative;
    overflow: hidden
}

.contents .col_3 a.btn_01 {
 display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  position: relative;
  background:#666;
  box-sizing: border-box;
  padding: 0 20px 0 20px;
  color: #FFF;
  font-size: 16px;
  letter-spacing:0.1em;
  line-height: 1.5;
  text-align:center;
  text-decoration: none;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	font-weight: normal;
}

.contents .col_3 a.btn_02:hover {
	text-decoration: underline;
	background-color: #EEE;
}

.contents .col_3 a.btn_02 {
 display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  position: relative;
  background:#FFF;
  box-sizing: border-box;
  padding: 0 20px 0 20px;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align:center;
  text-decoration: none;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	font-weight: normal;
	border: 1px solid #333;
}

.contents .subtitle{
	margin-bottom: 20px;
	margin-top: 30px;
	font-size: 20px;
	line-height: 1.7em;
	padding-left: 10px;
	color: #1D1B2C;
	font-weight: 700;
}
.contents ul {
width: 95%;
margin-top: 20px;
	}

.contents ul li{
	list-style-type: none;
	padding-bottom: 5px;
	padding-left: 3em;
	text-indent: -1em;
	line-height: 1.7em;
	}
.contents ol {
width: 95%;
margin-top: 20px;
	}

.contents ol li{
	list-style-type: none;
	padding-bottom: 5px;
	padding-left: 1em;
	line-height: 1.7em;
	}
.contents .form_area{
	width: 1000px;
	margin: 0 auto;
	padding: 0px;
}
@media (max-width: 800px) {
  main {
    width: 100%;
  }

.image-container {
 grid-template-columns: 1fr 1fr 1fr;
  }
.light_box{
	width: 100%;
}
}

@media (max-width: 750px) {
 main {
    width: 100%;
  }
.light_box{
	width: 100%;
}
.image-container {
 grid-template-columns: 1fr 1fr 1fr;
  }	
	
.contents .form_area{
	width: 98%;
	margin: 0 auto;
	padding: 0px;
}
}

@media (max-width: 500px) {
.image-container{
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 1200px) {
      main.top .mv {
        min-height: 100vh; }
      main.top .mv-content .inner h1 {
        width: 100%; }
        main.top .mv-content .inner h1 img {
          width: 95%;
          height: auto; } }

@media (max-width: 560px) {
      main.top .mv-content .inner h1 img {
        width: 90%; } }
main.top section.main-contents, main.top section.sub-contents {padding: 48px 0; 
}

main.top section.main-contents .head {
      text-align: center;
      margin-bottom: 24px; }
main.top section.main-contents .head span {
        display: block;
        font-size: 20px;
        font-weight: bold;
        color: #0074be; }
main.top section.main-contents .head h2 {
        color: #0074be;
        font-size: 54px;
        font-weight: 700;
        font-family: 'LINESeedJP', 'Noto Sans JP', sans-serif; }

main.top section.main-contents .head h3 {
        color: #595757;
        font-size: 30px;
        font-weight: bold;
margin-bottom: 20px;}

main.top section.main-contents .head h4 {
font-size: 25px;
margin-bottom: 50px;
line-height: 2em;
}

main.top section.main-contents .head p {
color: #595757;
font-size: 18px;
line-height: 1.8em;
font-weight: 400;
padding-bottom: 30px;
text-align: left;
margin: 0 120px;
}

img.head {
margin-bottom: 30px;
	padding-bottom: 30px;
}

@media (max-width: 768px) {
main.top section.main-contents{padding: 10px 0; 
}
main.top section.main-contents .head span {
        font-size: 16px; }
main.top section.main-contents .head h2 {
        font-size: 36px; }
main.top section.main-contents .head h3 {
        font-size: 22px; }
main.top section.main-contents .head h4 {
        font-size: 20px;
	    margin-bottom: 50px;
	    padding-top: 30px;
	    line-height: 1.7em;
	}
main.top section.main-contents .head p {
        font-size: 16px;
	text-align: left;
	line-height: 1.5em;
	padding-top: 0px;
	padding-bottom: 10px;
	margin: 0px auto;
	width: 95%;
	} 
img.head {
margin-bottom: 0px;
	padding-bottom: 0px;
}
main.page-list #sub_top {
height:auto;
}
#sub_top .sub-content {
left:0%;
margin: -180px auto 0 auto;
 width: 100%;/*60%*/
 background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
 opacity: 1; /* 0.0(完全透明) 〜 1.0(不透明) */
}	
#sub_top .sub-content-left {
 left:0%;
margin: -180px auto 0 auto;
 width: 100%;/*60%*/
 background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
 opacity: 1; /* 0.0(完全透明) 〜 1.0(不透明) */
}
#sub_top .sub-content-right{
left:-5%;
margin: -180px auto 0 auto;
 width: 100%;/*60%*/
 background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
 opacity: 1; /* 0.0(完全透明) 〜 1.0(不透明) */

}
#sub_top h1 {
 font-size: 30px;
line-height: 1.2em;
letter-spacing: -0.03em;
}
#sub_top h1 span {
color: #0074be;
font-size: 14px;
}

/*
テーブル
-------------------------------------------*/

.contents table.table_01 th,
.contents table.table_01 td,
.contents table th,
.contents table td {
	display: block;
	padding: 20px;
}
.contents table.table_02{
width: 100%;
margin-top: 0px;
}
.contents table.table_02 th{
padding-bottom: 0px;
	}

.contents table.table_02 td{
padding-bottom: 0px;
	}
	
.contents table.table_03{
width: 95%;
border-collapse: collapse;
}

.contents table.table_03 td{
border-right: none;
border-left: none;
	}

.contents table.table_03 td:last-child{
 border-bottom: none;
  }
.contents table.table_03 tr:first-child th{
 border-top: none;
  }
.contents table.table_03 th{
border-bottom:none;
border-right: none;
border-left: none;
border-top: 1px solid #666;
background-color: #EEEEEE;
	}
 .container {
flex-direction: column; /* 縦並びに変更 */
  }

.left-box, .right-box {
    width: 100%; /* 横幅を100%に広げる */
  }
.left-box img{
width: auto;
margin: 0 auto ;
justify-content: center; /* 横方向の中央揃え */
	}
	
.img_center{
margin: 0 auto;
text-align: center;
}
	
img.img_center{
width: 65%;
}

.colum{
width:100%;
margin: 0px 0px 10px 0px;
} 

.contents .colum{
	font-size: 15px;/*14**/
	line-height: 1.8em;
	margin-bottom:0px;
	margin-right: 10px;
	margin-left: 14px;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.contents .col_3 {
        width: 100%;
        margin: 0 auto;
    }
.contents .col_3 > *{
    width: calc( 100% - 5px ) ;
    margin-right: 0px;
	padding: 0px;
}
.contents .col_3 a.btn_01 {
letter-spacing:0em;
padding: 0 10px 0 10px;
}

.contents .col_3 a.btn_02 {
  padding: 0 10px 0 10px;
  letter-spacing: 0em;
}
.contents .subtitle{
text-indent: -1em;
	padding-left: 1em;
}
.contents ul{
width: 100%;	
	}
.contents ul li{
text-indent: -1em;
	padding-left: 2em;	
	}	
	
main.page-list .mv video {
width: 100%;
height: 250px;
aspect-ratio: 16 / 9; /* 16:9を維持 */
object-fit: cover;   
}	
}
/*ここまで*/

main.top section.sub-contents .head {
      text-align: center;
      margin-bottom: 8px; }
main.top section.sub-contents .head h2 {
        color: #595757;
        font-size: 34px;
        font-family: 'LINESeedJP', 'Noto Sans JP', sans-serif; }
main.top section .img-box {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 16px;
      margin: 24px 0; }
      main.top section .img-box img {
        width: 100%;
        height: 275px;
        object-fit: cover; }
    main.top section .btn {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 96px;
      height: 32px;
      background: #0075f2;
      color: #fff;
      border-radius: 93px;
      font-size: 13px;
      font-weight: 500;
      transition: all 0.3s ease;
      margin: 24px auto 0; }
      main.top section .btn:hover {
        background: #0075f2;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); }
    main.top section.products .products-slider {
      position: relative;
      overflow: hidden; }
    main.top section.products .slider-container {
      width: 100%; }
    main.top section.products .slider-wrapper {
      display: flex;
      gap: 30px;
      transition: transform 0.8s ease;
      padding: 0 calc((100% - 700px) / 2); }
    main.top section.products .slide {
      flex: 0 0 100%;
      height: auto;
      overflow: hidden; }
      main.top section.products .slide img {
        width: 100%;
        height: auto;
        object-fit: cover; }
    main.top section #pinterest-embed {
      min-height: 382px;
      width: 100% !important; }
      main.top section #pinterest-embed > span {
        width: 100% !important;
        max-width: inherit; }
    main.top section.topics {
      padding-bottom: 0; }
      main.top section.topics .head {
        border-bottom: #000 1px solid; }
      main.top section.topics .topics-box ul li {
        border-bottom: 1px solid #000;
        padding: 24px 0; }
        main.top section.topics .topics-box ul li:last-child {
          border: 0; }
        main.top section.topics .topics-box ul li a {
          display: flex;
          gap: 48px;
          align-items: flex-start;
          transition: opacity 0.3s ease; }
          main.top section.topics .topics-box ul li a:hover {
            opacity: 0.5; }
          main.top section.topics .topics-box ul li a time {
            font-size: 20px;
            font-weight: 500;
            white-space: nowrap;
            letter-spacing: 1.2px; }
          main.top section.topics .topics-box ul li a p {
            font-size: 20px;
            font-weight: 500; }

@media (max-width: 1080px) {
        main.top section.topics .topics-box ul li a {
          flex-wrap: wrap;
          gap: 0; }
          main.top section.topics .topics-box ul li a time {
            width: 100%;
            font-size: 18px; }
          main.top section.topics .topics-box ul li a p {
            width: 100%;
            font-size: 18px; } }

main.page-list .mv {
    position: relative;
    padding-top: 100px; 
}

main.page-list .mv .mv-content {
      position: absolute;
      top: 50%;
      left: 20%;
      width: 60%;
      text-align: center;
      padding: 8px 0;
      background: linear-gradient(to right, rgba(255, 255, 255, 0), white, rgba(255, 255, 255, 0)); }

      main.page-list .mv .mv-content span {
        color: #0074be;
        font-size: 16px;
        font-weight: bold;
        font-family: 'LINESeedJP', 'Noto Sans JP', sans-serif;
        letter-spacing: 2px;
        margin-bottom: 4px; }
main.page-list .mv .mv-content h1 {
        color: #595757;
        font-size: 42px; }
main.page-list section {
    padding: 32px 0;
    margin-bottom: 40px; }

main.page-list section.privacy {
    padding: 10px 0;
    margin-bottom: 20px; }

main.page-list section:nth-child(even) .inner {
      flex-direction: row-reverse; }

main.page-list section .inner {
      display: flex;
      justify-content: space-between; }

main.page-list section .head {
      width: calc(100% - 610px); }

main.page-list section .head span {
        color: #0074be;
        font-size: 20px;
        font-weight: bold; }

main.page-list section .head h2 {
        color: #0074be;
        font-size: 35px;
        font-weight: 700;
        font-family: 'LINESeedJP', 'Noto Sans JP', sans-serif;
        margin-bottom: 32px;
        line-height: 1.2; }

main.page-list section .head ul {
        margin-bottom: 40px; }

main.page-list section .head ul li {
          position: relative;
          color: #595757;
          font-size: 21px;
          font-weight: 500;
          margin: 16px 0;
          padding-left: 24px; }

 main.page-list section .head ul li::before {
            position: absolute;
            content: '▷';
            width: 32px;
            height: 32px;
            top: 0;
            left: 0;
            color: #595757;
            font-size: 21px;
            font-weight: 500; }

main.page-list section .head a {
        display: block;
        color: #0074be;
        font-size: 15px;
        font-weight: bold;
        text-align: right; }

main.page-list section .head a:hover {
          opacity: 0.5; }

main.page-list section.about {
    padding: 48px 0 70px 0;
    margin: 0 auto; }

main.page-list section.about .inner {
      display: block; }

/*第二階層*/

main.second-layer .mv {
  position: relative;
  padding-top: 100px;
border: none;
}

main.second-layer .mv video {
width: 100%;
height: 100%;
border: none;
outline: none;
}

main.second-layer .mv .mv-content {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  text-align: center;
  padding: 8px 0;
 background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
 opacity: 0.8; /* 0.0(完全透明) 〜 1.0(不透明) */
}

main.second-layer .mv .mv-content span {
  color: #0074be;
  font-size: 16px;
  font-weight: bold;
  font-family: "LINESeedJP", "Noto Sans JP", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
main.second-layer .mv .mv-content h1 {
  color: #595757;
  font-size: 42px;
}
/*ここまで*/

@media screen and (max-width: 640px) {
    .br-sp { display:none; }
}

/*---------ここからフッター-----------*/

footer {
	width:100%;
	margin-bottom:12px;
	margin-top:10px;
	text-align: center;
}

.line {
	width:100%;
	margin-top:3px;
	margin-bottom:5px;
	 border-bottom: 1px solid #999;
	background-repeat: no-repeat;
}

footer .gray-bg {
  background: #f7f6f6; }

.address{
	margin-bottom:10px;
	margin-top:5px;
	font-size:14px;
	line-height: 1.7em;
	color: #333;
	text-align:center;
}



.yms_rogo{
	margin:20px auto;
	width:64px;
	text-align:center;
}
.yms_rogo img{
width: 100%;
}
/* ハックでIE6,7のみに適用 */
.ul#nav li {
    display: inline;
    zoom: 1;
}

#nav{
	margin: 0 auto;
	width:980px;
	height:28px;
    padding-top:20px;
	padding-bottom:20px;
	text-align:center;	
}

#nav ul{
font-size:0;
list-style:none;
margin: 0;
padding: 0;	
}

#nav li{
	padding-right:12px;
	font-size:14px;
	line-height:2em;
	color:#1A1311;
	display:inline-block;
}

#nav li a:link,a:visited{
	color:#1A1311;
}


#nav li a:hover {
	color:#333;
	text-decoration:underline;
	display:block;
}

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
}
#page-top a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: 100px;
    padding: 30px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
#page-top a:hover {
    text-decoration: none;
    background: #999;
}
	

/*--------------*/
@media (max-width: 1200px) {
main.page-list section .head {
width: calc(50% - 40px); }
main.page-list section .img-box {
width: 50%; } 
}

@media (max-width: 768px) {
main.page-list .mv .mv-content {
top: 50%;
left: 0;
width: 100%; }
	
main.page-list .mv .mv-content h1 {
font-size: 32px; }
	
main.page-list section {
padding: 32px 0;/*32 0*/
margin-bottom: 40px;/*40*/ }
	
main.page-list section:nth-child(even) .inner {
flex-direction: inherit; }
	
main.page-list section .inner {
flex-wrap: wrap; }
	
main.page-list section .privacy {
width: 100%;
margin-top: 30px;
margin-bottom: 30px; }
	
main.page-list section .head {
width: 100%;
margin-bottom: 48px; }
	
main.page-list section .img-box {
width: 100%; }
	
main.page-list section .img-box img {
width: 100%;
height: auto; }
	
main.page-list section.about {
      padding: 24px 0; }
	
main section.about h2 {
  font-size: 24px;
  line-height: 1.5;
}	
main.privacy section {
padding: 0px 0;
margin-bottom: 0px; }

.contents-image{
width: 100%;
padding-top: 30px;
padding-bottom: 30px;
}	
#nav{
display: none;	
}
footer .gray-bg {
padding-top: 20px;
padding-bottom: 20px;
}
}
  @media (max-width: 480px) {
    main.page-list section .head h2 br {
      display: none; } }


/*ここからページネーション*/
.pager  ul.pagination {
  text-align: center;
  margin: 20px 0 80px 0;
  padding: 0;
}

.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background:#FFF;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
	border: 1px solid #555;
}

.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #555;
  text-decoration: none;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
  color: #FFF;
  background: #555;
}

@media only screen and (max-width: 767px){
	
.pager  ul.pagination {
  margin: 20px 0 30px 0;
}
  .pager .pagination li{
    display: none;
  }

  .pager .pagination li.pre,
  .pager .pagination li.next{
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a{
    width: 100%;
    text-align: center;
  }

  .pager .pagination li.pre span::after{
    content: "前へ";
  }

  .pager .pagination li.next span::before{
    content: "次へ";
  }

}
