@charset "utf-8";

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/


/*全体の設定
---------------------------------------------------------------------------*/

html,
body {
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    margin: 0px;
    padding: 0px;
    color: #333;
    /*全体の文字色*/
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    /*フォント種類*/
    font-size: 16px;
    /*文字サイズ*/
    line-height: 2;
    /*行間*/
    /* background: #f0f0f0; */
    /*背景色*/
    -webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
    margin: 0px;
    padding: 0px;
    font-size: 100%;
    font-weight: normal;
}

ul {
    list-style-type: none;
}

ol {
    padding-left: 40px;
    padding-bottom: 15px;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    font-size: 100%;
    border-spacing: 0;
}

iframe {
    width: 100%;
}

@keyframes opa1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/

a {
    color: #333;
    /*リンクテキストの色*/
    transition: 0.5s;
    /*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}

a:hover {
    color: #ff4765;
    /*マウスオン時の文字色*/
    text-decoration: none;
    /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}


/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/

header {
    height: 100%;
    overflow: auto;
    position: relative;
    background: url(../images/mainimg.jpg) no-repeat center center / cover;
    /*背景画像の読み込み*/
}


/*ロゴ画像*/

header #logo img {
    display: block;
    width: 20%;
    /*画像の幅*/
    position: absolute;
    left: 40%;
    /*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
    bottom: 50%;
    /*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
}


/*メニュー
---------------------------------------------------------------------------*/


/*メニューブロック全体への指定*/

#menubar {
    position: absolute;
    bottom: 20%;
    /*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
    left: 0px;
    width: 100%;
    text-align: center;
}


/*メニュー１個あたりの指定*/

#menubar li {
    display: inline-block;
    margin: 0 1%;
    animation-name: opa1;
    animation-delay: 1S;
    animation-duration: 1S;
    animation-fill-mode: both;
}

#menubar li a {
    text-decoration: none;
    display: block;
    text-align: center;
    width: 140px;
    /*メニューの幅*/
    color: #fff;
    /*文字色*/
    border-bottom: 2px solid transparent;
    /*下線の幅、線種、色。transparentは透明の事。*/
    padding-bottom: 7px;
    /*下線と文字の間にとる余白*/
}


/*マウスオン時の指定*/

#menubar li a:hover {
    border-bottom: 2px solid #fff;
    /*下線の幅、線種、色*/
    letter-spacing: 0.1em;
    /*文字間隔を少しだけ広くする指定。そのままがいいならこの１行を削除。*/
}


/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/

#container {
    max-width: 1400px;
    /*最大幅。これ以上広くならない指定。*/
    margin: 0 auto;
}


/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/

#contents {
    overflow: hidden;
    padding: 50px 3%;
}

#contents section+section {
    padding-top: 50px;
}


/*コンテンツ内にあるh2(見出し)タグの指定*/

#contents h2 {
    margin-bottom: 20px;
    clear: both;
    padding: 0 20px;
    font-size: 20px;
    /*文字サイズ*/
    text-align: center;
    /*文字をセンタリング*/
    letter-spacing: 0.1em;
    /*文字間隔を少しだけ広くする指定*/
    background: #374c55;
    /*背景色*/
    color: #fff;
    /*文字色*/
    border-radius: 100px;
    /*角を丸くする指定。大きめであれば適当で構いません。*/
}


/*コンテンツ内にあるh3(見出し)タグの指定*/

#contents h3 {
    margin-bottom: 20px;
    clear: both;
    padding: 0 20px;
    font-size: 18px;
    /*文字サイズ*/
    text-align: center;
    /*文字をセンタリング*/
    letter-spacing: 0.1em;
    /*文字間隔を少しだけ広くする指定*/
    border: 2px solid #374c55;
    /*枠線の幅、線種、色*/
    border-radius: 100px;
    /*角を丸くする指定。大きめであれば適当で構いません。*/
    color: #374c55;
    /*文字色*/
}


/*コンテンツ内にあるp(段落)タグ設定*/

#contents p {
    padding: 0px 20px 20px;
    /*上、左右、下への余白*/
}


/*他。微調整。*/

#contents p+p {
    margin-top: -5px;
}

#contents h2+p,
#contents h3+p {
    margin-top: -10px;
}


/*Serviceページ
---------------------------------------------------------------------------*/


/*各ブロックごとの設定*/

.list {
    overflow: hidden;
    line-height: 1.5;
    border-bottom: 1px solid #999;
    /*下線の幅、線種、色*/
    padding: 20px;
    /*ボックス内の余白*/
}


/*１番目のlistブロックへの追加指定。上に線を入れる。*/

.list:first-of-type {
    border-top: 1px solid #999;
}


