@charset "UTF-8";

/* CSS Information
---------------------------------------------------------------
Site URL:http://www.daisetsu.com
File name:common_sp.css
Summary:common styles
Created:2022-08-01
--------------------------------------------------------------- */

@media screen and (max-width: 1200px) {

body {
	font-size: 14px !important;
}

/* Link */
/* ------------------------------------------------------------ */

a:link,
a:visited {
	color: #000;
	text-decoration: none;
}

a:hover,
a:active {
	color: #000;
	text-decoration: none;
}

img,
.alpha {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.alpha:hover {
	filter: alpha(opacity=50);
	opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */

em {
	font-style: normal;
}

sup {
	font-size: 66%;
	vertical-align: top;
}

sub {
	font-size: 66%;
	vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */

.indent {
	text-indent: -1em;
	margin-left: 1em;
}

/* Align */
/* ------------------------------------------------------------ */

.a_left {
	text-align: left !important;
}

.a_center {
	text-align: center !important;
}

.a_right {
	text-align: right !important;
}

/* Float */
/* ------------------------------------------------------------ */

.f_left {
	float: left;
}

.f_right {
	float: right;
}

/* Clear */
/* ------------------------------------------------------------ */

.clfx::after {
	content: '';
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

/* HR */
/* ------------------------------------------------------------ */

hr {
	height: 1px;
	margin: 60px 0;
	padding: 0;
	display: block;
	border: 0;
	border-top: 1px #e6e6e6 solid;
}

/* Center合わせ */
/* ------------------------------------------------------------ */

.c_mgn {
	margin-left: auto;
	margin-right: auto;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */

.pc_mode {
	display: none !important;
}

.sp_mode {
	display: inherit !important;
}

/* Header */
/* ------------------------------------------------------------ */

header {
	position: relative;
	z-index: 2;
}
 
header .header_area {
	background: rgba(255, 255, 255, 0);
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	position: fixed;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

header .header_area.fixed {
	background: rgba(255, 255, 255, 1) !important;
}

header .header_area > div {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .header_area > div > h1 {
	margin-left: 4vw;
}

header .header_area > div > h1 a {
	text-align: left;
	display: flex;
	align-items: center;
	position: relative;
}

header .header_area > div > h1 a::before {
	content: '';
	width: 42px;
	height: 44px;
	margin-right: 10px;
	background-image: url(../img/common/logo.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

header .header_area > div > h1 a > span > strong {
	display: block;
	margin-top: 5px;
	font-size: 22px;
	font-weight: 900;
}

header .header_area > div > div {
	margin-right: 4vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .header_area > div > div p.tel a {
	display: flex;
	align-items: center;
	position: relative;
}

header .header_area > div > div p.tel a::before {
	content: '';
	width: 45px;
	height: 48px;
	margin-right: 20px;
	background-image: url(../img/common/icon_tel.png);
	background-repeat: no-repeat;
	background-size: contain;
}

header .header_area > div > div p.tel a > span {
	font-size: 14px;
}

header .header_area > div > div p.tel a > span > strong {
	display: block;
	margin-bottom: 10px;
	font-size: 26px;
	font-weight: 900;
}

header .header_area > div > div p.btn {
	margin: 0 40px;
}

header .header_area > div > div p.btn a {
	border-radius: 30px;
	background-color: #FBB03B;
	width: 270px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .header_area > div > div p.btn a span {
	font-size: 24px;
	font-weight: 700;
	display: flex;
	align-items: center;
	position: relative;
}

header .header_area > div > div p.btn a span::before {
	content: '';
	width: 30px;
	height: 22px;
	margin-right: 10px;
	background-image: url(../img/common/icon_mail.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

header .header_area > div > div #nav_toggle {
	z-index: 99;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

header .header_area > div > div #nav_toggle p {
	text-align: center;
	font-size: 10px;
}

header .header_area > div > div .c-nav-btn {
	cursor: pointer;
	height: 40px;
	width: 40px;
	position: relative;
	background: none;
	border: none;
	transform-origin: center;
	transition: transform 0.3s;
}
header .header_area > div > div .c-nav-btn::after,
header .header_area > div > div .c-nav-btn::before {
	content: "";
	position: absolute;
	top: calc(50% - 4px);
	left: calc(50% - 4px);
	border-radius: 4px;
	width: 8px;
	height: 8px;
	display: block;
	background: #000;
	transform-origin: center;
}
header .header_area > div > div .c-nav-btn::before {
	transform: translateX(-16px);
	box-shadow: 16px 0 0 #000;
	transition: 0.3s;
}
header .header_area > div > div .c-nav-btn::after {
	transform: translateX(16px);
}
header .header_area.open > div > div .c-nav-btn {
	transform: rotate(360deg);
}
header .header_area.open > div > div .c-nav-btn::before {
	box-shadow: none;
	transform: rotate(45deg) translate(-10px, 10px);
	width: 40px;
}
header .header_area.open > div > div .c-nav-btn::after {
	transform: rotate(-45deg) translate(-10px, -10px);
	width: 40px;
}

/* Global menu */
/* ------------------------------------------------------------ */

#global_nav {
    background: rgba(255, 255, 255, 1);
    color: #fff;
	text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	visibility: hidden;
    opacity: 0;
	z-index: 9;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

#global_nav ul li a {
	display: inline-block;
    text-decoration: none;
}
 
#global_nav ul {
	width: 92vw;
	margin: 0 auto;
	display: block;
}

#global_nav ul li {
	text-align: left;
    font-size: 12px;
    display: block;
	width: 100%;
	opacity: 0;
	transform: translateX(50px);
	transition: transform 0.3s ease, opacity 0.1s ease;
}

#global_nav ul li strong {
	display: block;
	margin-top: 5px;
	color: #29ABE2;
    font-size: 18px;
	font-weight: 700;
}

#global_nav ul li:nth-of-type(n+2) {
    margin-top: 20px;
}

#global_nav ul li:nth-of-type(1) {
    transition-delay: .1s;
}

#global_nav ul li:nth-of-type(2) {
    transition-delay: .1s;
}

#global_nav ul li:nth-of-type(3) {
    transition-delay: .1s;
}

#global_nav ul li:nth-of-type(4) {
    transition-delay: .1s;
}

#global_nav ul li:nth-of-type(5) {
    transition-delay: .1s;
}

#global_nav ul li:nth-of-type(6) {
    transition-delay: .1s;
}

.open #global_nav {
    visibility: visible;
    opacity: 1;
}

.open #global_nav li {
    opacity: 1;
	transform: translateX(0);
	transition: transform 0.5s ease, opacity 0.9s ease;
}

