@charset"utf-8";

/* ここから */
*{
    margin: 0;
    padding: 0;
}

img{
    vertical-align: bottom;
}

a{
    /* display: block; */
    text-decoration: none !important;
    color: black !important;
}

ul{
    list-style: none;
}

svg {
    width: 15vw;
    height: 15vh;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.anime {
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    position: relative;
}
     
.anime img {
    display: block;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
     -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

path {
    fill: none;
    stroke: #E5BE51; /*線の色を指定する*/
    stroke-dasharray: 2000;/*線の間隔を指定する*/
    stroke-dashoffset: 0;/*線の位置を指定する(IEは効かない属性)*/
    stroke-width: 1;/*線の太さを指定する*/
    -webkit-animation: hello 1s ease-in forwards;
    animation: hello 1s ease-in forwards;
    }
    @-webkit-keyframes hello {
    0% {
    stroke-dashoffset: 1500;
    fill:transparent; /*透過*/
    }
    50% {
    fill:transparent; /*透過*/
    }
    100% {
    stroke-dashoffset: 0;
    fill:#E5BE51;
    }
    }
    @keyframes hello {
    0% {
    stroke-dashoffset: 1500;
    fill:transparent; /*透過*/
    }
    50% {
    fill:transparent; /*透過*/
    }
    100% {
    stroke-dashoffset: 0;
    fill:#E5BE51;
    }
}

/* ここまで共通 */

/* ここから */

body{
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    margin: 0 auto;
    width: 100%;
    height: auto;
    overflow-x: hidden;
}

div#luxy {
    background-color: rgb(243, 243, 243);
    display: grid;
    grid-template-rows: auto 300px auto auto;
    grid-template-columns: 2fr 3fr 1fr;
    grid-template-areas:
    "hero hero hero"
    "... ... ..."
    "article article article"
    "footer footer footer";
}

/* ここまでbody */

/* ここから */

.navToggle {
    grid-column: 3;
    position: relative;
    display: block;
    width: 42px;
    height: 51px;
    cursor: pointer;
    text-align: center;
    z-index: 50;
    font-family: "Yu Gothic","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","ＭＳ ゴシック",sans-serif;
}

.navToggle.dummy {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
}

.navToggle.active {
    background-color: #002e00;
    transition: .35s;
}
 
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #002e00;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
 
.navToggle span:nth-child(1) {
    top: 9px;
}
 
.navToggle span:nth-child(2) {
    top: 18px;
}
 
.navToggle span:nth-child(3) {
    top: 27px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #002e00;
    font-size: 9px;
    font-weight: bold;
    top: 30px;
}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navToggle.active span:nth-child(1), .navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
    border-bottom: solid 3px #fff;
}

.navToggle.active span {
    color: #fff;
}

/* メニュー */
nav.humburger {
    position: fixed;
    text-align: center;
    width: 100vw;
    height: 100vh;
    transition: .7s;
    background: rgba(255, 255, 255, 0);
    transform: scale3d(.95,.95,1);
}

nav.humburger.dummy {
    display: none;
}

/* メニューを開いた時 */
nav.humburger.open-menu {
    width: 100%;
    z-index: 1;
    transform: scaleX(1);
    background: rgba(255, 255, 255, 0.98);
}

nav.humburger ul {
    display: flex;
    justify-content: space-between;
    margin: 0 20%;
    font-size: 20px;
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    font-weight: 500;
    color: #002e00;
    position: absolute;
    top: 50%;
    margin-top: -.5em;
    width: 60%;
    display: none;
}

nav.humburger.open-menu ul {
    display: flex;
}

a.menuScroll1, a.menuScroll2, a.menuScroll3, a.menuScroll4 {
    height: 100%;
    display: block;
    text-align: center;
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #002e00 !important;
}

a.menuScroll1::after, a.menuScroll2::after, a.menuScroll3::after, a.menuScroll4::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #777;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

a.menuScroll1:hover::after, a.menuScroll2:hover::after, a.menuScroll3:hover::after, a.menuScroll4:hover::after {
    transform: scale(1, 1);
}

