@charset "utf-8";

/*
Theme Name: NOS ServerManager LP
Theme URI:
Description:
*/


/* ========================================
■ 必須設定
======================================== */

/* reset
----------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body { line-height:1; }
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display:block; }
blockquote, q { quotes:none; }
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
    justify-content:
}
h1,
h2,
h3,
h4,
h5,
h6 { font-weight: normal; }
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del { text-decoration: line-through; }
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
th { font-weight: normal; }
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #ccc;
    margin:1em 0;
    padding:0;
}
input, select, textarea, img { vertical-align:middle; }
ul, dl, ol { list-style: none; }


/* 共通設定
----------------------------- */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    color: #000;
    line-height: 1.8;
    background: #fff;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
}

a {
    color: #0033cc;
    text-decoration: underline;
    transition: 0.2s ease;
}
a:hover {
    text-decoration: none;
    transition: 0.2s ease;
}
a::before, a:hover::before,
a::after, a:hover::after {
    transition: 0.2s ease;
}

img,
video,
object {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: none;
}

/* ========================================
■ ページトップボタン
======================================== */
#page-top {
    position: fixed;
    right: 20px;
}
#page-top a {
    display: block;
    width: 44px;
    height: 44px;
    color: #fff;
    text-align: center;
    line-height: 44px;
    background: rgba(0,0,0, 0.25);
    border-radius: 50%;
}
#page-top a:hover { background: rgba(0,0,0 ,0.5); }

/* ========================================
■ General
======================================== */
.wrap {
    position: relative;
    width: 1100px;
    margin: 0 auto;
}

.hover:hover { opacity: 0.9; }

table.tbl-block,
table.tbl-block tbody,
table.tbl-block tr,
table.tbl-block th,
table.tbl-block td {
    display: block;
    text-align: left;
}

i, em { font-style: normal; }

/* 圏点 */
.kenten {
    padding: 0.3em 0;
    background-repeat: repeat-x;
    background-size: 1em 0.2em;
    background-position: top left;
    background-image: radial-gradient(0.2rem 0.2rem at center center, #a3d900 95%, transparent);
    font-feature-settings: normal;
    letter-spacing: normal;
}
.kenten-half {
    padding: 0.3em 0;
    background-repeat: repeat-x;
    background-size: 0.67em 0.2em;
    background-position: top left;
    background-image: radial-gradient(0.2rem 0.2rem at center center, #a3d900 95%, transparent);
    font-feature-settings: normal;
    letter-spacing: normal;
}

/* 黄色 ○ 吹き出し */
.balloon-y {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffc837;
    width: 110px;
    height: 110px;
    color: #282828;
    font-size: 1.563rem;
    font-weight: bold;
    line-height: 1.12;
    text-align: center;
    border-radius: 50%;
    position: relative;
}
.balloon-y::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: solid 10px #ffc837;
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
    transform: rotate(-45deg);
    position: absolute;
    right: 10px;
    bottom: 10px;
}

/* 緑 ○ 吹き出し */
.balloon-g {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a3d900;
    width: 64px;
    height: 64px;
    color: #282828;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.12;
    text-align: center;
    border-radius: 50%;
    position: relative;
}
.balloon-g::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: solid 10px #a3d900;
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
    transform: rotate(45deg);
    position: absolute;
    left: 3px;
    bottom: 3px;
}

/* マーカー */
.marker {
    background: rgba(255, 200, 55);
}

/* 文字色 */
.font-green { color: #bffe00; }

/* フォント */
.sawarabi { font-family: "Sawarabi Mincho"; }

/* form reset */
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    font-size: 1rem;
}
select::-ms-expand {
    display: none;
}

input[type='text'],
input[type='tel'],
input[type='email'],
textarea {
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    font-size: 1rem;
}

/* placeholder */
#form :placeholder-shown { color: #ccc; }
#form ::-webkit-input-placeholder { color: #ccc; }/* Google Chrome, Safari, Opera 15+, Android, iOS */
#form :-moz-placeholder { color: #ccc; opacity: 1; }/* Firefox 18- */
#form ::-moz-placeholder { color: #ccc; opacity: 1; }/* Firefox 19+ */
#form :-ms-input-placeholder { color: #ccc; }/* IE 10+ */