#global_nav > div {
	width: 92vw;
	margin: 40px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#global_nav > div figure {
}

#global_nav > div figcaption h1 {
}

#global_nav > div figcaption h1 a {
	text-align: left;
	display: flex;
	align-items: center;
	position: relative;
}

#global_nav > div figcaption h1 a::before {
	content: '';
	width: 42px;
	height: 44px;
	margin-right: 10px;
	background-image: url(../img/common/logo.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

#global_nav > div figcaption h1 a > span > strong {
	display: block;
	margin-top: 5px;
	font-size: 22px;
	font-weight: 900;
}

#global_nav > div figcaption address {
	text-align: left;
	color: #000;
	font-style: normal;
	line-height: 1.7;
	margin: 20px 0 0 52px;
}

#global_nav > div figcaption address .map {
	margin-left: 10px;
	filter: brightness(0) invert(0);
}

#global_nav > div figcaption address .map img {
	width: auto;
	height: 28px;
}

/* Main */
/* ------------------------------------------------------------ */

main {
	overflow: hidden;
}

main section:not(#title):not(#overview) {
	padding: 60px 0;
}

main section .inner {
	width: 92vw;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

a[href^="tel:"] {
	pointer-events: auto;
	cursor: text;
	text-decoration: none;
}

/* title */
/* ------------------------------------------------------------ */

main:not(#index) {
	background: #fff url(../img/common/bg.png) no-repeat;
	background-size: 100% auto;
	background-position: 0 180px;
}

main:not(#index) section#title {
	height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
 
main:not(#index) section#title h2 {
	font-size: 18px;
}

main:not(#index) section#title h2 strong {
	display: block;
	font-size: 36px;
	font-weight: 900;
	margin-top: 10px;
}

main section h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	width: 92vw;
	margin: 0 auto 30px;
}

main:not(#index) section:not(#contact) h3 {
	color: #16689C;
}

main section h3::after {
	content: "";
	position: absolute;
	top: calc(50% + 25%);
	width: 100%;
	height: 2px;
	margin-left: 20px;
	padding-right: 100%;
	background-color: #FBB03B;
}

main section h3 span {
	color: #000;
    font-size: 16px;
    display: block;
	margin-bottom: 5px;
}

main section p.comment {
	line-height: 1.7;
}

/* Button */
/* ------------------------------------------------------------ */

main p.btn {
	margin-top: 30px;
}

main p.btn a {
	border-radius: 30px;
	background-color: #FBB03B;
	width: 100%;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

main p.btn a span {
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
}

/* Table */
/* ------------------------------------------------------------ */

main section .dllist {
}

main section .dllist .dlbox {
	border-bottom: 1px #032556 solid;
	width: 100%;
    display: block;
}

main section .dllist .dlbox:nth-of-type(1) {
    border-top: 1px #032556 solid;
}

main section .dllist .dlbox .dtbox {
	box-sizing: border-box;
	text-align: left;
    width: 100%;
	padding: 15px 0 0;
	display: block;
	flex-shrink: 0;
}

main section .dllist .dlbox .ddbox {
	box-sizing: border-box;
	text-align: left;
	width: 100%;
	padding: 15px 0;
	display: block;
}

main section .dllist .dlbox .wrap {
	line-height: 1.7;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

section#form .dllist .dlbox .dtbox .wrap {
	font-size: 14px;
	font-weight: 700;
    justify-content: space-between;
	align-items: center;
}

main section .dllist .dlbox .ddbox .wrap {
    flex-wrap: wrap;
}

/* Form */
/* ------------------------------------------------------------ */

main section#form .must {
	background: #FBB03B;
	color: #fff;
	font-size: 10px !important;
	line-height: 1;
	padding: 5px 10px;
	display: block;
}

main section#form span.error {
	margin-top: 5px;
}

