@charset "UTF-8";
/*
GENERAL STYLING
================================================ */
html {
    font-size: 10px;
}
body {
	color: #555;
	font-family: sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
}

/*
COMMON
================================================ */
p,
td {
    line-height: 1.7;
}
.wrapper {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}
main {
    max-width: 900px;
    width: 96%;
    margin: 6.25rem auto;
    padding: 3rem 2rem;
    background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,.2);
}
.text-center {
    text-align: center;
}
.margin_b20 {
    margin-bottom: 20px;
}
.margin_b50 {
    margin-bottom: 50px;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    margin: 5px 0;
    padding: 0;
}

/* Button */
.btn {
    font-family: 'Sawarabi Mincho', sans-serif;
    display: inline-block;
    padding: 1.25rem 3.25rem;
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
    max-width: 350px;
}
.btn-primary {
    color: #fff;
    background: #000;
}
.btn-primary:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}
.btn-secondary {
    color: #555;
    background: #d0bea2;
}
.btn-secondary:hover {
    background: #d9cebe;
}

/* Btn-Vertical */
.bl_horizBtnList {
    display: flex;
    justify-content: center;
}
.bl_horizBtnList > *:last-child {
    margin-right: 0;
}
.bl_horizBtnList > li {
    flex: 1 1 0;
    max-width: 300px;
    margin-right: 20px;
}
.bl_horizBtnList .btn {
    display: inline-block;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.btn-menu {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 1px solid rgba(255,255,255,.5);
    color: var(--white);
    padding: .5rem 1rem;
}
.main-nav {
    background: var(--grey);
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 10%;
    overflow: hidden;
    transition: .5s;
}
.main-nav li {
    text-align: center;
    margin: 2rem 0;
}
.main-nav a {
    display: block;
}
.main-nav.open-menu {
    width: 100%;
}

/* Heading */
.title {
    font-family: 'Sawarabi Mincho', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #555555;
    text-align: center;
}
.title-center {
    text-align: center;
}
.title-center::after {
    margin: 2.5rem auto;
}
.h3_title {
    font-family: 'Sawarabi Mincho', sans-serif;
    font-size: 2.0rem;
    line-height: 1.5;
    color: #555555;
    border-bottom: 2.5px solid #555555;
    margin: 0 0 20px 0;
}
.h3_title-center {
    text-align: center;
}
.h3_title-center::after {
    margin: 2.5rem auto;
}
.heading_title {
    font-family: 'Sawarabi Mincho', sans-serif;
    font-size: 2.0rem;
    line-height: 1.5;
    color: #555555;
    text-align: center;
}
.heading_title::after {
    content: '';
    display: block;
    height: 5px;
    width: 10rem;
    background: #555555;
    margin: 2rem auto 2.5rem;
}
.heading_title-center {
    text-align: center;
}
.heading_title-center::after {
    margin: 4.5rem auto;
}
header #logo a{
	width: 250px;
	height: 50px;
	display: block;
	float: left;
	margin: 0 10px 10px 0;
	background-image: url("../img/global/logo.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 100%;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
header #logo span {
	display: none;
}

/* Table */
table {
    margin: 3.5rem 0;
    width: 100%;
}
th,
td {
    display: block;
}
th {
    font-weight: normal;
    background: #f8f6f2;
    vertical-align: middle;
    padding: 1rem;
}
td {
    padding: .75rem 1rem 1.75rem;
}
#link tr:nth-child(odd) {
    background: #f8f6f2;
}

/*
HEADER
================================================ */
header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    width: 100%;
    max-width: 1366px;
}
header h1 {
    color: #555555;
    font-family: 'Noto Serif', serif;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    z-index: 3;
}
.main-nav {
    display: none;
}