/* mailform pro reset */
#form .must {
    display: inline-block;
    margin: 0;
    padding: 0;
    border: none;
    text-shadow: none;
    font-size: 1em;
    float: none;
    border-radius: 0;
    box-shadow: none;
}
#form input[type='text'],
#form input[type='email'],
#form input[type='tel'],
#form select,
#form textarea {
    box-shadow: none;
    margin: 0;
    max-width: none;
}
#form textarea {
    width: 100% !important;
    max-width: none;
}
div.mfp_err {
    background: none;
    margin: 0;
    padding: 0;
}
#form *[type='submit'] {
    margin: 0;
    padding: 0;
    border: none;
    text-shadow: none;
}
#form *[type='submit']:hover {
    box-shadow: none;
}

/* ========================================
■ header
======================================== */
header .wrap {
    padding: 25px 0;
    text-align: center;
}

/* ========================================
■ gnav
======================================== */
#gnav {
    background: #0089c6;
    width: 100%;
    transition: 0.2s ease;
    position: relative;
    z-index: 800;
}
#gnav .wrap {
    padding: 10px 0;
}
#gnav ul {
    display: flex;
    justify-content: center;
}
#gnav ul li:nth-of-type(n+2) {
    border-left: solid 1px #fff;
}
#gnav a {
    padding: 0 25px;
    color: #fff;
    text-decoration: none;
}
#gnav a:hover {
    text-decoration: underline;
}

/* 固定時 */
#gnav.fixed {
    position: fixed;
    top: 0;
}
#gnav.hidden {
    top: -50px;
    transition: 0.2s ease;
}

/* ========================================
■ keyv
======================================== */
#keyv {
    position: relative;
}
#keyv::before {
    content: '';
    display: block;
    background: url(img/keyv_bg01.png) no-repeat center top #00469a;
    width: 100%;
    min-width: 1100px;
    height: 400px;
    position: absolute;
    left: 0;
    top: 0;
}
#keyv .wrap {
    padding: 30px 0 65px;
    color: #fff;
    text-align: center;
}

/* 見出し
----------------------------- */
#keyv h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
#keyv h1 > span:nth-of-type(2) {
    padding-top: 25px;
    padding-left: 5px;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-align: center;
}
#keyv h1 > span:nth-of-type(2) small {
    display: block;
    font-size: 23px;
    letter-spacing: 0.1em;
}
#keyv h1 > span:nth-of-type(1) {
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.025em;
}
#keyv h1 > span:nth-of-type(1) strong {
    font-size: 110px;
    letter-spacing: -0.025em;
    font-weight: normal;
}
#keyv h1 > span:nth-of-type(1) small {
    font-size: 65px;
    letter-spacing: -0.04em;
}

#keyv h1 .kenten {
    padding: 0 0;
    background-size: 1em 0.1em;
    background-image: radial-gradient(0.3rem 0.3rem at center center, #a3d900 95%, transparent);
}
#keyv h1 .kenten-half {
    padding: 0 0;
    background-size: 0.64em 0.1em;
    background-image: radial-gradient(0.3rem 0.3rem at center center, #a3d900 95%, transparent);
}

/* 見出し下
----------------------------- */
#keyv p {
    margin: 10px 0 30px;
    font-size: 24px;
    letter-spacing: 0.1em;
}

/* 見出し上
----------------------------- */
#keyv .ttl {
    margin: 0 0 30px;
    font-size: 26px;
    letter-spacing: 0.1em;
}
#keyv .ttl .strong {
    font-size: 42px;
    text-decoration: underline;
    text-decoration-color: #a3d900;
}

/* ========================================
■ cta01
======================================== */
.cta01 {
    background: #08297a;
}
.cta01 .wrap {
    height: 340px;
    padding: 19px 50px 0 600px;
    color: #fff;
}

/* 写真
----------------------------- */
.cta01 figure {
    width: 682px;
    position: absolute;
    right: 50%;
    top: 0;
}

/* 本文
----------------------------- */
.cta01 h2 {
    padding: 2px 0;
    text-align: center;
    border: solid 1px #fff;
    border-radius: 8px;
}
.cta01 .message {
    margin-top: 10px;
    font-size: 1.2rem;
}
.cta01 .message p {
    line-height: 30px;
}
.cta01 .message p:nth-of-type(1) {
    font-size: 1.438rem;
    letter-spacing: 0.05em;
}
.cta01 h3 {
    margin-top: 0;
    letter-spacing: 0.075em;
}
.cta01 h3 + p {
    font-size: 3.125rem;
    letter-spacing: 0.025em;
    line-height: 1;
}
.cta01 h3 + p img {
    margin-right: 20px;
    vertical-align: top;
}
.cta01 a {
    display: block;
    background: url(img/cta01_ico02.png) no-repeat 95% center #59c204;
    margin-top: 10px;
    padding: 10px 0;
    color: #fff;
    font-size: 1.375rem;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
}
.cta01 .note {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-top: 10px;
}