main section#form .radio span.error {
	margin-top: 0;
}

main section#form .inner > form .dtbox .wrap span {
	font-size: 14px;
	line-height: 1;
}

main section#form span.mwform-zip-field {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main section#form input[type="text"],
main section#form input[type="tel"],
main section#form input[type="email"],
main section#form input[type="password"],
main section#form input[type="date"],
main section#form input[type="number"] {
	/*border: 1px solid #c1c1c1;*/
	border: none;
	border-radius: 3px;
	border: 1px #727171 solid;
	background: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	height: 50px;
	padding: 10px;
	box-sizing: border-box;
}

main section#form select {
	/*border: 1px solid #c1c1c1;*/
	border: none;
	border-radius: 3px;
	border: 1px #727171 solid;
	background: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	height: 50px;
	padding: 10px;
	box-sizing: border-box;
	-webkit-appearance: none;
}

main section#form textarea {
	/*border: 1px solid #c1c1c1;*/
	border: none;
	border-radius: 3px;
	border: 1px #727171 solid;
	background: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
}

main section#form input[type="file"] {
	font-size: 18px;
}

main section#form input[type="text"].zip {
	width: 45%;
	margin-left: 10px;
	margin-right: 10px;
}

main section#form select.prefecture {
	width: 45%;
	margin-bottom: 10px;
}

/*Custom Select*/
main section#form div.select {
	width: 100%;
	position: relative;
}
main section#form div.select::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-width: 0 2px 2px 0;
	border-color: #727171;
	border-style: solid;
	position: absolute;
	right: 20px;
	top: 15px;
	transform-origin: center;
	transform: rotate(45deg);
}

/*Custom CheckBox*/
main section#form .check label {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
}
main section#form .check label input[type="checkbox"] {
	position: absolute;
	z-index: 0;
	opacity: 0;
}
main section#form .check label .custom_check {
	background: #FFF;
	width: 20px;
	height: 20px;
	z-index: 1;
	border: 1px solid #FBB03B;
	border-radius: 3px;
}
main section#form .check label .custom_check::before {
	content: "";
	height: 2px;
	width: 7px;
	background: #FFF;
	position: absolute;
	transform: rotate(40deg);
	top: 11px;
	left: 5px;
	display: none;
}
main section#form .check label .custom_check::after {
	content: "";
	height: 2px;
	width: 10px;
	background: #FFF;
	position: absolute;
	transform: rotate(-50deg);
	top: 9px;
	left: 9px;
	display: none;
}
main section#form .check label input:checked + .custom_check,
main section#form .check label input:checked ~ .custom_check {
	background: #FBB03B;
}
main section#form .check label input:checked + .custom_check::before,
main section#form .check label input:checked + .custom_check::after,
main section#form .check label input:checked ~ .custom_check::before,
main section#form .check label input:checked ~ .custom_check::after {
	display: block;
}
main section#form .check label span {
	line-height: 1;
}
main section#form .check label span a {
	text-decoration: underline;
}