/* ここまでハンバーガーリスト */

/* ここから */

header{
    display: grid;
    grid-template-columns: 1fr 30px 42px 20px;
    background-color: transparent;
    height: auto !important;
    float: none;
    grid-column: 2;
    grid-row: 2;
}

nav.linkArea {
    grid-column: 1;
}

ul.menuArea{
    font-size: 15px;
    margin: 0 !important;
    display:flex;
    letter-spacing: 1px;
    float: right;
}

li.menu1, li.menu2, li.menu3, li.menu4 {
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    font-weight: 500;
    margin-left: 30px;
}

li.menu1 {
    margin: 0 !important;
}

a.linkMenu1, a.linkMenu2, a.linkMenu3, a.linkMenu4{
    height: 100%;
    display: block;
    text-align: center;
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #002e00 !important;
}

a.linkMenu1::after, a.linkMenu2::after, a.linkMenu3::after, a.linkMenu4::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #777;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

a.linkMenu1:hover::after, a.linkMenu2:hover::after, a.linkMenu3:hover::after, a.linkMenu4:hover::after {
    transform: scale(1, 1);
}

span.jaMenu1, span.jaMenu2, span.jaMenu3, span.jaMenu4{
    display: block;
    font-family: 'Open Sans',sans-serif;
    font-family: 'Peddana',serif;
    font-size: 12px;
    color: #999;
}

h1#siteTitle {
    width:100%;
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    font-weight: 500;
    font-size: 75px;
    letter-spacing: 2px;
    line-height: 1.2;
    border-bottom: #999 1px solid;
    letter-spacing: 8px;
    padding-bottom: 10px;
}

p.nameEng{
    font-size: 16px;
    font-family: 'Adamina',serif;
    letter-spacing: 10px;
}

span.txtGreen1, span.txtGreen2 {
    color: #002e00;
}

span.txtGray1, span.txtGray2 {
    color: #777;
}

a.scroll {
    padding-top: 40px;
    position: relative;
    position: absolute;
    right: 20px;
    bottom: 0;
    color: #777 !important;
}

a.scroll span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1px solid #777;
    border-bottom: 1px solid #777;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb {
    0% {
      -webkit-transform: rotate(-45deg) translate(0, 0);
    }
    20% {
      -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    }
    40% {
      -webkit-transform: rotate(-45deg) translate(0, 0);
    }
}
@keyframes sdb {
    0% {
      transform: rotate(-45deg) translate(0, 0);
    }
    20% {
      transform: rotate(-45deg) translate(-10px, 10px);
    }
    40% {
      transform: rotate(-45deg) translate(0, 0);
    }
}

/* ここまでheader */

/* ここから */

div#heroImageArea{
    grid-area: hero;
    position: relative;
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: 20px 1fr 3fr 1fr 20px;
    width: 100%;
    height: 100%;
    background-image: url("../images/hero.jpg");
    background-position: center;
    background-position-x: unset;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
}

div.title {
    grid-row: 3;
    grid-column: 2;
    margin: auto 0;
    padding-right: 10px;
}

/* ここまでtop画像 */

/* ここから */

a.scrollTextRight, a.scrollTextRight2 {
    transform: rotate(90deg);
    position: absolute;
    right: 5px;
    bottom: -18px;
    z-index: 60;
}

a.scrollRight {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2.5em;
    height: 1em;
    cursor: pointer;
    text-decoration: none;
    color: #777;
}

a.scrollTextLeft {
    transform: rotate(90deg);
    position: absolute;
    left: 5px;
    bottom: -18px;
    z-index: 60;
}

a.scrollLeft {
    position: absolute;
    bottom: 0;
    width: 2.5em;
    height: 1em;
    cursor: pointer;
    text-decoration: none;
    color: #777;
}
  
.arrowRight {
    position: absolute;
    animation: 2s arrow-animation infinite ease-in-out;
    width: 0;
    height: 5em;
    border: .5px solid #777;
}