/* ========================================
■ section-01
======================================== */
#section-01 .wrap {
    background: url(img/sec01_bg01.png) no-repeat center bottom;
    padding: 40px 0 700px;
    text-align: center;
}

/* 見出し */
#section-01 h2 {
    font-size: 2.25rem;
    line-height: 1.25;
}

/* トラブル一覧 */
#section-01 ol li {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 230px;
    height: 230px;
    padding-top: 10px;
    color: #445462;
    font-weight: bold;
    letter-spacing: 0.01em;
    border: solid 3px #445462;
    border-radius: 50%;
    counter-increment: trouble;
    position: absolute;
    left: 100px;
    top: 145px;
}
#section-01 ol li::before {
    content: counter(trouble);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #445462;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 1.250rem;
    border-radius: 50%;
    position: absolute;
    left: 30px;
    top: -10px;
}
#section-01 ol li:nth-of-type(2) {
    left: 347px;
    top: 185px;
}
#section-01 ol li:nth-of-type(3) {
    left: 593px;
    top: 145px;
}
#section-01 ol li:nth-of-type(4) {
    left: 840px;
    top: 185px;
}
#section-01 .strong {
    background: linear-gradient(transparent 60%, #ffc837 60%);
}

/* ========================================
■ section-02-body
======================================== */
#section-02-body {
    background: url(img/sec02-body_bg01.png) no-repeat left bottom;
    padding: 40px 0 0;
}

/* 見出し */
#section-02-body h2 {
    font-size: 2.25rem;
    text-align: center;
}

/* リスト */
#section-02-body ul {
    margin: 45px 0 0 350px;
    font-size: 1rem;
}
#section-02-body ul li {
    padding-left: 50px;
    text-indent: -50px;
}
#section-02-body ul li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    background: url(img/sec02-body_ico01.png) no-repeat center center;
    background-size: 20px auto;
    width: 20px;
    height: 20px;
    margin-right: 20px;
    position: relative;
    top: 5px;
}
#section-02-body ul li:nth-of-type(n+2) {
    margin-top: 20px;
}

/* ========================================
■ section-02-foot
======================================== */
#section-02-foot {
    background: #00469a;
    position: relative;
}
#section-02-foot::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-bottom: solid 10px #00469a;
    border-left: solid 7px transparent;
    border-right: solid 7px transparent;
    position: absolute;
    top: -10px;
    left: calc(50% - 7px);
}
#section-02-foot .wrap {
    padding: 60px 0 50px;
    color: #fff;
    text-align: center;
}

/* 吹き出し */
#section-02-foot .balloon-y {
    position: absolute;
    left: 195px;
    top: -55px;
}

/* 見出し */
#section-02-foot p {
    font-size: 1.6rem;
    line-height: 1.28;
    letter-spacing: 0.05em;
}

/* ボタン */
#section-02-foot a {
    display: block;
    background: url(img/cta01_ico02.png) no-repeat 95% center rgba(255, 255, 255, 0);
    width: 380px;
    margin: 20px auto 0;
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    border: solid 1px #fff;
    border-radius: 10px;
}
#section-02-foot a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* ========================================
■ section-03
======================================== */
#section-03 .wrap {
    padding: 55px 0;
}

/* 見出し */
#section-03 h2 {
    margin-bottom: 55px;
    font-size: 2.250rem;
    text-align: center;
    line-height: 1.27;
}

/* 問題と施策
----------------------------- */
/* 問題 */
#section-03 .trouble {
    width: 780px;
    margin: 0 auto;
    position: relative;
}
#section-03 .trouble::before {
    content: '';
    display: block;
    background: linear-gradient(-135deg, #eee 49%, transparent 51%);
    width: 10px;
    height: 8px;
    position: absolute;
    left: -10px;
    top: 20px;
}
#section-03 .cope + .trouble {
    margin-top: 60px;
}
#section-03 .trouble figure {
    text-align: center;
    position: absolute;
    left: -80px;
    top: 0;
}
#section-03 .trouble figcaption {
    margin-top: 5px;
    font-size: 0.75rem;
    line-height: 1.33;
}
#section-03 .trouble p {
    display: inline-block;
    background: #eee;
    padding: 10px 30px;
    font-feature-settings: normal;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    border-radius: 10px;
}