/*h4見出しの設定*/

.list h4 {
    font-size: 20px;
    /*文字サイズ*/
    margin-bottom: 10px;
}


/*画像の設定*/

.list img {
    width: 20%;
    /*画像幅*/
    float: left;
    /*画像を左に回り込み*/
    margin-right: 3%/*画像の右側に空けるスペース*/
}


/*段落タグ*/

.list p {
    padding: 0 !important;
}


/*フッター設定
---------------------------------------------------------------------------*/

footer {
    clear: both;
    text-align: center;
    background: #374c55;
    /*背景色*/
    color: #fff;
    /*文字色*/
    font-size: 85%;
    /*文字サイズ*/
}

footer a {
    color: #fff;
    /*リンクテキストの文字色*/
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    /*マウスオン時の文字色*/
}

footer .pr {
    display: block;
    font-size: 80%;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/


/*ブロック全体の設定*/

#new dl {
    padding-left: 20px;
    margin-bottom: 15px;
}


/*日付設定*/

#new dt {
    float: left;
    width: 9em;
    letter-spacing: 0.1em;
}


/*記事設定*/

#new dd {
    padding-left: 9em;
}


/*テーブル
---------------------------------------------------------------------------*/


/*テーブル１行目に入った見出し部分（※caption）*/

.ta1 caption {
    border: 1px solid #999;
    /*テーブルの枠線の幅、線種、色*/
    border-bottom: none;
    /*下線だけ消す*/
    text-align: center;
    /*文字をセンタリング*/
    background: #dfdfdf;
    /*背景色*/
    font-weight: bold;
    /*太字に*/
    padding: 10px;
    /*ボックス内の余白*/
}


/*テーブル１行目に入った見出し部分（※tamidashi）*/

.ta1 th.tamidashi {
    width: auto;
    text-align: center;
    /*文字をセンタリング*/
    background: #dfdfdf;
    /*背景色*/
}


/*ta1テーブルブロック設定*/

.ta1 {
    table-layout: fixed;
    width: 100%;
    margin: 0 auto 20px;
}

.ta1,
.ta1 td,
.ta1 th {
    word-break: break-all;
    border: 1px solid #999;
    /*テーブルの枠線の幅、線種、色*/
    padding: 10px;
    /*テーブル内の余白*/
}


/*テーブルの左側ボックス*/

.ta1 th {
    text-align: center;
    /*センタリング*/
    width: 30%;
    /*幅*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/

body .nav-fix-pos-pagetop a {
    display: none;
}

body.is-fixed-pagetop .nav-fix-pos-pagetop a {
    display: block;
    text-decoration: none;
    text-align: center;
    position: fixed;
    animation-name: opa1;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    width: 60px;
    /*ボタンの幅*/
    line-height: 60px;
    /*ボタンの高さ*/
    bottom: 50px;
    /*画面の下からの配置場所指定*/
    right: 3%;
    /*画面の右からの配置場所指定*/
    background: #555;
    /*背景色（古いブラウザ用）*/
    background: rgba(0, 0, 0, 0.5);
    /*背景色。0,0,0は黒の事で、0.5は色が50%出た状態の事。*/
    color: #fff;
    /*文字色*/
    border-radius: 50%;
    /*円形にする指定。この１行を削除すると正方形になります。*/
}

body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
    background: #999;
    /*マウスオン時の背景色*/
}


/*トップページのNEWアイコン
---------------------------------------------------------------------------*/

.newicon {
    background: #F00;
    /*背景色*/
    color: #FFF;
    /*文字色*/
    font-size: 70%;
    line-height: 1.5;
    padding: 2px 5px;
    border-radius: 2px;
    margin: 0px 5px;
    vertical-align: text-top;
}


/*ul.disc,olタグ
---------------------------------------------------------------------------*/

ul.disc {
    list-style: disc;
    padding: 0 20px 20px 55px;
}

ol {
    padding: 0 20px 20px 42px;
}


/*その他
---------------------------------------------------------------------------*/

.look {
    background: #fff;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
}

.mb15,
.mb1em {
    margin-bottom: 15px;
}

.clear {
    clear: both;
}

ul.disc {
    padding: 0em 25px 15px 40px;
    list-style: disc;
}

.color1,
.color1 a {
    color: #ff4765;
}

.pr {
    font-size: 10px;
}

.wl {
    width: 96%;
}

.ws {
    width: 50%;
}

.c {
    text-align: center;
}

.r {
    text-align: right;
}

.l {
    text-align: left;
}

.big1 {
    font-size: 40px;
    letter-spacing: 0.2em;
}

.mini1 {
    font-size: 11px;
    display: inline-block;
    line-height: 1.5;
}