.arrowRight::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: -2.5px;
    width: 1px;
    height: 10px;
    border-top: 10px solid #777;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
}

.arrowLeft {
    position: absolute;
    animation: 2s arrow-animation infinite ease-in-out;
    width: 0;
    height: 5em;
    border: .5px solid #777;
    right: 0;
}

.arrowLeft::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: -2.5px;
    width: 1px;
    height: 10px;
    border-top: 10px solid #777;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
}
  
@keyframes arrow-animation {
    0% {
      height: 1em;
    }
    66% {
      height: 5em;
    }
}
  
.next-section {
    padding: 3em 1.5em;
    background-color: #002e00;
}

.next-section p {
    padding: 1.5em;
}

.next-section h2 {
    margin-bottom: 2em;
    text-align: center;
    font-size: 24px;
    letter-spacing: .1em;
}

.next-section h2::after {
    content: '';
    display: block;
    width: 10%;
    height: 2px;
    margin-top: .5em;
    margin-left: 45%;
    background: #F5F5F5;
}

/* ここまでスクロールボタン */

/* ここから */

.moreBtnRight {
    width: 130px;
    height: 40px;
    line-height: 42px;
    padding: 0;
    border: none;
    position: absolute;
    background-color: transparent;
    right: 0%;
    bottom: 0%;
    z-index: 100;
    color: #002e00;
    outline:0;
}
  
.moreBtnRight span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-family: 'Open Sans',sans-serif;
}

.moreBtnRight:before,
.moreBtnRight:after {
    position: absolute;
    content: "";
    height: 0%;
    width: 1px;
    background: #002e00
}

.moreBtnRight:before {
    left: 0;
    top: 0;
    transition: all 0.1s ease;
}

.moreBtnRight:after {
    right: 0;
    bottom: 0;
    transition: all 0.1s 0.2s ease;
}

.moreBtnRight:hover:before {
    transition: all 0.1s 0.2s ease;
    height: 100%;
}

.moreBtnRight:hover:after {
    transition: all 0.1s ease;
    height: 100%;
}

.moreBtnRight span:before,
.moreBtnRight span:after {
    position: absolute;
    content: "";
    background: #002e00;
}

.moreBtnRight span:before {
    right: 0;
    top: 0;
    width: 0%;
    height: 1px;
    transition: all 0.1s 0.1s ease;
}

.moreBtnRight span:after {
    left: 0;
    bottom: 0;
    height: 1px;
}

.moreBtnRight span:hover:before {
    width: 100%;
}

.moreBtnRight span:hover::after {
    width: 100%;
}

.moreBtnLeft {
    width: 130px;
    height: 40px;
    line-height: 42px;
    padding: 0;
    border: none;
    position: absolute;
    background-color: transparent;
    left: 0%;
    bottom: 0%;
    color: #002e00;
    z-index: 100;
    outline:0;
}
  
.moreBtnLeft span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-family: 'Open Sans',sans-serif;
}

.moreBtnLeft:before,
.moreBtnLeft:after {
    position: absolute;
    content: "";
    height: 0%;
    width: 1px;
    background: #002e00;
}

.moreBtnLeft:before {
    left: 0;
    top: 0;
    transition: all 0.1s ease;
}

.moreBtnLeft:after {
    right: 0;
    bottom: 0;
    transition: all 0.1s 0.2s ease;
}

.moreBtnLeft:hover:before {
    transition: all 0.1s 0.2s ease;
    height: 100%;
}

.moreBtnLeft:hover:after {
    transition: all 0.1s ease;
    height: 100%;
}

.moreBtnLeft span:before,
.moreBtnLeft span:after {
    position: absolute;
    content: "";
    background: #002e00;
}

.moreBtnLeft span:before {
    right: 0;
    top: 0;
    width: 0%;
    height: 1px;
    transition: all 0.1s 0.1s ease;
}

.moreBtnLeft span:after {
    left: 0;
    bottom: 0;
    height: 1px;
    transition: all 0.1s 0.1s ease;
}