/* 施策 */
#section-03 .cope {
    background: #d9fc6f;
    width: 780px;
    margin: 20px auto 0;
    padding: 10px 30px;
    border-radius: 10px;
    position: relative;
}
#section-03 .cope::before {
    content: '';
    display: block;
    background: linear-gradient(135deg, #d9fc6f 49%, transparent 51%);
    width: 10px;
    height: 8px;
    position: absolute;
    right: -10px;
    top: 20px;
}
#section-03 .cope figure {
    text-align: center;
    position: absolute;
    right: -90px;
    top: 0;
}
#section-03 .cope figcaption {
    margin-top: 5px;
    font-size: 0.75rem;
    line-height: 1.33;
}
#section-03 .cope figcaption small {
    display: block;
    font-size: 0.625rem;
}
#section-03 .cope p {
    font-feature-settings: normal;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}
#section-03 .cope p:nth-of-type(n+2) {
    margin-top: 10px;
}
#section-03 .cope p small {
    display: inline-block;
    font-size: 1rem;
    line-height: 1.6;
}

.add-section-01 .wrap {
    width: 780px;
    padding: 0 0 55px;
}
.add-section-01 .wrap p {
    font-feature-settings: normal;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 30px;
}


/* ========================================
■ add-section-02
======================================== */
.add-section-02 {
    background: #00469a;
    position: relative;
}
.add-section-02 .wrap {
    padding: 70px 0 60px;
    color: #fff;
    text-align: center;
}

/* 吹き出し */
.add-section-02 .balloon-y {
    position: absolute;
    left: 195px;
    top: -55px;
}

/* 見出し */
.add-section-02 p {
    font-size: 1.2rem;
    line-height: 1.28;
    letter-spacing: 0.05em;
}
.add-section-02 p .strong {
    font-size: 1.55rem;
}
.add-section-02 p .strong2 {
    font-size: 2.5rem;
    margin-top: 40px;
    display: block;
}
/* ボタン */
.add-section-02 a {
    display: block;
    background: url(img/cta01_ico02.png) no-repeat 95% center rgba(255, 255, 255, 0);
    width: 380px;
    margin: 20px auto 0;
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    border: solid 1px #fff;
    border-radius: 10px;
}
.add-section-02 a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}


/* ========================================
■ section-04-body
======================================== */
#section-04-body .wrap {
    padding: 280px 0 80px;
    background: url(img/sec03_bg01.png) no-repeat center top 30px;
}

/* 見出し周り */
#section-04-body .balloon-y {
    position: absolute;
    left: 50px;
    top: 170px;
}
#section-04-body h2 {
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 0.05em;
}

/* 3つのノウハウ
----------------------------- */
#section-04-body .knowhow-wrap {
    margin: 50px 80px 0;
}
#section-04-body .knowhow:nth-of-type(n+2) {
    margin-top: 80px;
}

/* テキスト */
#section-04-body .knowhow-content {
    display: flex;
}
#section-04-body .knowhow-content figure {
    flex-shrink: 0;
    margin-right: 30px;
}
#section-04-body .knowhow-content h3 {
    padding: 30px 0 0 40px;
    font-size: 1.45rem;
    position: relative;
}
#section-04-body .knowhow-content h3 i {
    display: block;
    background: url(img/sec04-body_bg01.png) no-repeat right bottom;
    padding: 0 20px 20px 0;
    font-size: 3.125rem;
    font-style: italic;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0;
}
#section-04-body .knowhow-content p {
    letter-spacing: 0.05em;
    line-height: 2.18;
}

/* 偶数番 */
#section-04-body .knowhow:nth-of-type(2n) .knowhow-content {
    flex-direction: row-reverse;
}
#section-04-body .knowhow:nth-of-type(2n) .knowhow-content figure {
    margin-right: 0;
    margin-left: 30px;
}

