@charset "utf-8";
/* CSS Document */

/*------------------------------------------------------------------

@color
#333333  :   maintext

@z-index
999999  :   .modalBox
99999   :   .hamburger
9999    :   .globalNav_sp

@media
@media screen and (min-width:751px) and ( max-width:1200px)
@media only screen and (max-width: 750px)

------------------------------------------------------------------*/

@font-face {
    font-family: 'Noto Sans JP Subset';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: local("Noto Sans CJK JP Regular"),
    url('../fonts/NotoSans_Regular.woff2') format('woff2'),
    url('../fonts/NotoSans_regular.woff') format('woff'),
}

@font-face {
    font-family: 'Noto Sans JP Subset';
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: local("Noto Sans CJK JP Bold"),
    url('../fonts/NotoSans_Bold.woff2') format('woff2'),
    url('../fonts/NotoSans_bold.woff') format('woff'),
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url("../fonts/YakuHanJP-Regular.woff2") format("woff2"),
    url("../fonts/YakuHanJP-Regular.woff") format("woff");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: url("../fonts/YakuHanJP-Bold.woff2") format("woff2"),
    url("../fonts/YakuHanJP-Bold.woff") format("woff");
}

body{
font-family: 'YakuHanJP','Noto Sans', 'Noto Sans CJK JP', 'Noto Sans JP Subset', sans-serif;
-webkit-font-smoothing: antialiased;
line-height: 1.5;
overflow-wrap: break-word;
text-align: justify;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 62.5%; }
body {
font-family: 'YakuHanJP','Noto Sans', 'Noto Sans CJK JP', 'Noto Sans JP Subset', sans-serif;
-webkit-font-smoothing: antialiased;
font-size: 1.8rem;
line-height: 1.5;
overflow-wrap: break-word;
text-align: justify;
color: #333;
}
.clearfix::after {
content: '';
display: block;
clear: both;
}
.sans-serif{
font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
}

/* PC / SP
------------------------------------ */
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 600px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/* SP image
------------------------------------ */
@media only screen and (max-width: 600px) {
main img { max-width: 100%; }
}

/* BOX
------------------------------------ */

main {
}
header { position: relative; z-index: 10;}
.inner {
margin: auto;
max-width: 1000px;
}
/*
@media screen and (min-width:751px) and ( max-width:1200px) {
.inner { width: 100%; }
}
*/
@media only screen and (max-width: 600px) {
.inner { width: 100%; }
}
}

