@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');

/* ##############################################################################

    Common Style

############################################################################## */

/** Color Sets **/
:root {
    --main-color-blue: #195690;
    /*Base Color*/
    --key-color-red: #ed1c24;
    --key-color-green: #009245;
    --key-color-orange: #f7931e;
    --sub-color-blue: rgba(25, 86, 144, 0.1);
    --sub-color-red: rgba(237, 28, 36, 0.1);
    --sub-color-green: rgba(239, 249, 244, 1);
    --sub-color-orange: rgba(247, 147, 30, 0.1);
    --sub-color-navy: #0d2b46;
    --line-color-gray: #cccccc;
    --sub-color-gray: #999999;
}


/** Font Sets  **/
:root {
    --font-gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --font-minchou: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", 'Noto Serif JP', serif;
    --font-gothic-kr: 'Malgun Gothic Boot', sans-serif;
}

/** Text style  **/
h4 {
    color: var(--main-color-blue);
    font-size: 20px;
    font-weight: bold;
}

h5 {
    color: var(--main-color-blue);
    font-size: 1.2rem;
    font-weight: bold;
}

ul.list-number-odd {
    counter-reset: number 0;
}

ul.list-number-odd li {
    position: relative;
    display: block;
    margin: 0 auto;
    font-size: 18px;
    margin-bottom: 1rem;
}

ul.list-number-odd li:before {
    position: absolute;
    counter-increment: number 1;
    content: counter(number) ".";
    top: 0;
    left: -30px;
}

ul.list-type-disc {
    counter-reset: number 0;
}

ul.list-type-disc li {
    position: relative;
    display: block;
    margin: 0 auto;
    font-size: 18px;
    margin-bottom: 1rem;
}

ul.list-type-disc li:before {
    position: absolute;
    content: "・";
    top: 0;
    left: -20px;
}


h4:not(:last-child) {
    margin-bottom: 0.5rem;
}

p:not(:last-child) {
    margin-bottom: 2rem;
}

/** Frame layout **/

section .section-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.content {
    background: #fff;
    position: relative;
}

/* BackgroundImage */
.section-image {
    padding: 0;
    position: relative;
}

.bg-image {
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

.copy-large {
    display: inline-block;
    font-size: 210px;
    line-height: 0;
    font-family: var(--font-minchou);
    color: #fff;
    opacity: 0.5;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

/* Filter */
.bg-filter {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 200px 0;
}

.bg-filter-white {
    background: rgba(255, 255, 255, 0.5);
}

.bg-filter-white20 {
    background: rgba(255, 255, 255, 0.2);
}

.bg-filter-blue {
    background: rgba(25, 86, 144, 0.85);
    color: #fff;
}

.bg-filter-black {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
}

.bg-filter-black40 {
    background: rgba(0, 0, 0, 0.30);
    color: #fff;
}

.bg-filter-clear40 {
    color: #fff;
}

/* Block Layout */
.txt-left-box {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 0;
}

.txt-right-box {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: right;
    padding: 100px 0;
}

.clip-path {
    clip-path: polygon(0 200px, 100% 0, 100% calc(100% - 100px), 0 100%);
}

.clip-path-top {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 200px), 0 100%);
}

.clip-path-bottom {
    clip-path: polygon(0 200px, 100% 0, 100% 100%, 0 100%);
}

/* section-bg-color */
.section-white {
    background: #fff;
    position: relative;
}

.section-blue {
    background: var(--sub-color-blue);
}

.section-navy {
    background: var(--sub-color-navy);
    color: #fff;
}

.section-gray {
    background: #f7f7f7;
}

.second .section-navy .h3-white {
    color: #fff;
}

.second .section-navy .h3-white span {
    color: #fff;
    opacity: 0.4;
}

/* section-bg-filter */
.second .bg-filter-black40 {
    display: block;
    padding-top: 250px;
}

.second .bg-filter-clear40 {
    display: block;
    padding-top: 250px;
}

/* section-pass */
.section-under-clippath {
    padding-bottom: 250px;
}