/* 対応実績一覧 */
#section-04-body .knowhow h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
	margin-bottom: 20px;
}
#section-04-body .knowhow h4::before,
#section-04-body .knowhow h4::after {
    content: '';
    display: block;
    background: #000;
    width: 50px;
    height: 1px;
    margin: 0 10px;
}
#section-04-body .knowhow-records {
    background: #eee;
    margin-top: 25px;
    padding: 40px 40px 30px;
    letter-spacing: 0.05em;
    border-radius: 10px;
}
#section-04-body .knowhow-records h5 {
    padding-left: 15px;
    font-size: 1.25rem;
    font-weight: bold;
	border-left: 4px solid #000;
}
#section-04-body .knowhow-records.zisseki-ichiran h5 {
    padding: 5px;
    font-size: 1.25rem;
    font-weight: bold;
	background-color: #08297a;
	color: #fff;
	text-align: center;
	border: none;
}
#section-04-body .knowhow-records h5:nth-of-type(n+2) {
    margin-top: 25px;
}
#section-04-body .knowhow-records p {
    padding-top: 15px;
}
#section-04-body .knowhow-records.zisseki-ichiran p {
    padding: 15px 30px;
    background-color: #fff;
}
#section-04-body .knowhow .note {
    margin-top: 25px;
    margin-bottom: 15px;
}
/* 対応実績一覧 開閉部 */
.records-open {
    display: block;
    background: #434343;
    width: 380px;
    margin: 30px auto 0;
    padding: 10px 0;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}
.records-open::after {
    content: '';
    display: block;
    background: url(img/sec04-body_bg02.png) no-repeat center center;
    width: 12px;
    height: 5px;
    position: absolute;
    right: 20px;
    top: 42%;
}
.records-open.open::after {
    transform: rotate(180deg);
}
.records-sub {
    height: auto;
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    transition: ease 0.4s;
}
.records-sub.open {
    max-height: none;
    padding-top: 25px;
    transition: ease 0.4s;
}

/* ========================================
■ section-04-foot
======================================== */
#section-04-foot {
    background: #00469a;
    position: relative;
}
#section-04-foot::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-bottom: solid 10px #00469a;
    border-left: solid 7px transparent;
    border-right: solid 7px transparent;
    position: absolute;
    top: -10px;
    left: calc(50% - 7px);
}
#section-04-foot .wrap {
    padding: 35px 0 30px;
    color: #fff;
    text-align: center;
}

/* 吹き出し */
#section-04-foot .balloon-y {
    position: absolute;
    left: 125px;
    top: -55px;
}

/* 見出し */
#section-04-foot p:nth-of-type(1) {
    font-size: 1.563rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
}
#section-04-foot p:nth-of-type(2) {
    margin-top: 15px;
    font-size: 2.5rem;
}

/* ========================================
■ section-05
======================================== */
#section-05 .wrap {
    padding: 60px 0 90px;
}

/* 見出し周り */
#section-05 .balloon-y {
    position: absolute;
    left: 105px;
    top: -45px;
}
#section-05 h2 {
    font-size: 2.25rem;
    line-height: 1.27;
    letter-spacing: 0.05em;
    text-align: center;
}

/* お客様の声
----------------------------- */
#section-05 .voice-wrap {
    margin: 55px 80px 0;
}
#section-05 .voice {
    display: flex;
}
#section-05 .voice:nth-of-type(n+2) {
    margin-top: 60px;
}
#section-05 .voice figure {
    flex-shrink: 0;
}

/* 本文 */
#section-05 .voice-text {
    margin-left: -20px;
}
#section-05 .voice-text h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    letter-spacing: 0.075em;
}
#section-05 .voice-text h3::before,
#section-05 .voice-text h3::after {
    content: '';
    display: block;
    background: #000;
    width: 100px;
    height: 1px;
}
#section-05 .voice-text h4 {
    margin: 10px 0 15px;
    font-size: 1.875rem;
    text-align: center;
    letter-spacing: 0.075em;
}
#section-05 .voice-text p {
    margin: 0 10px;
    font-feature-settings: normal;
    letter-spacing: 0.001em;
}
#section-05 .voice-text p:nth-of-type(n+2) {
    margin-top: 10px;
}

/* 偶数番 */
#section-05 .voice:nth-of-type(2n) {
    flex-direction: row-reverse;
}
#section-05 .voice:nth-of-type(2n) .voice-text {
    margin-left: 0;
    margin-right: -20px;
}

/* ========================================
■ section-06
======================================== */
#section-06 {
    background: #f9f9f9;
}
#section-06 .wrap {
    background: url(img/sec03_bg01.png) no-repeat center bottom;
    padding: 55px 0 290px;
}