/* header
------------------------------------ */
.header {
height: 50px;
box-shadow: 0 3px 5px 0 rgba(0,0,0,0.15);
}
.header .inner {
padding: 0 20px;
display: flex;
flex-wrap: nowrap;
}
.header .inner p {
width: 50%;
}
.header p img {
margin-top: 8px;
}
.header p.dhg_logo {
text-align: right;
}
.header p.dhg_logo img {
margin-top: 10px;
}
@media screen and (max-width: 600px) {
.header p.dhg_logo img {
width: 80%;
margin-top: 14px;
}
}
/* menu - SP
------------------------------------ */
@media screen and (max-width: 600px) {

.menu_sp {
padding: 10px;
background-color: aqua;
position: fixed;
top: 70px;
right: 0;
}
.menu_sp .inner { width: 100%;}

/* ハンバーガー */
.hamburger {
width: 24px;
height: 18px;
display: block;
z-index: 1000;
}
.hamburger span {
margin: 0 auto;
width: 100%;
height: 1px;
background-color: #000;
display: inline-block;
transition: all .4s;
position: absolute;
left: 0;
}
.hamburger span:nth-of-type(1) { top: 0;}
.hamburger span:nth-of-type(2) { top: 9px;}
.hamburger span:nth-of-type(3) { bottom: 0;}

.hamburger.active span { background-color: #FFF; }

.hamburger.active span:nth-of-type(1) { -webkit-transform: translateY(9px) rotate(135deg); transform: translateY(9px) rotate(135deg);}
.hamburger.active span:nth-of-type(2) { opacity: 0;}
.hamburger.active span:nth-of-type(3) { -webkit-transform: translateY(-8px) rotate(45deg); transform: translateY(-8px) rotate(45deg);}

}

/* global nav - PC
------------------------------------ */
/*
.globalNav_pc ul {
display: flex;
justify-content: space-between;
border-left: 1px solid #333;
}
.globalNav_pc ul li {
width: calc(100%/6);
height: 40px;
text-align: center;
border-right: 1px solid #333;
transition: 0.5s;
}
.globalNav_pc ul li:hover {
background-color: #ccc;
}
.globalNav_pc ul li a {
color: #333;
line-height: 40px;
display: block;
text-decoration: none;
}
.globalNav_pc ul li.current a {
background-color: #ccc;
}
*/

/* global nav - SP
------------------------------------ */
.globalNav_sp { display: none; }

@media screen and (max-width: 600px) {
.globalNav_sp {
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.9);
display: none;
position: absolute;
top: 0;
left: 0;
z-index: 9999;
overflow-y: auto;
}
.globalNav_sp ul {
padding: 70px 20px 0;
width: 100%;
}
.globalNav_sp ul li {
margin: 16px auto 0;
width: 100%;
height: 40px;
}
.globalNav_sp ul li:first-child {
margin-top: 0;
}
.globalNav_sp ul li a {
line-height: 40px;
color: #fff;
font-size: 1.8rem;
text-decoration: none;
border-bottom: 1px solid #8e8e8e;
display: block;
}
}