/*Custom radio button*/
main section#form .radio {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
main section#form .radio input[type="radio"] {
	position: absolute;
	visibility: hidden;
	width: auto;
}
main section#form .radio .mwform-radio-field-text {
	line-height: 1;
	margin-right: 20px;
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
main section#form .radio .mwform-radio-field-text::before {
	position: relative;
	left: 0;
	top: 0;
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	background: #fff;
	border: 1px solid #727171;
	box-sizing: border-box;
	border-radius: 50%;
	vertical-align: middle;
}
main section#form .radio input[type="radio"]:checked + .mwform-radio-field-text::before {
	border: 1px solid #FBB03B;
}
main section#form .radio input[type="radio"]:checked + .mwform-radio-field-text::after {
	position: absolute;
	left: 5px;
	top: 5px;
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #FBB03B;
	border-radius: 50%;
	box-sizing: border-box;
	vertical-align: middle;
}

main section#form .mwform-zip-field {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main section#form .mwform-zip-field input {
	margin: 0 10px;
}

main section#form .btn_area {
	width: 100%;
	margin: 30px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

main section#form .btn_submit {
	border-radius: 20px;
	background: #FBB03B;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2em;
	margin-right: -0.2em;
	width: 600px;
	height: 40px;
	display: block;
	cursor: pointer;
	border: none;
}

main section#form .btn_submit:hover {
	background: #FBB03B;
}

main section#form .mw_wp_form_complete p {
	line-height: 1.7;
}

/* Footer */
/* ------------------------------------------------------------ */

footer {
	background-color: #032556;
	color: #fff;
	padding: 60px 0 20px;
}

footer .inner {
	width: 92vw;
	margin: 0 auto;
	display: block;
}

footer a {
	color: #fff !important;
}

footer h1 {
	filter: brightness(0) invert(1);
}

footer h1 a {
	text-align: left;
	display: flex;
	align-items: center;
	position: relative;
}

footer h1 a::before {
	content: '';
	width: 42px;
	height: 44px;
	margin-right: 10px;
	background-image: url(../img/common/logo.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

footer h1 a > span > strong {
	display: block;
	margin-top: 5px;
	font-size: 22px;
	font-weight: 900;
}

footer address {
	text-align: left;
	font-style: normal;
	line-height: 1.7;
	margin: 20px 0 0 52px;
}

footer address .map {
	margin-left: 10px;
}

footer address .map img {
	width: auto;
	height: 28px;
}

footer nav {
}

footer nav > div > ul {
	width: 400px;
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

footer nav > div > ul li {
	width: 180px;
}

footer nav > div > ul li:nth-of-type(n+3) {
	margin-top: 20px;
}

footer nav > div > ul li a {
    font-size: 18px;
	white-space: nowrap;
	display: block;
	position: relative;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

footer nav > div > ul li a span {
	position: relative;
}

footer nav > div > ul li a span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

footer nav > div > ul li a:hover span::after {
	background: #fff;
	bottom: -3px;
}

footer nav > div > ul li a.active span::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #221815;
	position: absolute;
	bottom: -3px;
	left: 0;
}

footer nav > div > ul li:nth-of-type(7) a {
	border-radius: 20px;
	border: 1px #221815 solid;
	background-image: none;
	background-color: #fff;
    font-size: 18px;
	box-sizing: border-box;
	width: 220px;
	height: 40px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer nav > div > ul li:nth-of-type(7) a:hover {
	background: #231815;
	color: #fff !important;
}

footer nav > ul {
	width: 100%;
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer nav > ul li {
	width: 48%;
}

footer .copyright {
	text-align: center;
	font-size: 10px;
	margin: 30px auto 0;
}
	
	
footer img {width: 98%}


/* fadein */
/* ------------------------------------------------------------ */

.fadein {
	opacity: 0;
	transform: translate(0, 60px);
	transition: all 700ms;
}

.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

/* トップページに戻るボタン */
/* ------------------------------------------------------------ */

.pagetop {
	width: 30px;
	display: none;
	position: fixed;
	bottom: 25px;
	right: 4vw;
	z-index: 1;
}

.pagetop a {
	display: block;
}

.pagetop img {
	width: 100%;
	height: auto;
}

}