/* 見出し周り */
#section-06 .balloon-y {
    position: absolute;
    left: 305px;
    top: -40px;
}
#section-06 h2 {
    font-size: 2.25rem;
    letter-spacing: 0.05em;
    text-align: center;
}

/* ご案内の流れ
----------------------------- */
#section-06 .flow {
    margin: 50px 80px 0 200px;
}
#section-06 .step {
    display: flex;
    align-items: center;
    position: relative;
}
#section-06 .step:nth-of-type(n+2) {
    margin-top: 75px;
}
#section-06 .step:nth-of-type(n+2)::before {
    content: '';
    display: block;
    background: url(img/sec06_bg01.png) no-repeat center center;
    width: 88px;
    height: 54px;
    position: absolute;
    left: 135px;
    top: -70px;
}
#section-06 .step:nth-of-type(2n+1)::before {
    transform: scale(-1,1);
}

/* 番号 */
#section-06 .step > i {
    display: block;
    width: 235px;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
}

/* 本文 */
#section-06 .step-text {
    position: relative;
}
#section-06 .step-text .balloon-g {
    position: absolute;
    left: 250px;
    top: -35px;
}
#section-06 .step3 .step-text .balloon-g {
    left: 330px;
}
#section-06 .step-text h3 {
    font-size: 1.563rem;
    letter-spacing: 0.05em;
}
#section-06 .step-text p {
    margin-top: 10px;
    letter-spacing: 0.05em;
    width: 600px;
}

/* ========================================
■ section-07
======================================== */
#section-07 {
    background: #00469a;
}
#section-07 .wrap {
    padding: 45px 0 40px;
    color: #fff;
    text-align: center;
}
#section-07 .balloon-y {
    position: absolute;
    left: 85px;
    top: -60px;
}
#section-07 h2 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
}
#section-07 p {
    margin-top: 15px;
    font-size: 1.125rem;
    line-height: 1.9;
}

/* ========================================
■ cta02
======================================== */
.cta02 {
    background: #08297a;
}
.cta02 .wrap {
    padding: 40px 80px;
    color: #fff;
}

/* 本文
----------------------------- */
.cta02 h2 {
    padding: 5px 0;
    text-align: center;
    border: solid 1px #fff;
    border-radius: 8px;
}
.cta02 h2 + p {
    margin-top: 10px;
    font-size: 1.438rem;
    letter-spacing: 0.03em;
}
.cta02-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
}
.cta02-text h3 {
    letter-spacing: 0.075em;
}
.cta02-text h3 + p {
    font-size: 3.125rem;
    letter-spacing: 0.025em;
    line-height: 1;
}
.cta02-text h3 + p img {
    margin-right: 20px;
    vertical-align: top;
}
.cta02 a {
    display: block;
    background: url(img/cta01_ico02.png) no-repeat 95% center #59c204;
    width: 50%;
    padding: 20px 0;
    color: #fff;
    font-size: 1.375rem;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
}

/* ========================================
■ section-08
======================================== */
#section-08 .wrap {
    padding: 50px 0 90px;
}
#section-08 h2 {
    font-size: 2.25rem;
    letter-spacing: 0.05em;
    line-height: 1.27;
    text-align: center;
}
#section-08 h2 + figure {
    margin: 45px 0 20px;
    text-align: center;
}

/* コメント
----------------------------- */
#section-08 .comment {
    margin: 0 80px;
    padding: 50px 40px 0;
    border-top: solid 1px #eee;
}
#section-08 .comment:nth-of-type(n+2) {
    margin-top: 60px;
}

/* 本文 */
#section-08 .comment h3 {
    font-size: 1.563rem;
    letter-spacing: -0.02em;
    text-align: center;
}
#section-08 .comment > p {
    margin-top: 25px;
    line-height: 2.3;
}

/* プロフィール */
#section-08 .profile {
    background: #f9f9f9;
    margin-top: 45px;
    padding: 25px 20px 15px 35px;
    border-radius: 8px;
    position: relative;
}
#section-08 .profile figure {
    position: absolute;
    top: -10px;
}
#section-08 .profile h4 {
    margin-left: 130px;
    letter-spacing: 0.01em;
    line-height: 1.56;
}
#section-08 .profile p {
    margin-top: 30px;
    font-feature-settings: normal;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 2.14;
}

/* ========================================
■ form
======================================== */
#form {
    background: #f9f9f9;
}
#form .wrap {
    padding: 55px 0 65px;
}