/* mainvisual
------------------------------------ */
.mainvisual {
height: 560px;
background-image: url("../images/main_bg.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.mainvisual .inner {
margin: auto;
padding-top: 150px;
width: 900px;
}
.mainvisual .inner p {
padding: 40px 0 30px;
font-size: 4.8rem;
font-weight: bold;
text-align: center;
letter-spacing: 2px;
color: #fff;
text-shadow: 4px 4px 0 rgba(0,0,0,0.3);
background-color: rgba(234,84,4,0.9);
}
.mainvisual .inner p span {
font-size: 3.6rem;
}
.mainvisual .inner p span.text {
font-size: 4.8rem;
letter-spacing: -10px;
}
.mainvisual .inner p img {
margin-top: 20px;
}

@media screen and (max-width: 600px) {
.mainvisual {
height: 350px;
background-image: url("../images/sp/mv.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.mainvisual .inner {
padding-top: 0;
width: 100%;
height: 100%;
background-color: rgba(234,84,4,0.9);
}
.mainvisual .inner p {
padding: 100px 20px 0;
text-align: left;
background-color: rgba(234,84,4,0.0);
}
.mainvisual .inner p img {
margin: 0 auto 10px;
}
}

/* content
------------------------------------ */

/* sec共通
------------------------------------ */
.sec {
margin-bottom: 100px;
}
.sec h1.type1 {
margin: 0 auto 60px;
font-size: 3.0rem;
text-align: center;
color: #162545;
}
.sec h1.type1::after {
content: '';
margin: 20px auto 0;
width: 120px;
height: 4px;
background-color: #ea5404;
display: block;
}
.sec h1.type1 span {
background: linear-gradient(transparent 70%, #fff000 0%);
display: inline-block;
}

@media screen and (max-width: 600px) {
.sec h1.type1 {
font-size: 2.6rem;
}
}


/* sec01
------------------------------------ */
.section01 {
margin-bottom: 0;
/*padding-bottom: 80px;*/
background-color: #c0dbec;
}
.section01 .inner {
margin: auto;
padding-top: 30px;
width: 900px;
position: relative;
}
.section01 .inner p .cp_bnr2 {
position: absolute;
top: 8px;
right: -10px;
}

@media screen and (max-width: 600px) {
.section01 .inner {
padding-top: 0;
width: 100%;
background-image: url("../images/sp/cp_bnr_bg.png");
background-repeat: repeat-x;
background-position: top center;
}
.section01 .inner p,
.section01 .inner p a {
width: 100%;
display: block;
}
.section01 .inner p a img {
margin: auto;
}
}


/* sec02
------------------------------------ */
.section02 {
background-image: url("../images/sec02_bg.png");
background-repeat: no-repeat;
background-position: center top;
background-size:contain;
}
.section02 .inner {
padding-top: 60px;
width: 960px;
}
.section02 h1 {
padding-right: 50px;
width: 680px;
background-image: url("../images/sec02_icon.png");
background-repeat: no-repeat;
background-position: right top;
display: block;
}
.section02 ul {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
}
.section02 ul li div {
width: 300px;
height: 340px;
border: 3px solid #162545;
background-color: #fff;
}
.section02 ul li {
padding-top: 55px;
background-repeat: no-repeat;
background-position: center top;
}
.section02 ul li:nth-child(1) { background-image: url("../images/benefits_1.png")}
.section02 ul li:nth-child(2) { background-image: url("../images/benefits_2.png")}
.section02 ul li:nth-child(3) { background-image: url("../images/benefits_3.png")}
.section02 ul li > img {
margin-top: -70px;
text-align: center;
}
.section02 ul li div h2 {
height: 70px;
line-height: 70px;
font-size: 2.4rem;
text-align: center;
background-color: rgba(22, 37, 69, 0.1);
}
.section02 ul li div p {
padding: 20px;
font-size: 1.6rem;
}

@media screen and (max-width: 600px) {
.section02 .inner {
width: 100%;
}
.section02 h1 {
padding-right: 0;
width: 100%;
background-image: none;
}
.section02 ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.section02 ul li div {
margin: 0 auto 20px;
width: 90%;
height: auto;
}
}

/* sec03
------------------------------------ */
.section03 {
background-image: url("../images/sec03_bg.png");
background-repeat: no-repeat;
background-position: center bottom;
background-size: contain;
}
.section03 h1 {
padding-right: 80px;
width: 710px;
background-image: url("../images/sec03_icon.png");
background-repeat: no-repeat;
background-position: right top;
display: block;
}
.section03 ul li {
padding: 30px 30px 30px 220px;
margin: 0 auto 30px;
width: 840px;
background-color: #fff;
border: 3px solid #162545;
border-radius: 12px;
box-shadow: 10px 10px 0 0 rgba(0,0,0,0.1);
background-repeat: no-repeat;
background-position: left 10px center;
}
.section03 ul li:nth-child(1) { background-image: url("../images/sec03_1.png");}
.section03 ul li:nth-child(2) { background-image: url("../images/sec03_2.png");}
.section03 ul li:nth-child(3) { background-image: url("../images/sec03_3.png");}
.section03 ul li h2 {
font-size: 2.4rem;
margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
.section03 h1 {
padding-right: 0;
width: 100%;
background-image: none;
}
.section03 ul {
padding: 0 5%;
}
.section03 ul li {
padding: 220px 30px 30px 30px ;
margin: 0 auto 30px;
width: 100%;
background-position: top 10px center;
}
.section03 ul li h2 {
font-size: 2.0rem;
}
}

/* sec04
------------------------------------ */
.section04 ul {
padding: 0 0 0 400px;
margin: auto;
width: 900px;
background-image: url("../images/dhg_img.jpg");
background-repeat: no-repeat;
background-position: left center;
}
.section04 ul li {
margin-bottom: 30px;
}
.section04 ul li h2 {
margin-bottom: 10px;
padding-bottom: 10px;
font-size: 2.0rem;
border-bottom: 1px dashed #cccccc;
}
.section04 ul li h2 span {
margin-left: 20px;
padding: 2px 10px;
font-size: 1.4rem;
color: #fff;
background-color: #162545;
display: inline-block;
font-weight: normal;
}
.section04 ul li p {
font-size: 1.6rem;
}
.section04 ul li p .js-modal {
margin: 10px 10px 0 0;
width: 220px;
height: 40px;
line-height: 40px;
font-size: 1.5rem;
font-weight: bold;
text-align: center;
color: #fff;
background-color: #ea5404;
border-radius: 20px;
display: inline-block;
}
.section04 ul li a {
text-decoration: none;
}
.section04 .js-modal img {
margin: 0 0 0 10px;
vertical-align: middle;
}

@media screen and (max-width: 600px) {
.section04 h1.type1 {
margin: 0 0 20px;
}
.section04 ul {
padding: 400px 0 0 0;
margin: 0 auto 20px;
width: 90%;
background-position: top center;
background-size: 300px auto;
}
.section04 ul li h2 {
margin-bottom: 20px;
line-height: 1.2em;
}
.section04 ul li h2 span {
margin-left: 0;
}
.section04 ul li p .js-modal {
width: 70%;
margin: 20px auto 10px;
display: block;
}
}


/* sec00
------------------------------------ */
.section00 {
margin: 0 auto;
padding: 30px 0;
width: 100%;
}
.section00 .inner {
width: 900px;
background-color: #fff;
border: 2px solid #162545;
}
.section00 .type2 {
padding: 30px 0 67px;
width: 100%;
text-align: center;
color: #fff;
background-color: #162545;
position: relative;
}
.section00 .type2::after {
content: '';
width: 100%;
height: 37px;
background-image: url("../images/arrow.png");
background-repeat: no-repeat;
background-position: center top;
background-color: #fff;
display: block;
position: absolute;
bottom: 0;
}
.section00 .type2 h1 {
font-size: 3.0rem;
}

.section00 .type2 p {
font-size: 2.0rem;
font-weight: bold;
}
.section00 .type2 p span {
margin-right: 10px;
padding: 0 10px;
border: 1px solid #fff;
}
.section00 .inner .wrap {
padding: 40px;
}
.section00 .inner .wrap > p {
margin-bottom: 50px;
}
.section00 .inner .wrap > p img {
margin-bottom: 20px;
}
.section00 ul li {
margin-bottom: 5px;
padding: 0 15px;
font-size: 1.4rem;
}
.section00 ul li::before {
content: '●';
margin-left: -15px;
}
.section00 h2 {
margin: 0 auto 30px;
width: 200px;
height: 50px;
line-height: 50px;
font-size: 2.4rem;
text-align: center;
color: #fff;
background-color: #162545;
border-radius: 25px;
}
.section00 .inner p img {
margin: auto;
}
.section00 .inner p.btn_txt {
text-align: center;
}
.section00 .inner p.btn a {
margin: 40px auto 0;
width: 400px;
height: 50px;
line-height: 50px;
color: #fff;
background-color: #ea5404;
font-weight: bold;
text-align: center;
text-decoration: none;
display: block;
border-radius: 5px;
box-shadow: 0 10px 0 0 #c44400;
}
.section00 .inner p.txt {
padding-top: 30px;
}
.section05 .inner p.btn a:hover {
box-shadow: none;
transform: translateY(10px);
}

@media screen and (max-width: 600px) {
.section00 .inner {
margin: auto;
width: 100%;
border: none;
}
.section00 .type2 {
margin-bottom: 30px;
}
.section00 .type2 h1 {
margin-bottom: 10px;
padding: 0 20px;
font-size: 2.0rem;
}
.section00 .type2 p {
padding: 0 20px;
font-size: 1.8rem;
}
.section00 .type2 p span {
margin-bottom: 10px;
display: inline-block;
}
.section00 .inner .wrap {
padding: 0 0 30px;
width: 100%;
}
.section00 .inner .wrap img {
margin-bottom: 0;
width: 100%;
}
.section00 .inner p.btn_txt {
text-align: left;
}
.section00 .inner p.btn a {
width: 90%;
font-size: 1.6rem;
}
}


/* sec05
------------------------------------ */
.section05 {
margin: 0 auto;
padding: 140px 0 80px;
width: 100%;
background-color: #c0dbec;
background-image: url("../images/bg_img.png");
background-repeat: repeat-x;
background-position: center top;
}
.section05 .inner {
width: 900px;
background-color: #fff;
}
.section05 .type2 {
padding: 30px 0 67px;
width: 100%;
text-align: center;
color: #fff;
background-color: #162545;
position: relative;
}
.section05 .type2::after {
content: '';
width: 100%;
height: 37px;
background-image: url("../images/arrow.png");
background-repeat: no-repeat;
background-position: center top;
background-color: #fff;
display: block;
position: absolute;
bottom: 0;
}
.section05 .type2 h1 {
font-size: 3.0rem;
}

.section05 .type2 p {
font-size: 2.0rem;
font-weight: bold;
}
.section05 .type2 p span {
margin-right: 10px;
padding: 0 10px;
border: 1px solid #fff;
}
.section05 .inner .wrap {
padding: 0 40px 60px;
}
.section05 .inner .wrap > p {
margin-bottom: 50px;
}
.section05 .inner .wrap > p img {
margin-bottom: 20px;
}
.section05 ul {
margin-bottom: 40px;
}
.section05 ul li {
margin-bottom: 5px;
padding: 0 15px;
font-size: 1.4rem;
}
.section05 ul li::before {
content: '●';
margin-left: -15px;
}
.section05 h2 {
margin: 0 auto 30px;
width: 200px;
height: 50px;
line-height: 50px;
font-size: 2.4rem;
text-align: center;
color: #fff;
background-color: #162545;
border-radius: 25px;
}
.section05 .inner p img {
margin: auto;
}
.section05 .inner p.btn_txt {
margin-top: 30px;
text-align: center;
}
.section05 .inner p.btn a {
margin: 40px auto 0;
padding: 10px 0;
width: 400px;
color: #fff;
background-color: #ea5404;
font-weight: bold;
text-align: center;
text-decoration: none;
display: block;
border-radius: 5px;
box-shadow: 0 10px 0 0 #c44400;
}
.section05 .inner p.txt {
padding-top: 30px;
}
.section05 .inner p.btn a:hover {
box-shadow: none;
transform: translateY(10px);
}

@media screen and (max-width: 600px) {
.section05 .inner {
margin: auto;
width: 90%;
}
.section05 .type2 {
margin-bottom: 30px;
}
.section05 .type2 h1 {
margin-bottom: 10px;
padding: 0 20px;
font-size: 2.0rem;
}
.section05 .type2 p {
padding: 0 20px;
font-size: 1.8rem;
}
.section05 .type2 p span {
margin-bottom: 10px;
display: inline-block;
}
.section05 .inner .wrap {
padding: 0 20px 30px;
}
.section05 .inner .wrap > p img {
margin-bottom: 0;
width: 100%;
}
.section05 .inner p.btn_txt {
text-align: left;
}
.section05 .inner p.btn a {
width: 90%;
font-size: 1.6rem;
}
}


/* sec06
------------------------------------ */
.section06 {
margin: 0 auto;
padding-bottom: 80px;
background-color: #c0dbec;
}
.section06 .type3 {
padding: 30px 0 67px;
width: 100%;
text-align: center;
color: #fff;
background-color: #162545;
position: relative;
}
.section06 .type3::after {
content: '';
width: 100%;
height: 37px;
background-image: url("../images/arrow.png");
background-repeat: no-repeat;
background-position: center top;
background-color: #fff;
display: block;
position: absolute;
bottom: 0;
}
.section06 .type3 h1 {
padding: 0 20px;
font-size: 3.0rem;
}
.section06 .type3 p {
margin-bottom: 30px;
font-weight: bold;
}
.section06 .type3 p span {
margin-right: 10px;
padding: 0 10px;
border: 1px solid #fff;
}
.section06 .inner {
width: 900px;
background-color: #fff;
}
.section06 .inner .wrap {
padding: 40px;
}
.section06 .inner p {
margin-bottom: 30px;
}
.section06 .inner ul {
margin-bottom: 30px;
padding: 0 40px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.section06 .inner ul li {
margin-bottom: 20px;
width: 45%;
}
.section06 .inner ul li a {
width: 100%;
height: 50px;
line-height: 50px;
color: #fff;
background-color: #ea5404;
font-weight: bold;
text-align: center;
text-decoration: none;
display: block;
border-radius: 5px;
box-shadow: 0 10px 0 0 #c44400;
}
.section06 .inner ul li a:hover {
box-shadow: none;
transform: translateY(10px);
}
.section06 h2 {
margin: 0 auto 30px;
width: 250px;
height: 50px;
line-height: 50px;
font-size: 2.0rem;
text-align: center;
color: #fff;
background-color: #162545;
border-radius: 25px;
}

@media screen and (max-width: 600px) {
.section06 .inner {
margin: auto;
width: 90%;
}
.section06 .type3 h1 {
font-size: 2.0rem;
}
.section06 .inner .wrap {
padding: 20px;
}
.section06 .inner ul {
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.section06 .inner ul li {
margin-bottom: 20px;
width: 100%;
}
}

/* sec07
------------------------------------ */
.section07 {
margin: 0 auto 40px;
padding-bottom: 20px;
background-color: #c0dbec;
}
.section07 .type3 {
padding: 5px;
width: 100%;
text-align: center;
color: #fff;
background-color: #162545;
position: relative;
}
.section07 .type3 h1 {
padding: 0 20px;
font-size: 1.6rem;
}
.section07 .type3 p {
margin-bottom: 30px;
font-weight: bold;
}
.section07 .type3 p span {
margin-right: 10px;
padding: 0 10px;
border: 1px solid #fff;
}
.section07 .inner {
width: 900px;
background-color: #fff;
}
.section07 .inner .wrap {
padding: 20px;
}
.section07 .inner p {
margin-bottom: 30px;
}
.section07 .inner ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.section07 .inner ul li {
}
.section07 .inner ul li a {
color: #333;
font-size: 1.6rem;
text-decoration: none;
}
.section07 .inner ul li a::after {
content: '/';
margin: 0 10px;
}
.section07 .inner ul li:last-child a::after {
content: none;
}
.section07 h2 {
margin: 0 auto 30px;
width: 250px;
height: 50px;
line-height: 50px;
font-size: 2.0rem;
text-align: center;
color: #fff;
background-color: #162545;
border-radius: 25px;
}

@media screen and (max-width: 600px) {
.section07 .inner {
margin: auto;
width: 90%;
}
.section07 .type3 h1 {
font-size: 2.0rem;
}
.section07 .inner .wrap {
padding: 20px;
}
.section06 .inner ul {
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.section07 .inner ul li {
margin-bottom: 5px;
width: 100%;
}
.section07 .inner ul li a::after {
content: none;
margin: 0;
}
}

/* section_area
------------------------------------ */
.section_area p {
padding: 0 20px;
width: 100%;
}
.section_area p img {
margin: auto;
width: 800px;
}
@media screen and (max-width: 600px) {
.section_area p img {
width: 100%;
max-width: 460px;
}
}


/* footer - PC
------------------------------------ */
#footer {
padding: 50px 0 110px;
}
#footer p {
text-align: center;
font-size: 1.4rem;
}
#footer p span {
padding-top: 30px;
text-align: center;
font-size: 1.2rem;
line-height: normal;
color: #999;
display: block;
}

@media screen and (max-width: 600px) {
#footer .inner {
padding: 0 20px 0;
}
}

/* footer - SP
------------------------------------ */


/* other
------------------------------------ */
.bottom_nav {
width: 100%;
height: 80px;
background-color: rgba(234,84,4,0.8);
position: fixed;
bottom: 0;
z-index: 10;
}
.bottom_nav .inner {
margin: auto;
width: 1000px;
}
.bottom_nav .inner ul {
margin: auto;
padding-top: 10px;
width: 530px;
display: flex;
flex-wrap: nowrap;
/*
justify-content: space-between;
*/
justify-content: center;
}

.bottom_nav .inner ul li {
margin: 0 10px;
width: 320px;
}

.bottom_nav .inner ul li a {
width: 100%;
height: 60px;
line-height: 60px;
color: #ea5404;
background-color: #fff;
font-weight: bold;
text-align: center;
text-decoration: none;
display: block;
border-radius: 8px;
box-shadow: 0 0 4px 0 rgba(0,0,0,0.2);
}
.bottom_nav .inner ul li a:hover {
opacity: 0.7;
}

@media screen and (max-width: 600px) {
.bottom_nav .inner {
margin: auto;
width: 100%;
}
.bottom_nav .inner ul {
margin: auto;
padding: 10px 10px 0;
width: 100%;
display: flex;
flex-wrap: nowrap;
}
.bottom_nav .inner ul li {
margin: 0;
padding: 0 5px;
width: 80%;
}
.bottom_nav .inner ul li a {
font-size: 1.5rem;
}
}

/* js
------------------------------------ */

/* js-modal */
.js-modal,
.js-modal-close {
cursor: pointer;
}
.modalBox {
width: 100%;
height: 100%;
background-color: rgba(0,0,0,.9);
position: fixed;
top: 0;
left: 0;
z-index: 999999;
display: none;
}
.modalContent {
width: 65%;
height: 65%;
background-color: #fff;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.js-modal-close {
width: 40px;
height: 40px;
display: block;
position: absolute;
top: -50px;
right: 0;
}
.js-modal-close::before,
.js-modal-close::after {
content: '';
width: 100%;
height: 2px;
display: block;
background-color: #fff;
position: absolute;
top: 50%;
left: 0;
}
.js-modal-close::before { transform: rotate(45deg);}
.js-modal-close::after { transform: rotate(-45deg);}

@media screen and (max-width: 600px) {
.modalContent {
width: 100%;
height: 80%;
}
}


/* js-modal contents */
.modal_wrap {
padding: 40px;
width: 100%;
height: 100%;
overflow-y: scroll;
}
.modal_wrap h1 {
margin-bottom: 20px;
font-size: 2.8rem;
}
.modal_wrap h1 span {
font-size: 1.8rem;
}
.modal_wrap h2 {
padding-bottom: 10px;
margin-bottom: 20px;
font-size: 2.2rem;
border-bottom: 2px solid #162545;
}
.modal_wrap ul {
margin-bottom: 30px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.modal_wrap ul li {
margin-bottom: 5px;
width: 48%;
font-size: 1.6rem;
}
.modal_wrap p {
font-size: 1.6rem;
text-align: right;
}

@media screen and (max-width: 600px) {
.modal_wrap {
padding: 20px;
}
.modal_wrap h1 {
line-height: 1em;
}
.modal_wrap ul li {
width: 100%;
}
}


/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
 
/*2.上下の動きを指定*/
.updown {transform: translateY(-60px);}
.downup {transform: translateY(100px);}
 
/*3.左右の動きを指定*/
.sect02{overflow: hidden;} /*横スクロールバーを隠す*/
.slide-right {transform: translateX(200px);}
.slide-left {transform: translateX(-200px);}


/* SATORI
------------------------------------ */
main .inner .satori__privacy_policy_message {
margin: 20px auto;
padding: 20px;
width: 100%;
max-width: 600px;
height: 150px;
font-size: 1.6rem;
background-color: #fff;
border: 1px solid #eee;
overflow-y: scroll;
}