.section-overandunder-clippath {
    clip-path: polygon(0 200px, 100% 0, 100% calc(100% - 200px), 0 100%);
    padding: 250px 0;
    margin-top: -250px;
}

.section-over-clippath {
    clip-path: polygon(0 200px, 100% 0, 100% 100%, 0 100%);
    padding-top: 250px;
    margin-top: -250px;
}

/** Parts style  **/
/* h3 */
.section-image h3 {
    font-family: var(--font-minchou);
    font-size: 90px;
    margin-bottom: 15px;
}
.section-image h3.font-kr,
.second .content h3 span.font-kr,
.second .content h3.font-kr{
    font-family: var(--font-gothic-kr);
}
.section-image .leadtxt-normal {
    font-size: 28px;
    font-weight: bold;
    line-height: 48px;
    margin-bottom: 30px;
    max-width: 1100px;
}

.section-image .leadtxt-small {
    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
    margin-bottom: 75px;
    max-width: 1100px;
}

.txt-right-box .leadtxt-normal,
.txt-right-box .leadtxt-small,
.txt-right-box .btn-arrow {
    margin-left: auto;
}

/* second-h3 */
.second .content h3 {
    font-size: 56px;
    /*font-family: var(--font-minchou);*/
    text-align: center;
    position: relative;
    color: var(--main-color-blue);
    z-index: 1;
    margin-bottom: 110px;
}

.second .content h3 span {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    color: var(--sub-color-blue);
    z-index: -1;
}

.second .content .section-blue h3 span {
    color: #fff;
}

/* imageandtxt-box-bgimg */
.box-blue {
    max-width: 1290px;
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 100px 70px;
    box-sizing: border-box;
    background-image: url(../image/page-company/img_company_philosophy-large.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: right;
    color: #fff;
    font-weight: bold;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.box-blue-text-container {
    max-width: 600px;
}

.box-blue .txt-large {
    font-size: 150px;
    color: #e2e2e2;
    font-family: var(--font-minchou);
    position: absolute;
    top: -145px;
    left: -50px;
    z-index: 2;
}
.box-blue .txt-large.font-kr{
    font-family: var(--font-gothic-kr);
}

.box-blue .img-outer {
    width: 40%;
    height: 40%;
    position: relative;
    object-fit: cover;
    top: 20px;
    left: -120px;
    z-index: 3;
}

.second .content .box-blue h3 {
    font-size: 64px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 750px;
    color: #fff;
    display: block;
    text-align: right;
    margin-left: auto;
}

.second .content .box-blue .leadtxt-normal {
    font-size: 20px;
    display: block;
    max-width: 700px;
    color: #fff;
    display: block;
    text-align: left;
    margin-left: auto;
}

.second .content .box-blue .leadtxt-small {
    font-size: 20px;
    display: block;
    max-width: 700px;
    color: #fff;
    display: block;
    text-align: right;
    margin-left: auto;
}

.box-blue .txt-center {
    text-align: center;
}

/* imageandtxt-box */
.imageandtxt-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.imageandtxt-box .imageandtxt-box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imageandtxt-box .imageandtxt-box-txt {
    max-width: 850px;
    min-height: 500px;
    padding: 40px;
    background: #fff;
    line-height: 2rem;
}

.imageandtxt-box h4 {
    font-family: var(--font-minchou);
    font-size: 36px;
    margin-bottom: 5px;
}

.imageandtxt-box h5 {
    margin: 20px 0 10px;
}

.imageandtxt-box hr {
    width: 100%;
    height: 2px;
    color: var(--main-color-blue);
    margin-bottom: 10px;
}

.imageandtxt-box-center {
    display: block;
    width: 80%;
    margin: 0 auto;
}

.imageandtxt-box-center img {
    display: block;
    margin: 0 auto;
}

.imageandtxt-box .txt-only {
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
    font-weight: bold;
}

.imageandtxt-box .txt-only p {
    margin-bottom: 0;
}

.clip-circle {
    clip-path: circle(200px at 50% 50%);
}

/* TimeLine */
.timeline {
    max-width: 1100px;
    margin: 0 auto 80px;
}

.timeline tr:first-child th {
    border: none;
    position: relative;
}

.timeline tr:first-child th:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 500px;
    background-color: var(--main-color-blue);
    position: absolute;
    top: 49px;
    right: 0;
}

.timeline tr:last-child th {
    position: relative;
}

.timeline tr:last-child th:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 60px;
    background-color: var(--main-color-blue);
    position: absolute;
    top: 88px;
    right: -1px;
}