/* 見出し */
#form h2 {
    font-size: 2.25rem;
    letter-spacing: 0.05em;
    text-align: center;
}

/* 資料請求 */
#form .form-siryou {
    text-align: center;
    margin-top: 25px;
}
#form .form-siryou__img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* フォームレイアウト */
#form .form-wrap {
    display: flex;
    margin: 60px 80px 0;
}

/* 説明書き
----------------------------- */
#form .form-text {
    width: 50%;
    padding-top: 15px;
    text-align: center;
}
#form .form-text h3 {
    margin-bottom: 15px;
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
#form .form-text p {
    display: inline-block;
    margin-top: 20px;
    font-feature-settings: normal;
    line-height: 2.1;
    text-align: left;
}

/* 入力部分
----------------------------- */
#form .form-content {
    width: 50%;
    padding-left: 20px;
}
#form .form-content tr:nth-of-type(n+2) {
    margin-top: 30px;
}

/* 項目名 */
#form .form-content th {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    font-weight: bold;
    letter-spacing: 0.05em;
}
#form .form-content .must,
#form .form-content .ninni {
    background: #f34d3c;
    margin-right: 15px;
    padding: 3px 10px;
    color: #fff;
    font-size: 0.625rem;
    font-weight: normal;
    line-height: 1.2;
    border-radius: 5px;
}
#form .form-content .ninni {
    background: #2c4492;
}

/* 入力欄 */
#form input[type='text'],
#form input[type='email'],
#form input[type='tel'],
#form select,
#form textarea {
    background: #fff;
    width: 100%;
    padding: 10px 20px;
    border: solid 1px #e5e5e5;
    border-radius: 8px;
}
#form select {
    background: url(img/form_select01.png) no-repeat 95% center #fff;
}
#form textarea {
    min-height: 170px;
}

/* 送信ボタン */
#form [type="submit"] {
    display: block;
    background: #f34d3c;
    width: 200px;
    margin: 30px auto 0;
    padding: 10px 0;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}

/* ========================================
■ section-10
======================================== */
#section-10 {
    background: #333;
}
#section-10 .wrap {
    padding: 45px 0 65px;
    color: #fff;
}

/* 見出し */
#section-10 h2 {
    font-size: 2.25rem;
    letter-spacing: 0.05em;
    text-align: center;
}

/* 会社概要 */
#section-10 table {
    width: 640px;
    margin: 20px auto 0;
    font-size: 0.875rem;
}
#section-10 th {
    width: 150px;
    padding: 15px 0 15px 30px;
    text-align: left;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, rgba(125, 125, 125, 0.2) 50%, transparent 50%) repeat-x left bottom/4px 1px;
}
#section-10 td {
    padding: 15px 0;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, rgba(125, 125, 125, 0.2) 50%, transparent 50%) repeat-x left bottom/4px 1px;
}

/* ========================================
■ section-11
======================================== */
#section-11 {
    background: url(img/sec11_bg01.png) no-repeat center top/cover;
}
#section-11 .wrap {
    padding: 50px 0 85px;
    color: #fff;
    text-align: center;
}
#section-11 h2 {
    margin-bottom: 45px;
    font-size: 1.875rem;
    line-height: 1.66;
    letter-spacing: 0.05em;
}
#section-11 p {
    letter-spacing: 0.05em;
    line-height: 2.18;
}
#section-11 p:nth-of-type(n+2) {
    margin-top: 10px;
}

/* ========================================
■ footer
======================================== */
footer {
    background: #03042c;
}
footer .wrap {
    padding: 5px 0 70px;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-align: center;
}

/* thanksページ */
#thanks footer .wrap {
    padding: 5px 0;
}

/* ========================================
■ footer-nav
======================================== */
#footer-nav {
    width: 100%;
    background: #08297a;
    position: fixed;
    bottom: 0;
	z-index: 5;
}
#footer-nav .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    color: #fff;
    line-height: 1.2;
}

/* 電話番号 */
#footer-nav .tel {
    display: flex;
    align-items: center;
    width: 550px;
    border-right: solid 1px #fff;
}
#footer-nav .tel small {
    margin-left: 10px;
    font-size: 0.75rem;
}
#footer-nav .tel p:nth-of-type(2) {
    margin-left: 20px;
    font-size: 1.375rem;
}
#footer-nav .tel p:nth-of-type(2) img {
    margin-right: 5px;
    vertical-align: middle;
}

