/*========== common style ==========*/
@charset "utf-8";
/* import font from gg font*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* import font from gg font*/
@font-face {
    font-family: 'Quasimoda';
    src: url('../fonts/Quasimoda-SemiBold.otf') format('opentype');
}

.font-quasimoda {
    font-family: 'Quasimoda', sans-serif;
    font-style: normal;
    font-weight: 500;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

html.hidden {
    overflow-y: hidden;
}

body {
    font-weight: 400;
    color: #3177ab;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.8;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN W3", "Kozuka Gothic Pr6N", "Helvetica Neue", "Helvetica", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

a {
    text-decoration: none;
    color: unset;
    transition: 0.2s ease;
}

a:hover {
    text-decoration: none;
    opacity: 0.8;
}

ul,
li {
    list-style-type: none;
    margin: 0px;
}

img {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    transition: 0.2s ease;
}

svg {
    transition: 0.2s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input,
select,
textarea,
button,
pre {
    font-family: "Noto Sans JP", sans-serif;
}

.container {
    max-width: 1032px;
    padding: 0 16px;
    margin: 0 auto;
    transition: 0.2s;
}

.container.--1040 {
    max-width: 1070px;
}

.container.--980 {
    max-width: 1010px;
}

.sp {
    display: none !important;
}

.pc {
    display: block !important;
}

.alignleft {
    float: left;
    margin: 0 10px 10px 0;
}

.alignright {
    float: right;
    margin: 0 0 10px 10px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.pd-t-0 {
    padding-top: 0px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.clear:after {
 content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clear {
 display: inline-table;
 overflow: hidden;
}

/* mac \*/
* html .clear {
 height: 1%;
}
.clear {
 display: block;
}
/* macend */


@media only screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }
}

.cl-white {
    color: #ffffff !important;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-stretch {
    align-items: stretch;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.cl-blue {
    color: #006bb1;
}

.cl-note {
    color: #f21111;
}

/* =====start - header===== */
header {
    position: relative;
    overflow: hidden;
}

.logo img {
    max-width: 190px;
}

.header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px 26px;
}

.menu {
    display: flex;
    align-items: center;
    column-gap: 30px;
    padding-right: 20px;
}

.menu li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0px;
    white-space: nowrap;
    position: relative;
    transition: 0.25s;
}

.menu li a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #3177ab;
    top: 100%;
    left: 0;
    transform: scale(0);
    opacity: 0;
    transition: 0.25s;
}

.menu li a:hover::after {
    transform: scale(1);
    opacity: 1;
}

}

/* =====end - header===== */

/* =========start - footer========= */
footer {
    position: relative;
    overflow: hidden;
}

.phone-block {
    background-color: #3177ab;
    color: #fff;
    padding: 50px 0px 55px;
    letter-spacing: 1px;
				text-align: center;
}

.phone-block .txt {
    font-size: 20px;
}

.tel__phone {
    font-size: 46px;
    line-height: 1;
    letter-spacing: 1px;
    padding: 6px 0px;
				display: inline-block;
}

.tel__phone img {
    margin-top: 4px;
				margin-right: 8px;
				display: inline;
}

.copyright {
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    color: #3177ab;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

/* =========end - footer========= */

/* css button back to top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 26px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #3177ab;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    color: #fff;
    font-size: 12px;
    padding-bottom: 10px;
    box-shadow: 0px 0px 7px rgba(255, 255, 255, 0.7);
}

#back-to-top span {
    transform: rotate(-90deg);
    font-size: 16px;
    font-weight: 300;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    opacity: 0.7;
}

/* css button back to top */

.hamburger,
.entry-link-sp {
    display: none;
}

.header-nav .wrap-contact {
    display: none;
}

/*=========== Responsive style ===========*/
/*=========== Responsive style ===========*/

.fixbtn {
    position: fixed;
    right: 26px;
    top: 104px;
	text-align:  center;
	z-index:  200;
}

.entry-link {
	background-color: #3177ab;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 15px;
    width: 174px;
    height: 174px;
    border-radius: 50%;
    padding: 52px 10px 20px;
	position: relative;
    z-index: 200;
    box-shadow: 0px 0px 7px rgba(255, 255, 255, 0.7);
	display: block;
}

.entry-link .__en {
    text-transform: uppercase;
    display: block;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 2px;
    padding-bottom: 2px;
}

.entry-link::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 30px;
    background-color: #fff;
    left: 50%;
    top: 68%;
}

.insta {
	display: inline-block;
	margin: 20px 0 0;
}

.insta img {
	width: 60px;
	height: 60px;
}


@media only screen and (max-width: 1600px) {
    .entry-link {
        width: 160px;
        height: 160px;
        display: block !important;
	}

    .entry-link .__en {
        font-size: 26px;
    }
}

@media only screen and (max-width: 1400px) {
    .menu {
        padding-right: 0px;
    }
}

@media only screen and (max-width: 1200px) {
.fixbtn {
    position: fixed;
        top: 130px;
        right: 10px;
	text-align:  center;
	z-index:  200;
}
	.entry-link {
        /* display: none; */
        width: 100px;
        height: 100px;
        font-size: 10px;
        padding: 26px 5px 5px;

    }

    .entry-link .__en {
        font-size: 18px;
    }

    .entry-link::after {
        height: 15px;
    }

    .menu {
        column-gap: 24px;
        display: block;
        padding: 15px 0px;
    }

    .header-inner {
        padding: 12px 16px 10px;
        align-items: center;
    }

    .logo img {
        max-width: 140px;
    }

    .header-nav {
        z-index: -1;
        position: fixed;
        width: 100%;
        top: 115px;
        width: 100%;
        left: 0px;
        right: 0px;
        background-color: #3177ab;
        padding: 0px;
        row-gap: 0px;
        flex: unset;
        height: calc(100vh - 115px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        z-index: -1;
        transform: scaleY(0.7);
        transition: 0.4s ease-in;
        transform-origin: top;
        border: 0px;
        padding-bottom: 60px;
    }

    .header-nav.show {
        z-index: 1000;
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
    }

    .menu li a {
        font-size: 16px;
        color: #fff;
        text-align: center;
        padding: 10px 15px;
    }

    .entry-link-sp {
        display: block;
        letter-spacing: 1px;
        text-align: center;
        color: #3177ab;
        font-size: 14px;
        background-color: #fff;
        max-width: 280px;
        margin: 0 auto;
        font-weight: 500;
        padding: 5px 10px;
    }

    .entry-link-sp .__en {
        display: block;
        font-size: 34px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-align: center;
        line-height: 1.2;
    }

    .hamburger {
        display: block;
        padding: 3px 6px;
        cursor: pointer;
        width: 45px;
        border-radius: 4px;
        background-color: #3177ab;
        position: relative;
        z-index: 20000;
    }

    .hamburger span {
        height: 3px;
        background-color: #fff;
        border-radius: 3px;
        display: block;
        margin: 6px 0px;
        transition: 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(40deg) translate(2.5px, -4px);
        transform-origin: top left;
        transition-delay: 0.2s;
    }

    .hamburger.active span:nth-child(2) {
        transform: translateX(8px);
        opacity: 1;
        visibility: hidden;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-40deg) translate(2.5px, 4px);
        transform-origin: bottom left;
        transition-delay: 0.2s;
    }
}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 768px) {
    .logo img {
        max-width: 110px;
    }

    .header-nav {
        top: 94px;
        height: calc(100vh - 94px);
    }

    .phone-block .txt {
        font-size: 18px;
    }

    .tel__phone {
        font-size: 36px;
    }

    .tel__phone img {
        max-width: 28px;
    }
    
    .time-open {
        font-size: 12px;
    }

    .phone-block {
        padding: 45px 0px 50px;
    }

    .copyright {
        padding: 15px 10px;
        font-size: 12px;
    }

    #back-to-top {
        right: 10px;
        bottom: 10px;
        width: 60px;
        height: 60px;
        font-size: 9px;
        padding-bottom: 8px;
    }

    #back-to-top span {
        line-height: 1.2;
    }

	.fixbtn {
    position: fixed;
        right: 10px;
        top: 160px;
	text-align:  center;
	z-index:  200;
}
	
    .entry-link {


        width: 60px;
        height: 60px;
        font-size: 8px;
        padding-top: 15px;
        padding-left: 0;
        padding-right: 0px;
    }

    .entry-link .__en {
        font-size: 12px;
        padding-bottom: 0px;
    }

    .entry-link::after {
        height: 10px;
    }
}