.timeline tr th {
    width: 250px;
    text-align: center;
    color: var(--main-color-blue);
    font-weight: bold;
    padding: 30px;
    vertical-align: top;
    border-right: solid 1px var(--main-color-blue);
}

.timeline tr td {
    text-align: left;
    padding: 30px 30px 30px 60px;
    position: relative;
}

.timeline tr td:before {
    content: '●';
    position: absolute;
    top: 19px;
    left: -15px;
    font-size: 180%;
    color: var(--main-color-blue);
}

.timeline tr:last-child td:after {
    content: "▼";
    font-size: 200%;
    color: var(--main-color-blue);
    position: absolute;
    top: 130px;
    left: -16px;
}

.timeline tr:nth-child(odd) {
    background: var(--sub-color-blue);
}

ul.timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    color: var(--main-color-blue);
    font-weight: bold;
}

ul.timeline-container::before {
    content: "";
    width: 1px;
    height: 102%;
    background: var(--main-color-blue);
    position: absolute;
    top: 65px;
    left: 282px;
}

ul.history-timeline::before {
    height: 100%;
}

ul.history-timeline::after {
    content: "▼";
    font-size: 40px;
    color: var(--main-color-blue);
    position: absolute;
    bottom: -100px;
    left: 263px;
}

ul.timeline-container li {
    font-size: 20px;
    position: relative;
    padding: 40px 30px 40px 350px;
}

ul.timeline-container li::before {
    content: '';
    width: 25px;
    height: 25px;
    background: var(--main-color-blue);
    border-radius: 50%;
    position: absolute;
    top: 45px;
    left: 270px;
    z-index: 1;
}

ul.timeline-container li.history-list::before {
    top: 41px;
}

ul.timeline-container li:nth-child(odd) {
    background: var(--sub-color-blue);
}

ul.timeline-container span {
    font-size: 36px;
    font-family: var(--font-minchou);
    position: absolute;
    top: 27px;
    left: 100px;
    display: flex;
    justify-content: center;
    width: 100px;
    text-align: center;
}

ul.timeline-container span.history-year {
    font-size: 16px;
    top: 38px;
    font-family: auto;
    width: auto;
    font-weight: bold;
}

ul.timeline-container p {
    font-size: 16px;
    color: black;
    font-weight: initial;
}

ul.off-time {
    margin: 150px auto 100px;
}

ul.off-time span {
    line-height: 1;
    top: 45px;
    font-size: 32px;
}

/* Btn */
.btn {
    display: block;
    color: #fff;
}

.btn-arrow {
    display: block;
    font-size: 22px;
    font-weight: bold;
    width: 293px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    position: relative;
}

.btn-arrow-blue {
    color: var(--main-color-blue);
    border: solid 1px var(--main-color-blue);
    background-color: #fff;
    padding-right: 10px;
}

.btn-arrow-blue::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../image/common/icon_arrow_blue.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 20px;
    right: 4px;
}

.btn-arrow-white {
    color: var(--main-color-blue);
    border: solid 1px var(--main-color-blue);
    background-color: #fff;
    padding-right: 10px;
}

.btn-arrow-white::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../image/common/icon_arrow_blue.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 20px;
    right: 4px;
}

.btn-arrow-clear {
    color: #fff;
    border: solid 1px #fff;
    background-color: none;
    padding-right: 10px;
}

.btn-arrow-clear::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../image/common/icon_arrow_white.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 20px;
    right: 4px;
}

a:hover {
    opacity: 0.5;
}