.sh {
    display: none;
}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:800px) {
    /*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
    /*ロゴ画像*/
    header #logo img {
        width: 30%;
        /*画像の幅*/
        left: 35%;
        /*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
    }
}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:480px) {
    /*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
    /*ロゴ画像*/
    header #logo img {
        width: 50%;
        /*画像の幅*/
        left: 25%;
        /*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
    }
    /*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
    #container {
        font-size: 12px;
        font-size: 2.93vw;
    }
    /*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
    /*コンテンツ内にあるh2(見出し)タグの指定*/
    #contents h2 {
        font-size: 16px;
        /*文字サイズ*/
    }
    /*コンテンツ内にあるh3(見出し)タグの指定*/
    #contents h3 {
        font-size: 14px;
        /*文字サイズ*/
    }
    /*Serviceページ
---------------------------------------------------------------------------*/
    /*h4見出しの設定*/
    .list h4 {
        font-size: 16px;
        /*文字サイズ*/
    }
    /*ul.disc,olタグ
---------------------------------------------------------------------------*/
    ul.disc {
        padding: 0 0px 20px 35px;
    }
    ol {
        padding: 0 0px 20px 35px;
    }
    /*その他
---------------------------------------------------------------------------*/
    .ws {
        width: 96%;
    }
    .big1 {
        font-size: 22px;
        letter-spacing: normal;
    }
}

@charset "UTF-8";

/*!
 * ress.css • v3.0.1
 * MIT License
 * github.com/filipelinhares/ress
 */


/* # =================================================================
   # Global selectors
   # ================================================================= */

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    /* Prevent adjustments of font size after orientation changes in iOS */
    word-break: normal;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
}

*,
 ::before,
 ::after {
    background-repeat: no-repeat;
    /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

 ::before,
 ::after {
    text-decoration: inherit;
    /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
    vertical-align: inherit;
}

* {
    padding: 0;
    /* Reset `padding` and `margin` of all elements */
    margin: 0;
}


/* # =================================================================
     # General elements
     # ================================================================= */

hr {
    overflow: visible;
    /* Show the overflow in Edge and IE */
    height: 0;
    /* Add the correct box sizing in Firefox */
}

details,
main {
    display: block;
    /* Render the `main` element consistently in IE. */
}

summary {
    display: list-item;
    /* Add the correct display in all browsers */
}

small {
    font-size: 80%;
    /* Set font-size to 80% in `small` elements */
}

[hidden] {
    display: none;
    /* Add the correct display in IE */
}

abbr[title] {
    border-bottom: none;
    /* Remove the bottom border in Chrome 57 */
    /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

a {
    background-color: transparent;
    /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
    outline-width: 0;
    /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    /* Specify the font family of code elements */
}

pre {
    font-size: 1em;
    /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
    font-weight: normaler;
    /* Add the correct font weight in Chrome, Edge, and Safari */
}


/* https://gist.github.com/unruthless/413930 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}


/* # =================================================================
     # Forms
     # ================================================================= */

input {
    border-radius: 0;
}


/* Replace pointer cursor in disabled elements */

[disabled] {
    cursor: default;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
    /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type="search"] {
    -webkit-appearance: textfield;
    /* Correct the odd appearance in Chrome and Safari */
    outline-offset: -2px;
    /* Correct the outline style in Safari */
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
    overflow: auto;
    /* Internet Explorer 11+ */
    resize: vertical;
    /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    /* Specify font inheritance of form elements */
}

optgroup {
    font-weight: normal;
    /* Restore the font weight unset by the previous rule */
}

button {
    overflow: visible;
    /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
    text-transform: none;
    /* Firefox 40+, Internet Explorer 11- */
}


/* Apply cursor pointer to button elements */

button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
    cursor: pointer;
    color: inherit;
}


/* Remove inner padding and border in Firefox 4+ */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}


/* Replace focus style removed in the border reset above */

button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    /* Correct the inability to style clickable types in iOS */
}


/* Remove the default button styling in all browsers */

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none;
}


/* Style select like a standard input */

select::-ms-expand {
    display: none;
    /* Internet Explorer 11+ */
}

select::-ms-value {
    color: currentColor;
    /* Internet Explorer 11+ */
}

legend {
    border: 0;
    /* Correct `color` not being inherited in IE 8/9/10/11 */
    color: inherit;
    /* Correct the color inheritance from `fieldset` elements in IE */
    display: table;
    /* Correct the text wrapping in Edge and IE */
    max-width: 100%;
    /* Correct the text wrapping in Edge and IE */
    white-space: normal;
    /* Correct the text wrapping in Edge and IE */
    max-width: 100%;
    /* Correct the text wrapping in Edge 18- and IE */
}

 ::-webkit-file-upload-button {
    /* Correct the inability to style clickable types in iOS and Safari */
    -webkit-appearance: button;
    color: inherit;
    font: inherit;
    /* Change font properties to `inherit` in Chrome and Safari */
}