@media only screen and (max-width: 479px) {}

@media only screen and (max-width: 360px) {}

@media only screen and (max-width: 320px) {

    html,
    body {
        min-width: 320px;
        overflow-x: hidden;
    }
}

/*=========== Responsive style ===========*/


/*second--------------------------------------------------*/

#second {
	color: #333;
}

#second .ttl {
	position: relative;
	height: 160px;
}

#second .ttl:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 64, 128, .8);
	content: "";
}

#second .ttl h1 {
	position: relative;
	color: #fff;
	font-size: 40px;
	z-index: 10;
	max-width: 1032px;
	margin: 0 auto;
	top: 50%;
 transform: translateY(-50%);
 -webkit-transform: translateY(-50%);
 -ms-transform: translateY(-50%);
}

#second .ttl span {
	margin-left: 20px;
	font-size: 24px;
}

#second .inner {
	max-width: 1032px;
	margin: 0 auto;
	padding: 60px 20px;
}

#second .inner h2 {
	margin: 0 0 40px;
	font-size: 40px;
	letter-spacing: 0.08em;
}

#second .inner h3 {
	margin: 0 0 10px;
	font-size: 28px;
}

#second .content {
	max-width: 1032px;
	margin: 0 auto;
	padding: 40px 20px;
}

#second .content h2 {
	position: relative;
	margin: 0 0 30px;
	padding: 0.4em 0.4em 0.6em;
	line-height: 1.4;
	background-color: #D6E4EE;
}