/* Btn NextPage */
.next-page {
    background: var(--main-color-blue);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    max-width: 600px;
    width: 100%;
    height: auto;
    padding: 30px 60px 30px 30px;
    display: flex;
    margin: 0 auto;
    position: relative;
    margin-top: 100px;
}

.next-page::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../image/common/icon_circle_arrow_white.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 10px);
    right: 20px;
}

.next-page-white {
    position: relative;
}

.next-page-white::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../image/common/icon_circle_arrow_white.svg") no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-left: 15px;
}

.txt-underline {
    text-decoration: underline;
}

/* Breadcrumbs */
.breadcrumbs {
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 500;
    padding-left: 8px;
}

.breadcrumbs a {
    text-decoration: underline;
}

.breadcrumbs-white {
    color: #fff;
}

.breadcrumbs-white a {
    color: #fff;
}

/* Contents  */
.page-content {
    position: relative;
}

/* Banner Contact */
.banner-contact {
    background: linear-gradient(to bottom right, #5380ac 50%, var(--main-color-blue) calc(50% + 1px));
    width: 100%;
    min-height: 450px;
    padding: 105px 0;
    position: relative;
}

.contact-box {
    max-width: 1030px;
    width: 100%;
    min-height: 240px;
    height: 100%;
    background: #fff;
    color: var(--main-color-blue);
    display: flex;
    margin: 0 auto;
    position: relative;
    padding: 35px 0 30px 80px;
}

.contact-box::before {
    content: 'Contact';
    color: #fff;
    font-size: 98px;
    font-family: var(--font-minchou);
    position: absolute;
    top: 25px;
    left: -380px;
    transform: rotate(90deg);
}

.contact-box::after {
    position: absolute;
    top: 50%;
    right: 102%;
    content: '';
    width: 100%;
    max-width: 150px;
    height: 1px;
    background-color: #fff;
}

.contact-box img {
    width: 240px;
    margin-right: 35px;
}

.contact-box-right {
    text-align: center;
    width: 585px;
    height: auto;
    font-size: 22px;
    font-weight: bold;
}

.contact-box-right span {
    display: block;
    width: 100%;
    line-height: 2rem;
    border-bottom: solid 1px var(--main-color-blue);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.btn-contact {
    background: var(--main-color-blue);
    display: block;
    margin: 0 auto;
    color: #fff;
    width: 300px;
    height: auto;
    font-size: 22px;
    line-height: 60px;
    font-weight: bold;
    text-align: center;
}

.btn-contact a {
    color: #fff;
}

.page-privacy .content {
    padding: 120px 0;
}


/* フローティングボタン 全ページ共通 */
#block-hohahotan {
    position: fixed;
    z-index: 1000;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#block-hohahotan.show {
    opacity: 1;
    pointer-events: auto;
}

.ibs-hover-btns {
    display: flex;
    column-gap: 12px;
}

.c-btn::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 3px 6px 0 0;
    background: url(../image/header/icon_contact.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.top-btn:hover {
    opacity: 1;
}

.c-btn {
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 70px;
    font-size: 22px;
    width: 240px;
    height: 70px;
    border-radius: 10px;
    background: linear-gradient(to bottom right,
            #5380ac 50%, var(--main-color-blue) calc(50% + 1px));
    box-shadow: 0 0 4px #fff;
}

.top-btn {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: var(--main-color-blue);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 4px #fff;
}

.top-btn::before {
    position: absolute;
    top: 30px;
    left: 28px;
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(-45deg);
}

/* フローティングボタン FIN */

/* ローディング画面 loading front-page のみ表示*/
#loading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--main-color-blue);
    z-index: 9999;
    opacity: 1;
    animation-name: fadeout;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 3s;
}

@keyframes fadeout {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.spinner {
    width: 360px;
    height: 120px;
    background-image: url(../image/header/logo_ibs_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.loading-text {
    margin-top: 20px;
}

.loading-text>span {
    animation-name: fadeout;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    animation-duration: 1.2s;
    animation-iteration-count: 2;
    animation-direction: linear;
}

.l-1 {
    animation-delay: .2s;
}

.l-2 {
    animation-delay: .3s;
}

.l-3 {
    animation-delay: .4s;
}

.l-4 {
    animation-delay: .5s;
}

.l-5 {
    animation-delay: .6s;
}

.l-6 {
    animation-delay: .7s;
}

.l-7 {
    animation-delay: .8s;
}

.l-8 {
    animation-delay: .9s;
}

.l-9 {
    animation-delay: 1s;
}

.l-10 {
    animation-delay: 1.1s;
}

/* ローディング画面 FIN */

/* pagelink */
.jump-point {
    padding-top: 120px;
    margin-top: -120px;
}
/* 韓国語用フォント */
.font-kr{
    font-family: var(--font-gothic-kr);
}
/* 404エラーページ用 */
.not-page-container{
    text-align: center;
    padding: 100px;
    width: 100%;
}
.not-page-container h2{
    font-size: 57px;
    color: var(--main-color-blue);
}
.not-page-container p{
    font-size: 45px;
    margin-bottom: 1rem;
}
.not-page-container span{
    font-size: 20px;
    display: block;
    margin-bottom: 2rem;
}
.not-page-container a{
    display: block;
    font-size: 24px;
    background: var(--main-color-blue);
    padding: 20px;
    width: 400px;
    margin: 0 auto;
    color: #fff;
    font-weight: bold;
    position: relative;
}
.not-page-container a::after{
    content: "▶";
    width: 50px;
    height: 50px;
    color: #fff;
    position: absolute;
    right: 10px;
}

@media screen and (max-width: 1199px) {
    .box-blue {
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 50px;
        padding: 50px 30px;
    }

    .box-blue .txt-large {
        font-size: 80px;
        top: -75px;
    }

    .box-blue .img-outer {
        position: inherit;
        width: 60%;
        left: 0;
        margin-bottom: 50px;
    }

    .second .content .box-blue h3 {
        margin: 0 auto 20px;
    }

    .page-company .content .section-philosophy .box-blue .leadtxt-normal,
    .page-company .content .box-blue .leadtxt-small {
        margin: 0 auto;
    }
}

@media screen and (max-width: 900px) {
    .second .content h3 span {
        font-size: 180px;
    }
}

/* Common SP */
@media screen and (max-width: 767px) {

    /* スマホ向けのスタイル */
    /** Frame layout **/
    section .section-inner {
        width: 90%;
    }

    /* BackgroundImage */
    .copy-large {
        font-size: 50px;
    }

    /* Filter */
    .bg-filter {
        display: block;
        padding: 120px 0;
    }

    /* Block Layout */
    .txt-left-box {
        padding-top: 0;
    }

    .txt-right-box {
        padding-top: 0;
    }

    .clip-path {
        clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
    }

    .clip-path-top {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
    }

    .clip-path-bottom {
        clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
    }

    /* section-pass */
    .section-overandunder-clippath {
        clip-path: polygon(0 100px, 100% 0, 100% calc(100% - 100px), 0 100%);
        padding: 150px 0 200px 0;
        margin-top: -250px;
    }

    .section-over-clippath {
        clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
        padding-top: 150px;
        margin-top: -250px;
    }

    /** Parts style  **/
    /* h3 */
    .section-image h3 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .section-image .leadtxt-normal {
        font-size: 18px;
        line-height: 2rem;
        max-width: auto;
    }

    .section-image .leadtxt-small {
        font-size: 16px;
        line-height: 1.6rem;
        max-width: auto;
        margin-bottom: 30px;
    }

    /* second-h3 */
    .second .content h3 {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .second .content h3 span {
        font-size: 60px;
        top: -20px;
        width: 90%;
    }

    /* imageandtxt-box-bgimg */
    .box-blue {
        width: 90%;
        padding: 0;
        padding: 60px 20px 20px 20px;
    }

    .box-blue .txt-large {
        font-size: 50px;
        top: -50px;
        left: -15px;
    }

    .second .content .box-blue h3 {
        font-size: 48px;
        text-align: center;
    }

    .second .content .box-blue .leadtxt-normal {
        font-size: 18px;
        width: 100%;
        padding: 0;
        margin-bottom: 0;
    }

    .second .content .box-blue .leadtxt-small {
        font-size: 16px;
        width: 100%;
    }

    .imageandtxt-box .imageandtxt-box-img {
        width: 100%;
    }

    /* TimeLine */
    .timeline {
        width: 100%;
    }

    .timeline tr th {
        width: 105px;
        padding: 20px 10px;
    }

    .timeline tr td {
        padding: 20px 10px 20px 30px;
    }

    ul.timeline-container::before {
        top: 42px;
        left: 105px;
        height: 100%;
    }

    ul.history-timeline::before {
        left: 102px;
        height: 99%;
    }

    ul.history-timeline::after {
        font-size: 30px;
        bottom: -41px;
        left: 88px;
    }

    ul.timeline-container li {
        padding: 30px 20px 30px 130px;
    }

    ul.timeline-container li.history-list {
        padding: 30px 20px 50px 120px;
    }

    ul.timeline-container li::before {
        top: 36px;
        left: 95px;
        width: 20px;
        height: 20px;
    }

    ul.timeline-container li.history-list::before {
        top: 33px;
        left: 92px;
    }

    ul.timeline-container span {
        font-size: 22px;
        top: 26px;
        left: 15px;
        width: 75px;
    }

    ul.timeline-container span.history-year {
        width: 70px;
        top: 30px;
    }

    ul.timeline-container p {
        font-size: 16px;
        color: black;
        font-weight: initial;
    }

    ul.off-time {
        margin: 100px auto 100px;
    }

    ul.off-time span {
        top: 35px;
    }

    /* Btn */
    .btn-arrow {
        font-size: 16px;
        width: 200px;
        height: auto;
        line-height: 36px;
    }

    .btn-arrow-blue::after {
        width: 12px;
        height: 12px;
        top: 12px;
        right: 4px;
    }

    .btn-arrow-white::after {
        width: 12px;
        height: 12px;
        top: 12px;
        right: 4px;
    }

    .btn-arrow-clear::after {
        width: 12px;
        height: 12px;
        top: 12px;
        right: 4px;
    }

    /* Btn NextPage */
    .next-page {
        width: 90%;
        font-size: 16px;
        margin-top: 70px;
    }

    /* Banner Contact */
    .banner-contact {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }

    .contact-box {
        display: block;
        width: 325px;
        height: auto;
        min-height: auto;
        padding: 10px 0 20px 0;
    }

    .contact-box::after {
        display: none;
    }

    .contact-box img {
        width: 150px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .contact-box-right {
        width: 280px;
        font-size: 16px;
        margin: 0 auto;
    }

    .contact-box-right span {
        display: block;
        line-height: 24px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .contact-box-right span:after {
        width: 300px;
        bottom: -10px;
        left: calc(50% - 150px);
    }

    .btn-contact {
        width: 140px;
        font-size: 16px;
        line-height: 3rem;
    }

    #block-hohahotan {
        bottom: 12px;
        right: 12px;
    }

    .c-btn::before {
        width: 20px;
        height: 20px;
    }

    .c-btn {
        line-height: 45px;
        font-size: 15px;
        width: 150px;
        height: 45px;
    }

    .top-btn {
        width: 45px;
        height: 45px;
    }

    .top-btn::before {
        top: 18px;
        left: 15px;
        width: 14px;
        height: 14px;
    }
    /* 404エラーページ用 */
    .not-page-container{
        padding: 0 20px;
    }
    .not-page-container h2{
        font-size: 32px;
    }
    .not-page-container p{
        font-size: 28px;
        margin-bottom: 0.5rem;
    }
    .not-page-container span{
        font-size: 16px;
        margin-bottom: 1rem;
    }
    .not-page-container a{
        font-size: 18px;
        padding: 10px;
        width: 200px;
    }
    .not-page-container a::after{
        right: 0;
    }
}