@charset "UTF-8";

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, tt, var, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline
}

:root {
--font-primary: "Noto Sans JP", sans-serif;
--font-rounded: "M PLUS Rounded 1c", sans-serif;
--font-outfit: "Outfit", sans-serif;
--pointColor: #ff7830;
--txtColor: #3c3c3c;
}

html, body {
width: 100%;
min-height: 100%;
font-size: 62.5%;
}

body {
position: relative;
background-color: #fff;
text-align : center;
font-family: var(--font-primary);
font-weight: 500;
color: var(--txtColor);
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-text-size-adjust: 100%;
word-break: break-all;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}

.contents { display: none; }
/*
 * #container には overflow-x を指定しない。
 * position:fixed の #topHead / #globalSubNav を overflow クリッピングの祖先で
 * 包むと、iOS Safari が固定要素をビューポート固定レイヤーへ昇格できず、
 * スクロール中に固定ヘッダーが画面途中へ取り残される描画バグが発生する。
 * 横スクロール防止は body 側の overflow-x: hidden がビューポートへ伝播するため維持される。
 */

@media print, screen and (min-width:1200px) {
body {
font-size: 1.6rem;
letter-spacing: .07em;
line-height: 1.8;
}
.br-pc {
display: block;
}
.br-sp {
display: none;
}
.pc {
display: none !important;
}
.txtSmall {
font-size: 12px;
}
.blank {
margin-top: -110px;
padding-top: 110px;
}
p {
margin-bottom: 32px;
}
}

@media print, screen and (max-width:1199px) {
body {
font-size: 1.3rem;
line-height: 1.8;
letter-spacing: .03em;
}
.br-pc {
display: none;
}
.br-sp {
display: block;
}
.sp {
display: none !important;
}
.txtSmall {
font-size: 11px;
}
.taCSp {
text-align: center !important;
}
.blank {
margin-top: -118px;
padding-top: 118px;
}
p {
margin-bottom: 25px;
}
}

a:link {
color: var(--txtColor);
text-decoration: none;
}
a:visited {
color: var(--txtColor);
}
a:hover {
color: var(--pointColor);
text-decoration: none;
}
a:active {
color: var(--txtColor);
}
img {
border: 0;
max-width: 100%;
height: auto;
vertical-align: bottom;
}
button {
font-family: var(--font-primary);
}
button:focus {
outline:0;
}
*:focus {
outline: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav {
display: block
}
ol, ul {
list-style: none
}
blockquote, q {
quotes: none
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none
}
table {
border-collapse: collapse;
border-spacing: 0
}
*, *:after, *:before {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.clearfix:before, .clearfix:after {
content: '';
display: table;
}
.clearfix:after {
clear: both;
}
.taL {
text-align: left !important;
}
.taC {
text-align: center !important;
}
.taR {
text-align: right !important;
}
.taJ {
text-align: justify !important;
}
.palt {
font-feature-settings: "palt";
}

.orange {
color: var(--pointColor);
}

.red {
color: #ff3030;
}

.mt20 {
margin-top: 30px;
}

div.wpcf7 .wpcf7-spinner {
display: block;
}

input::placeholder {
color: #ccc;
}

strong {
font-weight: 700;
}

.youtube {
width: 100%;
aspect-ratio: 16 / 9;
}
.youtube iframe {
width: 100%;
height: 100%;
}

.has-text-align-left {
text-align: left !important;
}

.has-text-align-center {
text-align: center !important;
}

.has-text-align-right {
text-align: right !important;
}