#second .content h2:before {
 position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border-right: 2px solid #3177ab;
  border-bottom: 2px solid #3177ab;
}

#second .content a {
	text-decoration: underline;
	color: #3177ab;
}

#second .content p {
	margin: 0 0 40px;
}

#second .content img {
	display: inline-block;
	width: auto;
	max-width: none;
}

#second .content img.alignright {
	float: right;
	margin: 0 0 20px 20px;
}


#second .content .btnWrap .btn {
	margin: 0 auto;
	text-decoration: none;
}

#second .content .btnWrap .btn:hover {
    color: #FFF;
}

#second .pager_wrap {
	position: relative;
	overflow: hidden;
	margin: 20px 0 60px;
}

#second .pager_wrap ul.pager {
	position: relative;
	left: 50%;
	float: left;
}

#second .pager_wrap ul.pager li {
	position: relative;
	left: -50%;
	float: left;
}

#second .pager_wrap ul.pager {
	margin: 0;
	padding: 0;
	list-style: none;
}

#second .pager_wrap ul.pager li {
	display: inline;
	min-width: 20px;
	margin: 2px;
	padding: 0;
	background-color: #FFF;
	text-align: center;
	border: 1px solid #3C88BB;
	text-indent: 0;
}

#second .pager_wrap ul.pager li a {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	border: none;
}

#second .pager_wrap ul.pager li::before {
content: "";
margin-right: 0;
}
#second .pager_wrap ul.pager li.active {
	background-color: #3C88BB;
	display: block;
	padding: 10px 15px;
	color: #FFFFFF;
}

#second .pager_wrap ul.pager li.active a:link, #second .pager_wrap ul.pager li.active a:visited,
#second .pager_wrap ul.pager li.active a:hover, #second .pager_wrap ul.pager li.active a:active {
	color: #FFFFFF !important;
}

#second .pager_wrap ul.pager li a:hover {
	color: #000;
	background-color: #B4D3E7;
}



@media only screen and (max-width: 1032px) {

#second .ttl {
	height: 120px;
}

#second .ttl h1 {
	font-size: 30px;
}

#second .ttl h1 span {
	font-size: 20px;
}

#second .content img.alignright {
	float: none;
	display: block;
	margin: 0 auto 20px;
}

#second .content h2 {
	font-size: 20px;
}

#second .inner {
	max-width: none;
	width: 100%;
}

}


@media only screen and (max-width: 768px) {

#second .ttl h1 {
	font-size: 26px;
}


}