/* # =================================================================
     # Specify media element style
     # ================================================================= */

img {
    border-style: none;
    /* Remove border when inside `a` element in IE 8/9/10 */
}


/* Add the correct vertical alignment in Chrome, Firefox, and Opera */

progress {
    vertical-align: baseline;
}


/* # =================================================================
     # Accessibility
     # ================================================================= */


/* Hide content from screens but not screenreaders */

@media screen {
    [hidden~="screen"] {
        display: inherit;
    }
    [hidden~="screen"]:not(:active):not(:focus):not(:target) {
        position: absolute !important;
        clip: rect(0 0 0 0) !important;
    }
}


/* Specify the progress cursor of updating elements */

[aria-busy="true"] {
    cursor: progress;
}


/* Specify the pointer cursor of trigger elements */

[aria-controls] {
    cursor: pointer;
}


/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */

[aria-disabled] {
    cursor: default;
}


/* ------------------------
BASE
--------------------------*/

body {
    font-weight: normal;
    line-height: 1.7;
    letter-spacing: 1.25px;
}

a {
    cursor: pointer;
}

img {
    width: 100%;
    vertical-align: bottom;
}

.green {
    color: #0F8B20;
}

p {
    font-family: 'ヒラギノ角ゴシック';
}


/* ------------------------
contact
--------------------------*/

.form {
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.form_title {
    background-color: rgb(49 107 139);
    padding: 50px 0 100px;
    color: white;
}

.form .title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
}

.form_content {
    padding: 30px 4vw 40px;
    max-width: 80%;
    width: 800px;
    margin: 0 auto;
    background-color: #f5f5f5;
    margin-bottom: 50px;
    margin-top: -50px;
}

@media screen and (max-width: 414px) {
    .form_content {
        max-width: 100%;
    }
}

.form_content dl {
    width: 600px;
    margin: 0 auto;
}

.form_content dt {
    font-weight: bold;
    margin: 0 auto;
}

.form_content .required {
    background-color: #cc391f;
    color: white;
    height: 25px;
    line-height: 25px;
    font-weight: normal;
    display: inline-block;
    font-size: 12px;
    padding: 0 15px;
    margin-right: 15px;
}

.form_content .any {
    background-color: #999;
    color: white;
    height: 25px;
    line-height: 25px;
    font-weight: normal;
    display: inline-block;
    font-size: 12px;
    padding: 0 15px;
    margin-right: 15px;
}

.form_content dd {
    margin: 15px 0 30px 0;
}

.form_content #checkedBox {
    display: none;
}

.form_content .text {
    border: 1px solid #ddd;
    width: 100%;
    height: 40px;
    padding-left: 15px;
    background-color: #fff;
}

.form_content .add {
    border: 1px solid #ddd;
    height: 40px;
    padding: 0 5px 0 15px;
    background-color: #fff;
    margin-bottom: 10px;
}

.form_content .num {
    color: rgb(158, 158, 158);
}

.form_content dd label {
    display: flex;
}

.form_content .check {
    margin-right: 10px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

button {
    background-color: #0179a1;
}

.btn,
button.btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: white;
    border-radius: 0.5rem;
}


/*主な共通部分は省略*/

button.btn--red.btn--cubic {
    border-bottom: 5px solid #003647;
}

button.btn--red.btn--cubic:hover {
    margin-top: 3px;
    border-bottom: 2px solid #003647;
}

button.btn--radius {
    border-radius: 100vh;
}

.fa-position-right {
    position: absolute;
    top: calc(50% - .5em);
    right: 2rem;
}

.fa-file {
    position: absolute;
    top: calc(50% - .5em);
    right: 2rem;
}

.btnDesign {
    margin-top: 15px;
    text-align: center;
}

.confirm {
    margin-top: 30px;
}

.backBtn {
    margin-top: 10px;
}

.thanks {
    background-color: #efefef;
    height: 100vh;
    padding: 50px 5vw;
}

.thanksEn {
    font-family: 'Courier';
    text-align: center;
    color: #0179a1;
    font-weight: bold;
    font-size: 2.4rem;
}

.thanks h4 {
    text-align: center;
    padding: 40px 0;
}

.mt {
    margin-top: 10px;
}

.thanksTxt {
    background-color: #fff;
    color: rgb(82, 82, 82);
    border-radius: 24px;
    max-width: 100%;
    width: 800px;
    margin: 0 auto;
    padding: 40px;
}