.moreBtnLeft span:hover:before {
    width: 100%;
}

.moreBtnLeft span:hover::after {
    width: 100%;
}

.buttonText {
    color: #002e00;
}

.moreBtnRight.dummy {
    display: none;
}

/* ここまでmoreボタン */

/* ここから */
article#article{
    grid-area: article;
}

article.headerArea{
    text-align: center;
    position: relative;
}

img.logo2{
    width: 20%;
}

div#office, div#handing, div#reward, div#contract {
    display: grid;
    grid-template-rows: 150px 150px 150px 150px 150px;
    grid-template-columns: repeat(12, 1fr);
    /* margin-bottom: 300px !important; */
    position: relative;
}

div.imgContent1{
    grid-column: 2/6;
    grid-row: 1/5;
    background-image: url("../images/lady-justice.jpg");
    z-index: 2;
    opacity : 0;
	transform : translate(-100px, 0);
	transition : all 750ms;
}

div.imgContent1.scroll {
	opacity : 1;
	transform : translate(0, 0);
}

div.imgContentBack1 {
    grid-column: 3/9;
    grid-row: 2/6;
    background-image: url("../images/lady-justice.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode:lighten;
    opacity : 0;
	transform : translate(0, 50px);
	transition : all 750ms;
}

div.imgContentBack1.scroll {
	opacity : 1;
	transform : translate(0, 0);
}

p.engTxtContent1 {
    grid-column: 6/11;
    grid-row: 5;
    font-family: 'Adamina',serif;
    font-size: 100px;
    color: rgb(243, 243, 243);;
    letter-spacing: 5px;
    z-index: 5;
}

span.txtContentSpan1, span.txtContentSpan2, span.txtContentSpan3, span.txtContentSpan4 {
    font-weight: 500;
    font-size: 150px;
}

div.contentMainArea1 {
    grid-column: 9/12;
    grid-row: 3/6;
    padding-left: 20px;
    opacity : 0;
	transform : translate(100px, 0px);
    transition : all 750ms;
    position: relative;
}

div.contentMainArea1.scroll {
	opacity : 1;
    transform : translate(0, 0);
    z-index: 300;
}

h2.txtContentTitle1{
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    font-weight: 500;
    font-size: 35px;
    color: #002e00;
    letter-spacing: 4px;
    margin-bottom: 20px;
    border-bottom: solid 1px #777;
}

.txtContentTitle1Eng {
    font-size: 14px;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 2px;
    color: #777;
    display: block;
    margin-bottom: 20px;
}

table.txtContent1 {
    font-size: 16px;
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    color: rgb(97, 97, 97);
    line-height: 1.8;
    width: 100%;
}

td.col1 {
    text-align: right;
}

div.law {
    height: 400px;
    position: relative;
}

p.txtLaw {
    font-family: 'Rufina', serif;
    font-size: 270px;
    color: rgb(233, 233, 233);
    position: absolute;
    transform: rotate(90deg);
    left: -180px;
    z-index: -20;
}

div.imgContent2{
    grid-column: 8/12;
    grid-row: 1/5;
    background-image: url("../images/law.jpg");
    z-index: 2;
    opacity : 0;
	transform : translate(100px, 0);
	transition : all 750ms;
}

div.imgContent2.scroll {
	opacity : 1;
	transform : translate(0, 0);
}

div.imgContentBack2 {
    grid-column: 5/11;
    grid-row: 2/6;
    background-image: url("../images/law.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode:lighten;
    opacity : 0;
	transform : translate(0, 50px);
	transition : all 750ms;
}

div.imgContentBack2.scroll {
	opacity : 1;
	transform : translate(0, 0);
}

p.engTxtContent2 {
    grid-column: 5/13;
    grid-row: 5;
    font-family: 'Adamina',serif;
    font-size: 100px;
    color: rgb(243, 243, 243);;
    letter-spacing: 5px;
    z-index: 5;
}

div.contentMainArea2 {
    grid-column: 2/5;
    grid-row: 3/6;
    padding-right: 20px;
    opacity : 0;
	transform : translate(-100px, 0px);
    transition : all 1100ms;
    position: relative;
}

div.contentMainArea2.scroll {
	opacity : 1;
    transform : translate(0, 0);
    z-index: 300;
}

h2.txtContentTitle2{
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    font-weight: 500;
    font-size: 35px;
    color: #002e00;
    letter-spacing: 4px;
    margin-bottom: 20px;
    border-bottom: solid 1px #777;
    position: relative;
}

div.legal {
    height: 400px;
    position: relative;
}

p.txtLegal {
    font-family: 'Rufina',serif;
    font-size: 270px;
    color: rgb(233, 233, 233);
    position: absolute;
    transform: rotate(-90deg);
    z-index: -20;
    height: 0;
    right: -40px;
}

div.imgContent3{
    grid-column: 2/6;
    grid-row: 1/5;
    background-image: url("../images/money.jpg");
    z-index: 2;
    opacity : 0;
	transform : translate(-100px, 0);
    transition : all 750ms;
    background-size: cover;
    background-position: center;
}

div.imgContent3.scroll {
	opacity : 1;
	transform : translate(0, 0);
}

div.imgContentBack3 {
    grid-column: 3/9;
    grid-row: 2/6;
    background-image: url("../images/money.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode:lighten;
    opacity : 0;
	transform : translate(0, 50px);
	transition : all 750;
}

div.imgContentBack3.scroll {
	opacity : 1;
	transform : translate(0, 0);
}

p.engTxtContent3 {
    grid-column: 6/11;
    grid-row: 5;
    font-family: 'Adamina',serif;
    font-size: 100px;
    color: rgb(243, 243, 243);;
    letter-spacing: 5px;
    z-index: 5;
}

div.contentMainArea3 {
    grid-column: 9/12;
    grid-row: 3/6;
    padding-left: 20px;
    opacity : 0;
	transform : translate(100px, 0px);
    transition : all 750ms;
    position: relative;
}

div.contentMainArea3.scroll {
	opacity : 1;
    transform : translate(0, 0);
    z-index: 300;
}

h2.txtContentTitle3 {
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    font-weight: 500;
    font-size: 35px;
    color: #002e00;
    letter-spacing: 4px;
    margin-bottom: 20px;
    border-bottom: solid 1px #777;
}

div.justice {
    height: 400px;
    position: relative;
}

p.txtJustice {
    font-family: 'Rufina', serif;
    font-size: 270px;
    color: rgb(233, 233, 233);
    position: absolute;
    transform: rotate(90deg);
    z-index: -20;
    height: 0;
    left: -110px;
    bottom: 0;
}

div.imgContent4{
    grid-column: 8/12;
    grid-row: 1/5;
    background-image: url("../images/contact.jpg");
    z-index: 2;
    opacity : 0;
	transform : translate(100px, 0);
	transition : all 750ms;
}

div.imgContent4.scroll {
	opacity : 1;
	transform : translate(0, 0);
}

div.imgContentBack4 {
    grid-column: 5/11;
    grid-row: 2/6;
    background-image: url("../images/contact.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode:lighten;
    opacity : 0;
	transform : translate(0, 50px);
	transition : all 750ms;
}

div.imgContentBack4.scroll {
	opacity : 1;
	transform : translate(0, 0);
}

p.engTxtContent4 {
    grid-column: 5/13;
    grid-row: 5;
    font-family: 'Adamina',serif;
    font-size: 100px;
    color: rgb(243, 243, 243);;
    letter-spacing: 5px;
    z-index: 5;
}

div.contentMainArea4 {
    grid-column: 2/5;
    grid-row: 3/6;
    padding-right: 20px;
    opacity : 0;
	transform : translate(-100px, 0px);
    transition : all 1100ms;
    position: relative;
}

div.contentMainArea4.scroll {
	opacity : 1;
    transform : translate(0, 0);
    z-index: 300;
}

h2.txtContentTitle4{
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    font-weight: 500;
    font-size: 35px;
    color: #002e00;
    letter-spacing: 4px;
    margin-bottom: 20px;
    border-bottom: solid 1px #777;
    position: relative;
}

div.advocacy {
    height: 400px;
    position: relative;
}

p.txtAdvocacy {
    font-family: 'Rufina', serif;
    font-size: 270px;
    color: rgb(233, 233, 233);
    position: absolute;
    transform: rotate(-90deg);
    z-index: -20;
    height: 0;
    right: -300px;
}

/* ここまでContentArea */

/* ここから */

footer {
    grid-area: footer;
    background-color: #002e00;
    padding: 40px;
    position: relative;
}

h2.footerTitle {
    text-align: center;
    color: white;
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 30px;
}

ul.footerArea{
    font-size: 14px;
    display:flex;
    justify-content:space-between;
    width: 50%;
    margin: 0 auto 30px auto;
}

li.footerMenu1, li.footerMenu2, li.footerMenu3, li.footerMenu4 {
    width:100%;
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    font-weight: 100;
}

a.footerLinkMenu1, a.footerLinkMenu2, a.footerLinkMenu3, a.footerLinkMenu4 {
    height: 100%;
    display: block;
    text-align: center;
    line-height: 160%;
    position: relative;
    color: #fff !important;
}

div.adress {
    width: 60%;
    margin: 0 auto 30px auto;
}

div.adress p {
    color: #fff;
}

ul.adressInfo {
    font-size: 18px;
    font-family: "游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho","Noto Serif JP",serif;
    color: #fff;
    display:flex;
    justify-content:space-between;
    margin-bottom: 30px;
}

p.copyWrite {
    color: white;
    font-family: 'Rufina',serif;
    font-size: 12px;
    text-align: center;
}

a.footerScroll {
    padding-top: 40px;
    position: relative;
    position: absolute;
    right: 40px;
    color: #002e00 !important;
    display: block;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    bottom: 40px;
    font-size: 14px;
}

ul.adressInfo a {
    color: #fff !important;
}

/* ここまでfooter */

/* ここから */

/* 1400px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 1450px) {
    div.title h1{
        font-size: 60px !important;
    }
}

/* 1200px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 1200px) {
    /* ここから */

    header {
        display: block !important;
        grid-column: 2;
        grid-row: 1;
    }

    header ul {
        display: none !important;
    }

    nav.humburger.open-menu {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav.humburger.open-menu ul{
        position: relative;
        top: auto;
        margin-top: 0;
        display: block;
    }

    nav.humburger.open-menu ul li{
        margin-bottom: 50px;
    }

    /* ここまで共通ヘッダー部 */

    /* ここから */

    .navToggle {
        display: none;
    }

    .navToggle.dummy {
        display: block;
        height: 79px;
        width: 80px;
    }

    .navToggle span {
        width: 60px;
        left: 10px;
    }
    
    .navToggle span:nth-child(1) {
        top: 15px;
    }
    
    .navToggle span:nth-child(2) {
        top: 30px;
    }
    
    .navToggle span:nth-child(3) {
        top: 45px;
    }
    
    .navToggle span:nth-child(4) {
        font-size: 14px;
        top: 55px;
    }

    /* 最初のspanをマイナス45度に */
    .navToggle.active span:nth-child(1) {
        top: 30px;
        left: 10px;
    }

    /* 2番目と3番目のspanを45度に */
    .navToggle.active span:nth-child(2),
    .navToggle.active span:nth-child(3) {
        top: 30px;
    }

    /* ここまでmenuボタン */

    /* ここから */

    div#heroImageArea {
        grid-template-columns: 1fr 80px;
        grid-template-rows: 79px 1fr 84px;
        background-position: bottom;
    }

    div.title {
        grid-column: 1/3;
        grid-row: 1/4;
        padding: 0 !important;
        margin: auto;
    }

    div.title h1{
        border-bottom: none !important;
    }

    p.nameEng {
        font-size: 12px;
        text-align: left;
    }

    /* ここまでheroエリア */
}

/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 940px) {

    div#luxy {
        grid-template-rows: auto 150px auto auto;
    }
    
    /* ここから */

    header {
        display: block !important;
        grid-column: 2;
        grid-row: 1;
    }

    header ul {
        display: none !important;
    }

    .heroImageArea nav.humburger {
        display: none;
    }
    
    nav.humburger.dummy {
        display: block;
    }

    nav.humburger.open-menu {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav.humburger.open-menu ul{
        position: relative;
        top: auto;
        margin-top: 0;
        display: block;
    }

    nav.humburger.open-menu ul li{
        margin-bottom: 50px;
    }

    /* ここまで共通ヘッダー部 */

    /* ここから */

    div#heroImageArea {
        grid-template-columns: 1fr 42px;
        grid-template-rows: 51px 1fr 84px;
        background-position: bottom;
    }

    div.title {
        grid-column: 1/3;
        grid-row: 1/4;
        padding: 0 !important;
        margin: auto;
    }

    div.title h1{
        font-size: 50px !important;
        border-bottom: none !important;
    }

    p.nameEng {
        font-size: 12px;
        text-align: left;
    }

    /* ここまでheroエリア */

    /* ここから */

    a.scrollTextRight, a.scrollTextRight2 {
        display: none;
    }

    a.scrollRight {
        display: none;
    }

    a.scrollTextLeft, a.scrollTextLeft2 {
        display: none;
    }

    a.scrollLeft {
        display: none;
    }

    /* ここまでスクロール */

    /* ここから */

    .navToggle.dummy {
        display: block;
        width: 42px;
        height: 51px;
    }

    .navToggle {
        grid-column: 3;
        width: 42px;
        height: 51px;
    }
    
    .navToggle span {
        width: 30px;
        left: 6px;
    }
    
    .navToggle span:nth-child(1) {
        top: 9px;
    }
    
    .navToggle span:nth-child(2) {
        top: 18px;
    }
    
    .navToggle span:nth-child(3) {
        top: 27px;
    }
    
    .navToggle span:nth-child(4) {
        font-size: 9px;
        top: 30px;
    }

    /* 最初のspanをマイナス45度に */
    .navToggle.active span:nth-child(1) {
        top: 18px;
        left: 6px;
    }

    /* 2番目と3番目のspanを45度に */
    .navToggle.active span:nth-child(2),
    .navToggle.active span:nth-child(3) {
        top: 18px;
    }

    /* ここまでmenuボタン */

    /* ここから */

    article {
        margin-top: 0 !important;
    }

    section.section1 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto 150px auto 150px auto 150px auto 150px auto 150px;
    }

    /* ここまでarticle */

    /* ここから */

    .moreBtnLeft {
        display: none;
    }

    .moreBtnRight.dummy {
        display: block;
    }

    /* ここまでmoreボタン */

    /* ここから */

    div#office {
        grid-column: 1;
        grid-row: 1;
        grid-template-rows: 150px 150px 150px 150px;
        grid-template-columns: repeat(12, 1fr);
    }

    div.imgContentBack1.scroll {
        display: none;
    }

    div.imgContent1.scroll {
        grid-column: 1/11;
        grid-row: 1/5;
        opacity: 0.2;
        z-index: -50;
    }

    p.engTxtContent1 {
        color: #fff;
        font-size: 50px;
        grid-column: 1/13;
    }

    span.txtContentSpan1 {
        font-size: 80px;
    }

    div.contentMainArea1.scroll {
        grid-column: 2/12;
        grid-row: 2;
        padding-left: 0 !important;
    }

    table.txtContent1 {
        font-size: 14px;
    }

    table.txtContent1 td.col1{
        width: 20%;
    }

    div.law {
        display: none;
    }

    p.txtLaw {
        font-size: 70px;
        top: -45px;
        right: 0;
        transform: rotate(0deg);
        left: auto;
    }

    h2.txtContentTitle1 {
        font-size: 25px;
    }
    
    /* ここまでcontent1 */

    /* ここから */

    div#handing {
        grid-column: 1;
        grid-row: 3;
        grid-template-rows: 150px 150px 150px 150px;
        grid-template-columns: repeat(12, 1fr);
    }

    div.imgContentBack2.scroll {
        display: none;
    }

    div.imgContent2.scroll {
        grid-column: 3/13;
        grid-row: 1/5;
        opacity: 0.2;
        z-index: -50;
    }

    p.engTxtContent2 {
        color: #fff;
        font-size: 50px;
        grid-column: 1/13;
    }

    span.txtContentSpan2 {
        font-size: 80px;
    }

    div.contentMainArea2.scroll {
        grid-column: 2/12;
        grid-row: 2;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    div.legal {
        display: none;
    }

    p.txtLegal {
        font-size: 70px;
        top: -45px;
        transform: rotate(0deg);
        left: 0;
    }

    h2.txtContentTitle2 {
        font-size: 25px;
    }

    /* ここまでcontent2 */

    /* ここから */

    div#reward {
        grid-column: 1;
        grid-row: 5;
        grid-template-rows: 150px 150px 150px 150px;
        grid-template-columns: repeat(12, 1fr);
    }

    div.imgContentBack3.scroll {
        display: none;
    }

    div.imgContent3.scroll {
        grid-column: 1/11;
        grid-row: 1/5;
        opacity: 0.2;
        z-index: -50;
    }

    p.engTxtContent3 {
        color: #fff;
        font-size: 50px;
        grid-column: 1/13;
    }

    span.txtContentSpan3 {
        font-size: 80px;
    }

    div.contentMainArea3.scroll {
        grid-column: 2/12;
        grid-row: 2;
        padding-left: 0 !important;
    }

    div.justice {
        display: none;
    }

    p.txtJustice {
        font-size: 70px;
        top: -45px;
        right: 0;
        transform: rotate(0deg);
        left: auto;
    }

    h2.txtContentTitle3 {
        font-size: 25px;
    }

    /* ここまでcontent3 */

    /* ここから */

    div#contract {
        grid-column: 1;
        grid-row: 7;
        grid-template-rows: 150px 150px 150px 150px;
        grid-template-columns: repeat(12, 1fr);
    }

    div.imgContentBack4.scroll {
        display: none;
    }

    div.imgContent4.scroll {
        grid-column: 3/13;
        grid-row: 1/5;
        opacity: 0.2;
        z-index: -50;
    }

    p.engTxtContent4 {
        color: #fff;
        font-size: 50px;
        grid-column: 1/13;
    }

    span.txtContentSpan4 {
        font-size: 80px;
    }

    div.contentMainArea4.scroll {
        grid-column: 2/12;
        grid-row: 2;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    div.advocacy {
        display: none;
    }

    p.txtAdvocacy {
        font-size: 70px;
        top: -45px;
        transform: rotate(0deg);
        left: 0;
    }

    h2.txtContentTitle4 {
        font-size: 25px;
    }

    /* ここまでcontent4 */

    /* ここから */

    footer {
        padding: 20px 0 !important;
    }

    footer h2 {
        padding: 20px 0 !important;
    }

    footer h2 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }

    footer ul {
        width: 100% !important;
        display: block !important;
        font-size: 18px !important;
    }

    footer ul.footerArea {
        width: 100% !important;
        display: block !important;
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }

    footer ul.footerArea li {
        padding: 20px 0 !important;
        border-bottom: solid 1px #005300;
    }

    footer ul.footerArea li:nth-child(1) {
        border-top: solid 1px #005300;
    }

    footer ul.adressInfo {
        text-align: center;
    }

    footer ul.adressInfo li {
        margin-bottom: 20px;
    }

    .footerScroll {
        display: none !important;
    }

    /* ここまで共通フッター部 */

    div#heroImageArea {
        background-size: contain;
    }
}

/* ここまでレスポンシブ */