/*humberger */
.humberger {
	display: flex;
	height: 60px;
	margin-left: auto;
	position: relative;
	top: 0;
	z-index: 10;
	width: 60px;
	border: none;
	background-color: transparent;
}
.humberger.-active .humberger__line {
	background-color: transparent;
}
.humberger.-active .humberger__line::before {
	top: 0;
	transform: rotate(45deg);
}
.humberger.-active .humberger__line::after {
	top: 0;
	transform: rotate(-45deg);
}
.humberger__line {
	display: block;
	height: 2px;
	position: absolute;
	top: 23px;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	background-color: #555555;
	transition: 0.4s;
}
.humberger__line:before,
.humberger__line:after {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	width: 100%;
	background-color: #555555;
	transition: inherit;
}
.humberger__line:before {
	top: -6px;
}
.humberger__line:after {
	top: 6px;
}
.humberger__text {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.header {
    width: 300px;
    }
.header__nav-area {
    position: fixed;
    top: 70px;
    left: -100%;
    z-index: 9;
    height: 100vh;
    width: 100vw;
    visibility: hidden;
    padding-top: 0px;
    background-color: #f8f6f2;
    transition: 0.4s;
}
.header__nav-area.-active {
    left: 0;
    visibility: visible;
}
#js-global-navigation {
    display: block;
}
.global-navigation {
    padding-top: 30px;
    padding-right: 25px;
    padding-bottom: 120px;
    padding-left: 25px;
}
.global-navigation__list > li {
    padding-bottom: 20px;
    border-bottom: 2px solid #e7e9ee;
}
.global-navigation__list > li a:visited {
    color: #555555;
}
.global-navigation__list > li + li {
margin-top: 20px;
}
.global-navigation__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555555;
    font-weight: 900;
    transition: color 0.4s;
    font-size: 1.4rem;
}
.global-navigation__link.-accordion {
    position: relative;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0;
}
.global-navigation__link.-accordion::after {
    content: '';
    display: block;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 2px;
    background-color: #555555;
    transform: translateY(-50%);
    transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    background-color:#555555;
    transform: translateY(-50%);
}
.global-navigation__link.-active::after {
transform: translateY(-50%) rotate(-90deg);
}
.accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.4s;
}
.accordion.-active {
    height: auto;
    padding-top: 30px;
    visibility: visible;
}
.accordion__list li {
    font-size: 1.4rem;
}
.accordion__list li a{
    display: block;
}
.accordion__list li + li {
     margin-top: 21px;
}
.accordion__link {
    color: #172e59;
}

.humberger {
     display: block;
}