/* ボタン */
#footer-nav a {
    display: block;
    background: #59c204;
    width: 330px;
    padding: 8px 0;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
}

/* ========================================
■ thanks-head
======================================== */
#thanks-head {
    background: #eee;
}
#thanks-head .wrap {
    padding: 70px 0 60px;
    text-align: center;
}
#thanks-head h1 {
    margin-top: 40px;
    font-size: 2.1rem;
    letter-spacing: 0.05em;
}
#thanks-head p {
    margin-top: 15px;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}

/* ========================================
■ thanks-bottom
======================================== */
#thanks-bottom {
    background: #00469a;
}
#thanks-bottom .wrap {
    padding: 45px 0 40px;
    color: #fff;
    text-align: center;
}
#thanks-bottom h2 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
}
#thanks-bottom p {
    margin-top: 15px;
    font-size: 1.125rem;
    line-height: 1.9;
}

/* ボタン */
#thanks-bottom a {
    display: block;
    background: url(img/cta01_ico02.png) no-repeat 95% center rgba(255, 255, 255, 0);
    width: 380px;
    margin: 45px auto 0;
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    border: solid 1px #fff;
    border-radius: 10px;
}
#thanks-bottom a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

a.tellink{
    background:none !important;
    font-size: 3rem !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    display:inline;
    margin:0 !important;
    padding:0 !important;
    text-align: left !important;
}

/* よくある質問 */
.faq__ttl {
    font-size: 2.25rem;
    letter-spacing: 0.05em;
    text-align: center;
}
.faq__inner {
    padding: 50px 15px;
}
.faq__list {
    max-width: 860px;
    margin: auto;
}
.faq__item {
    margin: 0 0 30px;
}

.faqItem__q {
    display: flex;
    align-items: center;
}
.faqItem__a {
    display: flex;
    align-items: flex-start;
}
.faqItem__q {
    background-color: #00469a;
    position: relative;
    cursor: pointer;
    padding: 15px 40px 15px 15px;
}
.faqItem__q::after {
    content: "＋";
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
}
.faqItem__q.clicked::after {
    content: "－";
}
.faqItem__heading--q {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 0.7em;
}
.faqItem__heading--a {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    color: #ffc837;
    margin-right: 0.7em;
}
.faqItem__a {
    border: 3px solid #00469a;
    padding: 15px;
}
.faqItem__qText {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}
.faqItem__aText {
    font-size: 1rem;
    margin: 0;
}

/* 離脱防止ポップアップ */
.popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}
.popup .popup-bg {
    background:rgb(97 97 97 / 42%);
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:9999
}
.popup .popup-inner {
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    max-width:1180px;
    min-width:280px;
    max-height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    -webkit-animation:fadein .5s;
    -moz-animation:fadein .5s;
    -ms-animation:fadein 0.5s;
    -o-animation:fadein .5s;
    animation:fadein .5s
}
.popup .popup-close {
    position:absolute;
    top:-10px;
    right:-10px;
    width:29px;
    height:29px;
    display:flex;
    border:1px solid #fff;
    align-items:center;
    justify-content:center;
    background:#fff;
    cursor:pointer;
    border-radius:50%;
    z-index: 999999;
}
.popup .popup-close::after,
.popup .popup-close::before {
    width:14px;
    height:2px;
    content:"";
    position:absolute;
    left:7px;
    top:12px;
    background:#667075
}
.popup .popup-close::before {
    -ms-transform:rotate(-45deg);
    transform:rotateZ(-45deg)
}
.popup .popup-close::after {
    -ms-transform:rotate(45deg);
    transform:rotateZ(45deg)
}
.popup .popup-inner img {
    max-width:100%;
    max-height:500px;
    opacity:1!important
}

@keyframes fadein {
    from {
        opacity:0
    }
    to {
        opacity:1
    }
}
@-moz-keyframes fadein {
    from {
        opacity:0
    }
    to {
        opacity:1
    }
}
@-webkit-keyframes fadein {
    from {
        opacity:0
    }
    to {
        opacity:1
    }
}
@-ms-keyframes fadein {
    from {
        opacity:0
    }
    to {
        opacity:1
    }
}
@-o-keyframes fadein {
    from {
        opacity:0
    }
    to {
        opacity:1
    }
}
.popup a:hover {
    opacity: 1 !important;
}
.scroll_btn {
	width: 115px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateY(50%) translateX(-50%);
	z-index: 2;
}