/*
HOME
================================================ */
.home-hero-box {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.home-hero {
    width: 100%;
    height: 0;
    background-image: url('../img/index/bg-hero.jpg') ;/*トップページ画像*/
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    vertical-align: top;
    padding-top: 56.625%;
}
.home-hero h2 {
    font-family: 'Sawarabi Mincho', sans-serif;
    font-size: 1.6rem;
    margin: 25vw 5vw 5vw;
    background: rgba(255,255,255,.8);
    padding: 1rem;
    display: inline-block;
}
.home-hero p {
    font-size: 1.4rem;
    margin-bottom: 0;
    margin-top: 4rem;
    background: rgba(255, 255, 255, .8);
    line-height: 1.5;
}

/* Contents */
.brown-bg {
    background: #f8f6f2;
}
.content {
    padding: 4rem 1rem;
}
.home-text {
    margin-bottom: 2rem;
}
.home-text p{
    margin: 20px;
}
.home-text .cont_link p{
    margin: 0;
}

/* top_second */
.top_image {
    margin: 0;
    padding: 0;
    text-align: center;
}
.top_image img{
    margin: 30px auto;
    padding: 0;
    width: 100%;
    max-width: 80%;
}

/* privacy */
.privacy_ttl {
    font-size: 18px;
    background: #555555;
    color: #fff;
    padding: 5px 10px 5px;
    margin: 0 auto 17px auto;
}
.privacy_txt {
    text-indent: 1rem;
    padding: 0 0 20px 10px;
}
.privacy_list {
    margin: 0 auto 30px;
}
.privacy_list li {
    padding: 0 20px;
    text-indent:-1em;
    padding-left:2em;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/*
FOOTER
================================================ */
footer {
background: #f8f6f2;
    color: rgba(255,255,255,.8);
    padding: 3.5rem 1rem;
    text-align: center;
}
footer .btn {
    margin-bottom: 3.5rem;
}
.footer-bg {
    background: #f8f6f2;
}
footer .inner {
	width: 100%;
	margin:0 auto;
	padding: 20px 0 0;
}
.footer-nav ul{
	font-size: 1.4rem;
	width:1080px;
	margin: 20px auto;
	text-align: center;
}
.footer-nav li {
	display:inline-block;
	width: 230px;
	font-size: 1.6rem;
	text-align: center;
	margin:0 0 0 1%;
    padding: 0 0 20px 0;
}
.footer-nav > li + li{
    margin: 20px 0 0 0;
}
.footer-nav li:last-child  {
     border-right: none;
}
.footer-nav li a {
	display:block;
	padding:0 10px;
	color: #555555;
}
.footer-nav li a:hover {
	color: #db8495;
	text-decoration: none;
}
footer .footer-sns {
	margin: 0 auto 30px;
	padding: 0;
	text-align: center;
}
footer .footer_line {
	margin: 0 10px;
	padding: 0 10px;
}
footer .footer_line a {
  text-decoration: none;
}
footer .footer_line img{
  width: 30px;
}
footer .name {
	font-weight: 300;
	width: 100%;
	max-width: 400px;
	text-align: center;
	line-height: 1.75;
	margin: 50px auto 20px;
}
footer p {
    font-size: 1.6rem;
    color: #555555;
}
.copyright {
	clear: both;
	width: 100%;
	text-align: center;
	font-size: 1.2rem;
	padding:10px 0 ;
    color: #555555;
}
footer .footer-title {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #555555;
}
.icon-link {
   margin: 0 5px 0 0;
   padding: 5px 35px 0 0;
   background: url(../img/global/link.png) 100%  0% no-repeat;
   background-size: 25px;
}

/*
DESKTOP SIZE
================================================ */
@media only screen and (min-width: 1000px){
/* Common */
main {
    padding: 5rem;
    width: 94%;
}
.title {
    font-size: 1.6rem;
}
.h3_title {
    font-family: 'Sawarabi Mincho', sans-serif;
    font-size: 2.0rem;
    line-height: 1.5;
    color: #555555;
    border-bottom: 2.5px solid #555555;
    margin: 0 0 20px 0;
}
.h3_title-center {
    text-align: center;
}
.h3_title-center::after {
    margin: 2.5rem auto;
}

/* Table */
tr:nth-child(odd) {
    background: #f8f6f2;
}
tr:nth-child(even) th {
    background: #fff;
}
th, td {
    padding: 1.25rem;
    display: table-cell;
}
th {
    width: 24%;
    vertical-align: middle;
}
td {
    width: 76%;
}
#link td {
    width: 100%;
}

/*
HOME
================================================ */
.home-hero-box {
    width: 100%;
    margin: 0 auto;
    padding: 0 20%;
}
.home-hero {
    width: 100%;
    height: 0;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    vertical-align: top;
    padding-top: 56.625;
}
.home-hero h2 {
    font-family: 'Sawarabi Mincho', sans-serif;
    font-size: 2.0rem;
    margin: 30vw 5vw 5vw;
    background: rgba(255,255,255,.8);
    padding: 1rem;
    display: inline-block;
}
.home-hero p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 5rem;
    background: rgba(255, 255, 255, .8);
    line-height: 1.5;
}

/* Header */
header .wrapper {
    padding: 2rem 1rem;
}
#js-global-navigation {
    display: none;
}
nav {
    display: block;
}
.humberger {
    display: none;
}
.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.main-nav li {
    text-align: center;
    font-size: .75rem;
    color: #555555;
}
.main-nav a {
    display: block;
    padding: .5rem;
    width: 4rem;
}
.main-nav .current {
    background: #f8f6f2;
}
.main-nav li {
    margin-left: 2rem;
    font-family: 'Sawarabi Mincho', sans-serif;
    font-size: 1.6rem;
}
.main-nav a {
    width: auto;
}
.main-nav a:hover,
.main-nav .current {
    border-bottom: 2px solid #555555;
    padding-bottom: .5rem;
    background: none;
}
.main-nav a::before {
    content: '';
}

/* Home */
.home-hero h2 {
    font-size: 3.5rem;
    margin: 0 0 2rem;
    padding: 0;
}
.home-hero p {
    width: 38vw;
}
.left {
    text-align: end;
}

/* Contents */
.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 1rem;
}
.flex-reverse {
    flex-direction: row-reverse;
}
.home-text {
    width: 100%;
    margin-bottom: 0;
}
.top_image img {
    max-width: 100%;
}

/* Footer */
.footer-nav {
    display: flex;
    justify-content: center;
}
.footer-nav li {
    margin: 0 .75rem;
    border: none;
}
.footer-nav > li + li {
    margin: 0;
}
.footer-nav a:hover {
    color: #fff;
}

/* a link */
.icon-link {
    margin: 0 5px 0 0;
     padding: 2px 35px 0 0;
     background: url(../img/global/link.png) 100%  0% no-repeat;
     background-size: 25px;
  }
}