@charset "UTF-8";

/*Reset*/
body {
    margin:0;
    padding:0;
    position:relative;

    background-color:#F4E7C7; /*important property*/
    color: #502419;
    font-size: 16px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-style: normal;
    letter-spacing: 1.6px;

}
body * {
    position:relative;
    box-sizing: border-box;
}
img {
    max-width: 100%;
}
ul {
    list-style:none;
    padding:0;
    margin:0;
}
p {
    margin:0;
    font-size:16px;
    letter-spacing: 1.6px;
    line-height: 32px;
}
h1, h2, h3, h4, h5, h6 {
    margin:0;    
}
h1 {
    font-size:30px;
    font-weight: bold;
}
h2 {
    font-size:17px;
}
a {
    color:inherit;
    text-decoration: none;
}

/*General Classes*/
.display-block {
    display:block;
}
.display-inline {
    display:inline;
}
.display-inline-block {
    display:inline-block;
}
.position-absolute {
    position:absolute;
}
.centered-inline {
    text-align:center;
}
.centered-block {
    margin:auto auto;
}
.unlimited-max-width {
    max-width:none;
}
.width-100 {
    width:100%;
}
.side-padding-20px {
    padding-left: 20px;
    padding-right: 20px;
}
.max-width-restrictor {
    max-width:1240px;
    margin:auto auto;
}
.text-align-left {
    text-align:left;
}
.visible-sp {
    display:none;
}
.visible-pc
{
    display: block;
}


/*General Classes(Creefu)*/
body.open {
    overflow: hidden;
}
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    border-radius: 28px;
    background-color: #502419;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #E1BAB7;
}
.button p {
    color: #fff;
}
.container-index-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 124px;
    border: 1px dashed #502419;
    border-radius: 16px;
}
.container-index-heading h1 {
    font-family: "Quicksand", sans-serif;
    font-size: 48px;
    font-weight: normal;
}
.container-index-heading span {
    font-size: 14px;
    vertical-align: middle;
}
.index-heading-vertical {
    transform: rotate(90deg);
}
.a-underline {
    color: #F5C5A3;
    text-decoration: underline;
}


/********************/
/*      Header      */
/********************/
/*header top*/
header {
    z-index: 10;
}
header.open {
    z-index: 11;
}
#container-header-top {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: calc(50% - 620px);
    width: 1240px;
    height: auto;
    z-index: 12;
}
#a-header-creefu-logo {
    margin-top: 40px;
}
#img-header-creefu-logo {
    width: 130px;
    height: 38px;
}
#a-hamburger {
    margin-top: 80px;
    transform: scale(1,-1);
    transition: transform 0.3s;
}
#a-hamburger img {
    user-select: none;
    cursor: pointer;
}
header.on-mv #a-hamburger {
    display: none;
}
header.open #a-hamburger {
    transform: scale(1,1);
}
/*header menu*/
@keyframes header-fadein {
    0% {
        display: none;
    }
    1% {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #F4E7C7DD;
        opacity: 0;
    }
    100% {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #F4E7C7DD;
        opacity: 1;
    }
}
@keyframes header-fadeout {
    0% {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #F4E7C7DD;
        opacity: 1;
    }
    99% {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #F4E7C7DD;
        opacity: 0;
    }
    100% {
        display: none;
        position: fixed;
        top: 124px;
        left: 0;
        width: 0;
        background-color: #F4E7C7DD;
        opacity: 0;
    }
}
#container-header-bottom.animation-fadeout
{
    animation-name: header-fadeout;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}
#container-header-bottom.animation-fadein
{
    animation-name: header-fadein;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}
#container-header-bottom {
    display: none;
    position: fixed;
    top: 124px;
    left: 0;
    height: auto;
    background-color: #F4E7C7DD;
    opacity: 0;
}
header.open #container-header-bottom {
    display: flex;
}
header.on-mv #container-header-bottom {
    display: flex;
    position: absolute;
    top: 0;
    left: calc(50% - 620px);
    width: 1240px;
    height: 800px;
    background-color: #ffffff00;
    animation-fill-mode: none;
    animation-duration: 0s;
    opacity: 1;
}
header.open #ul-header-menu {
    top: 124px;
    right: calc(50% - 620px);
}
#ul-header-menu,
header.on-mv #ul-header-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 124px;
    right: calc(50% - 620px);
    width: 292px;
    height: auto;
}
header.header-subpage #container-header-bottom.header-bottom-initial-state {
    display: none;
    width: 0;  
}

/*
header.header-subpage #container-header-bottom {
    display: none;
}
header.header-subpage.open #container-header-bottom {
    display: block;
}
    */
.li-header-menu-item a,
.li-header-menu-home a {
    transition: background-color 0.3s;
}
.li-header-menu-item a:hover,
.li-header-menu-home a:hover {
    background-color: #E1BAB7;
}
.li-header-menu-home {
    font-size: 16px;
}
.li-header-menu-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.li-header-menu-item a p:first-of-type {
    width: auto;
    font-size: 20px;
}
.li-header-menu-item div {
    height: 1px;
    background-color: #502419;
}
#ul-header-menu li:nth-of-type(2) div {
    width: 90px;
}
#ul-header-menu li:nth-of-type(3) div,
#ul-header-menu li:nth-of-type(4) div {
    width: 135px;
}
#ul-header-menu li:nth-of-type(5) div {
    width: 120px;
}
#ul-header-menu li:nth-of-type(6) div {
    width: 129px;
}
.li-header-menu-item:nth-of-type(8) div {
    width: 143px;
}
.li-header-menu-item:nth-of-type(9) div {
    width: 127px;
}
.li-header-menu-item a p:last-of-type {
    width: 60px;
    font-size: 12px;
    text-align: right;
}
#ul-mv {
    top: 20px;
    left: 20px;
    width: 726px;
    height: 536px;
    mask-image: url(img/mv-mask.png);
    -webkit-mask-image: url(img/mv-mask.png);
    mask-size: cover;
}
#ul-mv li {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    animation-name: mv-transition;
    animation-duration: 18s;
    animation-iteration-count: infinite;
}
#ul-mv li:nth-of-type(1) {
    animation-name: none;
    width: 100%;
}
#ul-mv li:nth-of-type(2) {
    animation-delay: 6s;
}
#ul-mv li:nth-of-type(3) {
    animation-delay: 12s;
}
#ul-mv li:nth-of-type(4) {
    animation-delay: 18s;    
    animation-name: mv-transition-last;
}
#ul-mv li img {
    display: block;
    height: 536px;
    object-fit: cover;
}
@keyframes mv-transition {
    0% {
        width: 0;
    }
    5% {
        width: 100%;
    }
    38% {
        width: 100%;
    }
    39% {
        width: 0;
    }
    100% {
        width: 0;
    }
}
@keyframes mv-transition-last {
    0% {
        width: 0;
    }
    5% {
        width: 100%; 
    }
    29.999% {
        width: 100%;
    }
    30% {
        width: 0;
    }
    100% {
        width: 0;
    }
}
.img-mv {
    position: absolute;
    top: 0;
    left: 0;
}
.slicked .slick-slide {
    left: 0px;
    transition: left 0.3s;
}
.slicked .slick-slide .is-animating {
    left: 100px;
}


/********************/
/*       Main       */
/********************/
main {
    overflow-x: hidden;
}


/********************/
/*        mv        */
/********************/
#container-mv-parent {
    overflow-x: hidden;
}
#container-mv {
    width: 766px;
    height: 576px;
}
#section-index-mv {
    padding-top: 200px;
}
.img-deco {
    position: absolute;
    top: 0;
    left: 0;
    animation-duration: 0.5s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: steps(5, end);
}
@keyframes img-deco-shake {
    0% {
      transform: rotate(5deg);  
    }
    33% {
        transform: rotate(-5deg);  
    }
    66% {
        transform: rotate(5deg);  
    }
    100% {
        transform: rotate(-5deg);  
    }
}
#img-deco-1 {
    top: -40%;
    left: 75%;
    animation-name: img-deco-1, img-deco-shake;
}
@keyframes img-deco-1 {
    from {
        top: -40%;
        left: 75%;
    }
    to {
        top: -15%;
        left: 55%;
    }
}
#img-deco-2 {
    top: 0%;
    left: 100%;
    animation-name: img-deco-2, img-deco-shake;
}
@keyframes img-deco-2 {
    from {
        top: 0%;
        left: 100%;
    }
    to {
        top: 20%;
        left: 90%;
    }
}
#img-deco-3 {
    top: 100%;
    left: 100%;
    animation-name: img-deco-3, img-deco-shake;
}
@keyframes img-deco-3 {
    from {
        top: 100%;
        left: 100%;
    }
    to {
        top: 90%;
        left: 75%;
    }
}
#img-deco-4 {
    top: 90%;
    left: -20%;
    animation-name: img-deco-4, img-deco-shake;
}
@keyframes img-deco-4 {
    from {
        top: 90%;
        left: -20%;
    }
    to {
        top: 70%;
        left: -10%;
    }
}
#img-deco-5 {
    top: -40%;
    left: -25%;
    animation-name: img-deco-5, img-deco-shake;
}
@keyframes img-deco-5 {
    from {
        top: -40%;
        left: -25%;
    }
    to {
        top: -10%;
        left: -5%;
    }
}
#container-mv-lower {
    display: flex;
    justify-content: right;
    gap: 16px;
    top: -100px;
    left: 100px;
    width: 516px;
    height: auto;
    margin: 0 0 0 auto;
}
#container-mv-lower img {
    animation-duration: 0.3s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: steps(5, end);
}
.img-deco-lower {
    top: 100px;
    left: 100px;
    animation-name: img-deco-lower, img-deco-shake;
}
@keyframes img-deco-lower {
    from {
        top: 100px;
        left: 100px;
    }
    to {
        top: 0;
        left: 0; 
    }
}
#img-cc01 {
    top: -260px;
    left: 20px;
}
#img-cc02 {
    top: -180px;
    left: -200px;
}

/********************/
/*     Company      */
/********************/
#section-index-company {
    display: flex;
    justify-content: center;
    gap: 50px;
}
#container-index-company-upper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
}
#container-index-company-heading {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	gap: 10px;
}
#container-index-company-heading li {
	width: 80px;
}
#container-index-company-heading li::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100px;
	background-color: #502419;
}
#container-index-company-heading h1 {
	width: 50px;
	height: auto;
	margin: 0 auto;
    font-size: 32px;
    letter-spacing: 3.2px;
    writing-mode: vertical-rl;
}
#container-index-company-heading li:nth-of-type(1)::before {
    height: 150px;
}
#container-index-company-heading li:nth-of-type(2)::before {
    height: 215px;
}
#container-index-company-heading li:nth-of-type(3)::before {
	height: 180px;
}
#container-index-company-upper > p {
    width: 450px;
    height: auto;
    text-align: center;
}


/********************/
/*       Work       */
/********************/
#section-index-work {
    height: 800px;
    padding-left: 316px;
}
#section-index-work .container-index-heading {
    position: absolute;
    top: 130px;
    left: -124px;
    width: 384px;
}
#section-index-work .container-index-heading h1 {
    left: -40px;
}
#section-index-work .container-index-heading span {
    left: 80px;
}
#section-index-work > h2 {
    margin-bottom: 16px;
    font-weight: normal;
}
#section-index-work > h2:nth-of-type(1) {
    font-size: 24px;
}
#section-index-work > h2:nth-of-type(2) {
    font-size: 20px;
}
#section-index-work > p:first-of-type {
    margin-bottom: 32px;
}
#container-work-slider-bg {
    display: flex;
    flex-direction: column;
}
#container-work-slider-bg li {
    width: 4300px;
    height: 174px;
    max-width: none;
}
#container-work-slider-bg li img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    animation-name: work-slider-bg;
    animation-duration: 320s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
#container-work-slider-bg li img:nth-of-type(2) {
    top: 0;
    animation-name: work-slider-bg-2;
}
#container-work-slider-bg .li-work-slider-backwards img {
    animation-name: work-slider-bg-backwards;
}
#container-work-slider-bg .li-work-slider-backwards img:nth-of-type(2) {
    top: 0;
    animation-name: work-slider-bg-backwards-2;
}
@keyframes work-slider-bg {
    0% {
        left: 4300px;
    }
    100% {
        left: -4300px;
    }
}
@keyframes work-slider-bg-2 {
    0% {
        left: 0px;
    }
    50% {
        left: -4300px;
    }
    50.00001% {
        left: 4300px;
    }
    100% {
        left: 0px;
    }
}
@keyframes work-slider-bg-backwards {
    0% {
        left: -4300px;
    }
    100% {
        left: 4300px;
    }
}
@keyframes work-slider-bg-backwards-2 {
    0% {
        left: 0px;
    }
    50% {
        left: 4300px;
    }
    50.00001% {
        left: -4300px;
    }
    100% {
        left: 0px;
    }
}
#ul-work-slider {
    position: absolute;
    top: 50px;
    left: 0;
    width: 6000px;
    height: 338px;
    overflow-x: hidden;
}
#ul-work-slider li {
    position: absolute;
    top: 0;
    left: 100%;
    width: 450px;
    animation-duration: 96s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
#ul-work-slider li:nth-of-type(1) {
	animation-name: work-slider-item-1;
}
#ul-work-slider li:nth-of-type(2) {
	animation-name: work-slider-item-2;
}
#ul-work-slider li:nth-of-type(3) {
	animation-name: work-slider-item-3;
}
#ul-work-slider li:nth-of-type(4) {
	animation-name: work-slider-item-4;
}
#ul-work-slider li:nth-of-type(5) {
	animation-name: work-slider-item-5;
}
#ul-work-slider li:nth-of-type(6) {
	animation-name: work-slider-item-6;
}
#ul-work-slider li:nth-of-type(7) {
	animation-name: work-slider-item-7;
}
#ul-work-slider li:nth-of-type(8) {
	animation-name: work-slider-item-8;
}
#ul-work-slider li:nth-of-type(9) {
	animation-name: work-slider-item-9;
}
#ul-work-slider li:nth-of-type(10) {
	animation-name: work-slider-item-10;
}
#ul-work-slider li:nth-of-type(11) {
	animation-name: work-slider-item-11;
}
#ul-work-slider li:nth-of-type(12) {
	animation-name: work-slider-item-12;
}
@keyframes work-slider-item {
    0% {
        left: 100%;
    }
    100% {
        left: -450px;
    }
}
@keyframes work-slider-item-1 {
	0% {
		left: -500px;
    }
	0.0000001% {
		left: 5500px;
	}
	100% {
		left: -500px;
    }
}
@keyframes work-slider-item-2 {
	0% {
		left: 0;
    }
	8.3% {
		left: -500px;
	}
	8.3000001% {
		left: 5500px;
	}
	100% {
		left: 0;
	}
}
@keyframes work-slider-item-3 {
	0% {
		left: 500px;
    }
	16.6% {
		left: -500px;
	}
	16.6000001% {
		left: 5500px;
	}
	100% {
		left: 500px;
	}
}
@keyframes work-slider-item-4 {
	0% {
		left: 1000px;
    }
    24.9% {
		left: -500px;
	}
    24.9000001% {
		left: 5500px;
	}
	100% {
		left: 1000px;
	}
}
@keyframes work-slider-item-5 {
	0% {
		left: 1500px;
    }
	33.2% {
		left: -500px;
	}
	33.2000001% {
		left: 5500px;
	}
	100% {
		left: 1500px;
	}
}
@keyframes work-slider-item-6 {
	0% {
		left: 2000px;
    }
	41.5% {
		left: -500px;
	}
	41.5000001% {
		left: 5500px;
	}
	100% {
		left: 2000px;
	}
}
@keyframes work-slider-item-7 {
	0% {
		left: 2500px;
    }
	49.8% {
		left: -500px;
	}
	49.8000001% {
		left: 5500px;
	}
	100% {
		left: 2500px;
	}
}
@keyframes work-slider-item-8 {
	0% {
		left: 3000px;
    }
	58.1% {
		left: -500px;
	}
	58.1000001% {
		left: 5500px;
	}
	100% {
		left: 3000px;
	}
}
@keyframes work-slider-item-9 {
	0% {
		left: 3500px;
    }
	66.4% {
		left: -500px;
	}
	66.4000001% {
		left: 5500px;
	}
	100% {
		left: 3500px;
	}
}
@keyframes work-slider-item-10 {
	0% {
		left: 4000px;
    }
	74.7% {
		left: -500px;
	}
	74.7000001% {
		left: 5500px;
	}
	100% {
		left: 4000px;
	}
}
@keyframes work-slider-item-11 {
	0% {
		left: 4500px;
    }
	83% {
		left: -500px;
	}
	83.0000001% {
		left: 5500px;
	}
	100% {
		left: 4500px;
	}
}
@keyframes work-slider-item-12 {
	0% {
		left: 5000px;
    }
	91.3% {
		left: -500px;
	}
	91.3000001% {
		left: 5500px;
	}
	100% {
		left: 5000px;
	}
}
#ul-work-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 923px;
    height: auto;
    margin-bottom: 72px;
}
#ul-work-list li {
    height: auto;
    padding: 16px;
    border: 1px dashed #502419;
    border-radius: 8px;
    background-color: #F5C5A3;
}


/********************/
/*     schedule     */
/********************/
#section-index-schedule {
    height: 1187px;
}
#section-index-schedule .container-index-heading {
    width: 518px;
    top: 140px;
    left: 600px;
    z-index: 2;
}
#section-index-schedule .container-index-heading h1 {
    left: -40px;
}
#section-index-schedule .container-index-heading span {
    left: 80px;
}
#section-index-schedule > h2 {
    margin-bottom: 16px;
    font-weight: normal;
}
.container-schedule {
    width: 100%;
}
.container-schedule-left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 1264px;
    height: 803px;
    border-radius: 0 40px 40px 0;
    background-color: #fff;
    z-index: 1;
}
.container-schedule-left p:last-of-type {
    width: 600px;
    font-size: 14px;
    letter-spacing: 1.4px;
}
#ul-schedule {
    display: flex;
    flex-direction: column;
    width: 292px;
    height: auto;
    margin-bottom: 64px;
}
#ul-schedule li {
    display: flex;
    align-items: center;
    height: 50px;
}
#ul-schedule li p {
    width: 134px;
    height: 100%;
    padding-top: 10px;
}
#ul-schedule li p:first-of-type {
    border-bottom: 1px solid #502419;
    text-align: right;
}
#ul-schedule li p:last-of-type {
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
}
#img-schedule {
    position: absolute;
    top: 380px;
    right: 0;
    width: 790px;
}
#ul-schedule .li-schedule-green p:first-of-type,
#ul-schedule .li-schedule-green p:last-of-type {
    color: #99AD9D;
}
#ul-schedule .li-schedule-orange p:first-of-type,
#ul-schedule .li-schedule-orange p:last-of-type {
    color: #F5C5A3;
}
#p-schedule-morning,
#p-schedule-afternoon {
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: vertical-rl;
    width: 52px;
    height: 130px;
    padding: 27px 11px 16px 11px;
    color: #fff;
}
#p-schedule-morning {
    background-color: #E1BAB7;
    top: 110px;
    left: 750px;
}
#p-schedule-afternoon {
    background-color: #BCCDDC;
    top: 310px;
    left: 750px;
}


/********************/
/*       Flow       */
/********************/
#section-index-flow {
    height: 1874px;
}
#section-index-flow .container-index-heading {
    width: 400px;
    top: 100px;
    left: calc(50% - 200px);
    z-index: 2;
    transform: none;
}
#section-index-flow .container-index-heading h1 {
    left: -40px;
}
#section-index-flow .container-index-heading span {
    left: 80px;
}
#ul-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 64px;
    width: 100%;
    max-width: 1240px;
    height: auto;
    margin: 200px auto 64px auto;
}
#ul-flow > li {
    display: flex;
    padding-right: 64px;
}
#ul-flow > li:last-of-type {
    padding-right: 0;
}
#ul-flow > li > img:last-of-type {
    display: block;
    position: absolute;
    top: 98px;
    right: 14px;
    width: 28px;
    height: 16px;
    transform: rotate(-90deg);
}
#ul-flow > li:last-of-type > img:last-of-type {
    display: none;
}
.container-flow-featured {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 264px;
    height: 200px;
    border-radius: 24px;
    background-color: #fff;
}
.container-flow-featured img {
    display: block;
    width: 150px;
}
.container-flow-upper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 264px;
}
.container-flow-upper h2 {
    padding-bottom: 24px;
    border-bottom: 1px solid #502419;
    font-size: 20px;
    text-align: center;
    letter-spacing: 2.0px;
}
/*Target*/
#container-flow-target {
    width: 1240px;
    height: 348px;
    padding: 56px 0;
    margin: 0 auto;
    border-radius: 24px;
    background-color: #F5C5A3;
}
#container-flow-target h2 {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 2.4px;
    text-align: center;
}
#ul-flow-target {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}
#ul-flow-target li {
    width: 114px;
    height: 56px;
    padding-top: 16px;
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
}
#ul-flow-target-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 392px;
    margin: 0 auto;
}
#ul-flow-target-details li {
    margin-left: 20px;
}
#ul-flow-target-details li:before {
    content: "";
    position: absolute;
    top: 4px;
    left: -22px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #502419;
}
#img-target-deco-1,
#img-target-deco-2,
#img-target-deco-3,
#img-target-deco-4,
#img-target-deco-5,
#img-target-deco-6 {
    display: block;
    position: absolute;
}
#img-target-deco-1 {
    top: -60px;
    right: -60px;
}
#img-target-deco-2 {
    top:40px;
    left: -60px;
}
#img-target-deco-3 {
    bottom: -50px;
    left: -40px;
}
#img-target-deco-4 {
    bottom: -20px;
    right:  150px;
}
#img-target-deco-5 {
    bottom: -20px;
    right:  80px;
}
#img-target-deco-6 {
    bottom: -20px;
    right:  10px;
}


/********************/
/*       Voice      */
/********************/
#section-index-voice {
    width: 1240px;
    padding: 284px 0 100px 0;
    margin: 0 auto;
}
#section-index-voice .container-index-heading {
    position: absolute;
    width: 400px;
    top: 80px;
    right: 0px;
    z-index: 2;
    transform: none;
}
#section-index-voice .container-index-heading h1 {
    left: -40px;
}
#section-index-voice .container-index-heading span {
    left: 80px;
}
#ul-voice {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}
#ul-voice li {
    display: flex;
    gap: 24px;
    width: 1240px;
    height: auto;
    padding: 40px;
    border-radius: 40px;
    background-color: #fff;
}
#ul-voice li > p:nth-of-type(1) {
    width: 948px;
    white-space: pre-line;
}
.container-voice-icon img {
    display: block;
    width: 134px;
    margin-bottom: 8px;
}
.container-voice-icon p {
    text-align: center;
}
.container-voice-viewmore {
    display: none;
}


/********************/
/*       News       */
/********************/
#section-index-news {
    width: 1240px;
    height: 710px;
    padding: 100px 0;
    margin: 0 auto;
}
#section-index-news .container-index-heading {
    position: absolute;
    width: 388px;
    top: 230px;
    left: -114px;
    z-index: 2;
}
#section-index-news .container-index-heading h1 {
    left: -40px;
}
#section-index-news .container-index-heading span {
    left: 80px;
}
#container-news-slider-upper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    padding: 0 16px;
    margin: 0 0 48px auto;
}
#container-news-slider-buttons {
    display: flex;
    gap: 56px;
}
#img-news-slider-arrow-left, 
#img-news-slider-arrow-right {
    display: block;
}
#img-news-slider-arrow-left {
    transform: rotate(180deg);
}
/*News List Button*/
#container-news-slider-newslist {
    display: flex;
    align-items: center;
    gap: 16px;
}
#container-news-slider-newslist > img {
    display: block;
    width: 6px;
}
/*news list*/
#container-news-slider-lower {
    width: 1632px;
    left: 240px;
}
#ul-news-slider {
    width: 100%;
    left: 0;
}
#ul-news-slider .slick-slide a {
    display: block;
    height: 454px;
    box-sizing: content-box;
}
.container-news-slider-featured {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 320px;
    height: 320px;
    border-radius: 16px;
    background-color: #fff;
    object-fit: cover;
    overflow: hidden;
}
#ul-news-slider li a > p:nth-of-type(1) {
    position: absolute;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 2.4px;
    transform: translateX(370px) translateY(-310px) rotate(90deg);
    transform-origin: top left;
}
#ul-news-slider li a > p:nth-of-type(2) {
    position: absolute;
    bottom: 86px;
    left: 0;
    width: 320px;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1.4px;
}
#ul-news-slider li a > h2 {
    position: absolute;
    width: 320px;
    bottom: 0px;
    left: 0;
    font-weight: normal;
}
#ul-news-slider button.slick-prev.slick-arrow,
#ul-news-slider button.slick-next.slick-arrow {
    position: absolute;
    width: 17px;
    height: 32px;
}
#ul-news-slider button.slick-prev.slick-arrow::before,
#ul-news-slider button.slick-next.slick-arrow::before {
    display: none;
}
#ul-news-slider button.slick-prev.slick-arrow {
    top: -64px;
    left: 14px;
}
#ul-news-slider button.slick-next.slick-arrow {
    top: -64px;
    left: 86px;
}
#ul-news-slider .slick-track {
    margin-left: 0;
}


/********************/
/*      Access      */
/********************/
#container-index-access {
    display: flex;
    justify-content: start;
    gap: 90px;
    width: 1240px;
    height: 964px;
    padding-top: 304px;
    margin: 0 auto;
}
#section-index-access .container-index-heading {
    position: absolute;
    top: 100px;
    left: calc(50% - 192px);
    width: 384px;
}
#section-index-access .container-index-heading h1 {
    left: -40px;
}
#section-index-access .container-index-heading span {
    left: 80px;
}
#container-index-access > iframe {
    width: 560px;
    height: 560px;
    border-radius: 40px;
}
#contianer-index-access-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 370px;
}
#contianer-index-access-right > p:nth-of-type(1) {
    font-size: 24px;
    letter-spacing: 2.4px;
    line-height: 48px;
}

/********************/
/*      Office      */
/********************/
#section-index-office {
    padding: 100px 0;
}
#section-index-office .container-index-heading {
    position: absolute;
    top: 100px;
    left: auto;
    right: calc(50% - 620px);
    width: 384px;
    z-index: 2;
}
#section-index-office .container-index-heading h1 {
    left: -40px;
}
#section-index-office .container-index-heading span {
    left: 80px;
}
#ul-office {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    top: 60px;
    width: 1264px;
    height: 360px;
    padding: 120px 100px 120px 300px;
    border-radius: 0 40px 40px 0;
    background-color: #fff;
    z-index: 1;
}
#ul-office li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 228px;
    height: 120px;
    border: 1px solid #502419;
}
#img-office {
    display: block;
    width: 1240px;
    margin: 0 auto 0 auto;
    border-radius: 40px;
}

/********************/
/*      Comment     */
/********************/
#section-index-comment {
    height: 80px;
    margin-top: 80px;
}
#section-index-comment p {
    font-size: 24px;
    letter-spacing: 2.4px;
    text-align: center;
}


/********************/
/*      Footer      */
/********************/
footer {
    height: 400px;
    margin-top: 100px;
    background-color: #C1B596;
}
.a-footer-button-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    top: -100px;
    width: 920px;
    height: 193px;
    margin: 0 auto;
    border-radius: 16px;
    background-color: #502419;
    transition: 0.3s all;
}
.a-footer-button-contact:hover {
    top: -120px;
    background-color: #fff;
    box-shadow: 0 8px 8px #50241940;
}
.a-footer-button-contact p {
    color: #fff;
    transition: 0.3s all;
}
.a-footer-button-contact:hover p {
    color: #502419;
}
.a-footer-button-contact p:first-of-type {
    font-family: "Quicksand", sans-serif;
    font-size: 48px;
    letter-spacing: 4.8px;
}
.a-footer-button-contact p:last-of-type {
    font-size: 14px;
    letter-spacing: 1.4px;
}
.ul-footer-upper,
.ul-footer-lower {
    display: flex;
    justify-content: space-between;
    top: -20px;
}
.ul-footer-upper {
    width: 665px;
    margin: 0 auto 64px auto;
}
.ul-footer-lower {
    width: 302px;
    margin: 0 auto 48px auto;
    font-size: 12px;
    letter-spacing: 1.2px;
}
.p-copyright {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
}


/********************/
/*  inquiry button  */
/********************/
#container-inquiry-rightbottom *,
#container-inquiry-rightbottom-shadow {
    box-sizing: border-box;
}
#container-inquiry-rightbottom,
#container-inquiry-rightbottom-shadow {
    display: block;
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 24px;
	animation-name: inquiry-fadein;
	animation-duration: 0.3s;
	animation-fill-mode: forwards;
}
#container-inquiry-rightbottom {
    bottom: 40px;
    right: 40px;
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    overflow: hidden;
    user-select: none;
    z-index: 10;

}
#container-inquiry-rightbottom.close,
#container-inquiry-rightbottom-shadow.close {
	animation-name: inquiry-fadeout;
}
@keyframes inquiry-fadein {
	0% {
		visibility: hidden;
		opacity: 0;
	}
	1% {
		visibility: visible;
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes inquiry-fadeout {
	0% {
		visibility: visible;
		opacity: 1;
	}
	99% {
		visibility: visible;
		opacity: 0;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}
#container-inquiry-rightbottom-upper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 40%;
    padding: 26px 20px 18px 20px;
    background-color: #ff383c;
}
#container-inquiry-rightbottom-upper p {
    color: #fff;
    text-align: center;
    font-weight: bold;
}
#container-inquiry-rightbottom-upper p:first-of-type {
    font-size: 38px;
    letter-spacing: 4px;
}
#container-inquiry-rightbottom-upper p:last-of-type {
    font-size: 20px;
    letter-spacing: 2px;
}
#container-inquiry-rightbottom-lower {
    height: 60%;
    padding: 16px;
}
#container-inquiry-rightbottom-lower p {
    color: #ff383c;
    text-align: center;
    font-weight: bold;
}
#container-inquiry-rightbottom-lower > p:nth-of-type(1) {
    font-size: 26px;
    letter-spacing: 0;
}
#container-inquiry-rightbottom-lower > p:nth-of-type(2) {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1.4px;
}
#container-inquiry-rightbottom-shadow {
    bottom: 20px;
    right: 20px;
    background-color: #ff8d28;
    border: 4px solid #ff383c;
    z-index: 9;
}
#a-button-inquiry-rightbottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 248px;
    height: 50px;
    border-radius: 40px;
    background-color: #ff383c;
}
#a-button-inquiry-rightbottom > img {
    display: block;
    width: 24px;
}
#a-button-inquiry-rightbottom > p {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1.6px;
}



/*1750px*/
@media screen and (max-width: 1750px) {
    /********************/
    /*     schedule     */
    /********************/
    .container-schedule-left {
        width: 1000px;
    }
    #img-schedule {
        width: 640px;
        top: 500px;
    }
    #p-schedule-morning,
    #p-schedule-afternoon {
        left: 600px;
    }
}

/*1400px*/
@media screen and (max-width: 1400px) {
    
    body.open.on-mv {
        overflow: hidden;
    }

    /********************/
    /*      Header      */
    /********************/
    #container-header-top {
        left: calc(50% - 475px);
        width: 950px;
    }
    #a-hamburger {
        margin-top: 64px;
    }
    #img-hamburger {
        width: 33px;
        height: 16px;
    }
    /*header menu*/
    #ul-header-menu,
    header.on-mv #ul-header-menu {
        right: calc(50% - 146px);
    }
    header.open #ul-header-menu {
        top: 124px;
        right: calc(50% - 146px);
    }
    /*
    header #container-header-bottom {
        display: none;
    }
    header.open #container-header-bottom {
        display: block;
    }
    */
    header.on-mv #container-header-bottom {
        animation-fill-mode: forwards;
        animation-duration: 0.3s;
    }
    #container-header-bottom,
    header.on-mv #container-header-bottom {
        position: fixed;
        top: 0;
        left: 0;  
        width: 100vw;  
        height: 100vh;
        background-color: #F4E7C7DD;
    }
    header.on-mv:not(.open) #container-header-bottom
    {
        display: none;
        opacity: 0;
    }
    #container-header-bottom.header-bottom-initial-state,
    header.on-mv #container-header-bottom.header-bottom-initial-state {
        display: none;
        width: 0;  
        height: auto;
    }
    header.on-mv #a-hamburger {
        display: block;
    }


    /********************/
    /*        mv        */
    /********************/
    #section-index-mv {
        padding-top: 163px;
        height: 800px;
    }
    #container-mv {
        width: 557px;
        height: 418px;
        top: 0;
        left: calc(50% - 278px);
    }
    #ul-mv {
        top: 5%;
        left: 4%;
        width: 96%;
        height: auto;
        aspect-ratio: 363 / 268;
    }
    #img-deco-1 {
        width: 110px;
    }
    #img-deco-2 {
        width: 81px;
    }
    #img-deco-3 {
        width: 111px;
    }
    #img-deco-4 {
        width: 88px;
    }
    #img-deco-5 {
        width: 102px;
    }
    #img-cc01 {
        top: -120px;
        left: calc(50% - 280px);
        width: 213px;
    }
    #img-cc02 {
        top: -60px;
        left: calc(50% - 450px);
        width: 392px;
    }
    #container-mv-lower {
        justify-content: center;
        top: 100px;
        left: 0;
        width: 100%;
        height: auto;
        margin: 0;
    }
    .img-deco-lower {
        width: 54px;
    }
    #ul-mv {
        width: 92%;
    }


    /********************/
    /*     Company      */
    /********************/
    #section-index-company {
        flex-direction: column;
    }
    #img-company-featured {
        display: block;
        width: clamp(10px,100%,600px);
        margin: 0 auto;
    }


    /********************/
    /*       Work       */
    /********************/
    #section-index-work {
        width: 1000px;
    }
    #ul-work-list {
        width: 627px;
    }


    /********************/
    /*     schedule     */
    /********************/
    #section-index-schedule .container-index-heading {
        left: 400px;
    }
    .container-schedule {
        height: 600px;
    }
    .container-schedule-left {
        width: 860px;
        height: 835px;
        left: 0;
    }
    #img-schedule {
        top: 550px;
        right: 0;
    }
    #p-schedule-morning,
    #p-schedule-afternoon {
        left: 540px;
    }
    #p-schedule-morning {
        top: 130px;
    }
    #p-schedule-afternoon {
        top: 325px;
    }
    .container-schedule-left p:last-of-type {
        width: 500px;
    }
    /*Target*/
    #container-flow-target {
        width: 1008px;
        height: 348px;
    }   


    /********************/
    /*       Voice      */
    /********************/
    #section-index-voice {
        width: 100%;
        padding: 284px 16px 100px 16px;
    }
    #ul-voice li {
        width: 100%;
        max-width: 1008px;
    }
    #ul-voice li > p:nth-of-type(1) {
        width: 748px;
        white-space: pre-line;
    }


    /********************/
    /*      News        */
    /********************/
    #section-index-news {
        width: 1008px;
    }
    #container-news-slider-buttons {
        left: 232px;
    }


    /********************/
    /*      Access      */
    /********************/
    #container-index-access {
        width: 100%;
        max-width: 1008px;
        padding: 340px 16px 0 16px;
    }


    /********************/
    /*      Office      */
    /********************/
    #section-index-office .container-index-heading {
        right: calc(50% - 488px);
    }
    #ul-office {
        flex-wrap: wrap;
        width: 860px;
        height: 520px;
        padding: 120px 170px;
    }
    #img-office {
        width: 1008px;
        padding: 0 16px;
    }


    /********************/
    /*  inquiry button  */
    /********************/
    #container-inquiry-rightbottom,
    #container-inquiry-rightbottom-shadow {
        width: 240px;
        height: 240px;
    }
    #container-inquiry-rightbottom-upper {
        padding: 20px 20px 20px 20px;
    }
    #container-inquiry-rightbottom-upper p:first-of-type {
        font-size: 32px;
        letter-spacing: 3.2px;
    }
    #container-inquiry-rightbottom-upper p:last-of-type {
        font-size: 20px;
        letter-spacing: 2px;
    }
    #container-inquiry-rightbottom-lower > p:nth-of-type(1) {
        font-size: 20px;
        letter-spacing: 0;
    }
    #container-inquiry-rightbottom-lower > p:nth-of-type(2) {
        top:-10px;
        margin-bottom: 0px;
        font-size: 12px;
        letter-spacing: 1.2px;
    }
    #a-button-inquiry-rightbottom {
        top:-10px;
        width: 208px;
        height: 56px;
    }
} 


/*1200px*/
@media screen and (max-width:1200px) {
    .container-schedule-left {
        width: 600px;
        height: 803px;
    }
    #img-schedule {
        width: 600px;
    }
    #p-schedule-morning,
    #p-schedule-afternoon {
        left: 400px;
    }
    #p-schedule-morning {
        top: 110px;
    }
    #p-schedule-afternoon {
        top: 310px;
    }
    /*header menu*/
    header.open #ul-header-menu {
        top: 140px;
    }
}

/*1060px*/
@media screen and (max-width:1060px) {

    /********************/
    /*       Flow       */
    /********************/
    #section-index-flow {
        height: auto;
        padding: 0 16px 100px 16px;
    }
    #ul-flow {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    #ul-flow > li {
        padding-right: 0;
    }
    #ul-flow > li > img:last-of-type {
        top: auto;
        bottom: -40px;
        right: calc(50% - 21px);
        width: 42px;
        height: 24px;
        transform: rotate(0deg);
    }
    #ul-flow > li {
        width: 100%;
    }
    .container-flow-upper {
        width: 100%;
    }
    .container-flow-featured  {
        margin: 0 auto;
    }
    .container-schedule-left p:last-of-type {
        width: 450px;
    }
    /*Target*/
    #container-flow-target {
        width: 100%;
        height: auto;
    }
    #ul-flow-target li {
        width: 82px;
        height: 40px;
        padding-top: 8px;
    }
    #ul-flow-target {
        flex-wrap: wrap;
    }
    #ul-flow-target-details {
        width: 100%;
        max-width: 400px;
    }

}


/*Mobile*/
@media screen and (max-width:1010px) {

    .visible-pc {
        display: none;
    }
    .visible-sp {
        display: initial;
    }


    /*General Classes(Creefu)*/
    .container-index-heading {
        height: 78px;
    }
    .container-index-heading h1 {
        font-size: 24px;
    }
    .container-index-heading p {
        font-size: 11px;
    }


    /********************/
    /*      Header      */
    /********************/
    #container-header-top {
        display: flex;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0 16px;
    }
    #a-header-creefu-logo {
        margin-top: 20px;
    }
    #img-header-creefu-logo {
        width: 64px;
        height: 20px;
    }
    #a-hamburger {
        margin-top: 24px;
    }
    #img-hamburger-sp {
        display: block;
        width: 23px;
        height: 10px;
        transform: rotate(180deg);
    }

    /*header menu*/
    header.open #ul-header-menu {
        top: 70px;
        right: calc(50% - 146px);
    }

    /********************/
    /*        mv        */
    /********************/
    #section-index-mv {
        padding: 0 24px;
        height: 143vw;
    }
    #container-mv {
        width: 100%;
        height: 65vw;
        top: 80px;
        left: 0;
    }
    #container-mv > .visible-sp {
        width: 100%;
        max-width: none;
    }
    #img-deco-1 {
        width: 17vw;
    }
    #img-deco-2 {
        width: 14vw;
    }
    #img-deco-3 {
        width: 15vw;
    }
    #img-deco-4 {
        width: 15vw;
    }
    #img-deco-5 {
        width: 16vw;
    }
    #img-cc01 {
        position: absolute;
        top: calc(80px + 60vw);
        left: 0%;
        width: 40%;
    }
    #img-cc02 {
        position: absolute;
        top: calc(80px + 70vw);
        left: 10%;
        width: 80%;
    }
    #container-mv-lower {
        position: absolute;
        top: calc(80px + 90vw);
    }
    .img-deco-lower {
        width: 14vw;
    }
    .img-mv {
        width: 100%;
        max-width: none;
    }
    #ul-mv li img {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
    }
 
    /********************/
    /*     Company      */
    /********************/
    #section-index-company {
        padding: 0 16px;
    }
	#container-index-company-heading li {
		width: 60px;
	}
    #container-index-company-heading h1 {
		width: 30px;
        font-size: 20px;
        letter-spacing: 2px;
    }
    #container-index-company-heading li:nth-of-type(1)::before {
		height: 90px;
    }
    #container-index-company-heading li:nth-of-type(2)::before {
		height: 135px;
    }
    #container-index-company-heading li:nth-of-type(3)::before {
		height: 120px;
    }
    #container-index-company-upper > p {
        width: 100%;
        height: auto;
    }
    #img-company-featured {
        width: clamp(10px,100%,500px);
    }

    /********************/
    /*       Work       */
    /********************/
    #container-work-slider-bg li {
        width: 3128px;
        height: 130px;
    }
    @keyframes work-slider-bg {
        0% {
            opacity: 1;
            left: 3200px;
        }
        100% {
            opacity: 1;
            left: -3200px;
        }
    }
    @keyframes work-slider-bg-backwards {
        0% {
            opacity: 1;
            left: -3200px;
        }
        100% {
            opacity: 1;
            left: 3200px;
        }
    }
    #ul-work-slider li {
        width: 300px;
    }
    #ul-work-slider {
        width: 3500px;
        height: 300px;
    }


    /********************/
    /*       Work       */
    /********************/
    #section-index-work {
        width: 100%;
        height: auto;
        padding: 0 16px 100px 16px;
    }
    #section-index-work .container-index-heading {
        position: relative;
        top: 0;
        left: 0;
        width: 235px;
        margin-bottom: 24px;
        transform: none;
    }
    #section-index-work .container-index-heading h1 {
        left: -20px;
    }
    #section-index-work .container-index-heading span {
        left: 40px;
    }
    #ul-work-list {
        width: 100%;
    }
    #a-banner,
    #a-banner .visible-sp {
        display: block;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
	@keyframes work-slider-item-1 {
		0% {
			left: -350px;
		}
		0.0000001% {
			left: 3850px;
		}
		100% {
			left: -350px;
		}
	}
	@keyframes work-slider-item-2 {
		0% {
			left: 0;
		}
		8.3% {
			left: -350px ;
		}
		8.3000001% {
			left: 3850px;
		}
		100% {
			left: 0;
		}
	}
	@keyframes work-slider-item-3 {
		0% {
			left: 350px;
		}
		16.6% {
			left: -350px;
		}
		16.6000001% {
			left: 3850px;
		}
		100% {
			left: 350px;
		}
	}
	@keyframes work-slider-item-4 {
		0% {
			left: 700px;
		}
		24.9% {
			left: -350px;
		}
		24.9000001% {
			left: 3850px;
		}
		100% {
			left: 700px;
		}
	}
	@keyframes work-slider-item-5 {
		0% {
			left: 1050px;
		}
		33.2% {
			left: -350px;
		}
		33.2000001% {
			left: 3850px;
		}
		100% {
			left: 1050px;
		}
	}
	@keyframes work-slider-item-6 {
		0% {
			left: 1400px;
		}
		41.5% {
			left: -350px;
		}
		41.5000001% {
			left: 3850px;
		}
		100% {
			left: 1400px;
		}
	}
	@keyframes work-slider-item-7 {
		0% {
			left: 1750px;
		}
		49.8% {
			left: -350px;
		}
		49.8000001% {
			left: 3850px;
		}
		100% {
			left: 1750px;
		}
	}
	@keyframes work-slider-item-8 {
		0% {
			left: 2100px;
		}
		58.1% {
			left: -350px;
		}
		58.1000001% {
			left: 3850px;
		}
		100% {
			left: 2100px;
		}
	}
	@keyframes work-slider-item-9 {
		0% {
			left: 2450px;
		}
		66.4% {
			left: -350px;
		}
		66.4000001% {
			left: 3850px;
		}
		100% {
			left: 2450px;
		}
	}
	@keyframes work-slider-item-10 {
		0% {
			left: 2800px;
		}
		74.7% {
			left: -350px;
		}
		74.7000001% {
			left: 3850px;
		}
		100% {
			left: 2800px;
		}
	}
	@keyframes work-slider-item-11 {
		0% {
			left: 3150px;
		}
		83% {
			left: -350px;
		}
		83.0000001% {
			left: 3850px;
		}
		100% {
			left: 3150px;
		}
	}
	@keyframes work-slider-item-12 {
		0% {
			left: 3500px;
		}
		91.3% {
			left: -350px;
		}
		91.3000001% {
			left: 3850px;
		}
		100% {
			left: 3500px;
		}
	}

    /********************/
    /*     schedule     */
    /********************/
    #section-index-schedule {
        height: calc(908px + 66.2vw);
        padding: 0 0 100px 0;
    }
    #section-index-schedule .container-index-heading {
        width: 310px;
        top: 0;
        left: calc(50% - 155px);
    }
    .container-schedule-left {
        position: absolute;
        top: -39px;
        width: 100%;
        height: 830px;
        padding: 100px 16px 0px 16px;
        justify-content: start;
    }
    .container-schedule-left p:last-of-type {
        width: 100%;
        max-width: 600px;
    }
    #p-schedule-morning,
    #p-schedule-afternoon {
        width: 54px;
        left: calc(50% + 70px);
    }
    #p-schedule-morning {
        top: 120px;
    }
    #p-schedule-afternoon {
        top: 320px;
    }
    #img-schedule {
        width: 80%;
        top: 780px;
    }
    #ul-schedule {
        width: 200px;
        left: -30px
    }


    /********************/
    /*       Flow       */
    /********************/
    #section-index-flow .container-index-heading {
        width: 250px;
        top: 50px;
        left: 16px;
    }
    #section-index-flow .container-index-heading h1 {
        left: -20px;
    }
    #section-index-flow .container-index-heading span {
        left: 40px;
    }
    #ul-flow {
        margin: 100px auto 64px auto;
    }
    /*Target*/
    #container-flow-target {
        padding: 40px 16px;
    }
    #img-target-deco-1 {
        top: -40px;
        right: -6vw;
        width: 22vw;
        max-width: 130px;
    }
    #img-target-deco-2 {
        top: -20px;
        left: -4vw;
        width: 20vw;
        max-width: 100px;
    }
    #img-target-deco-3 {
        bottom: -40px;
        left: -4vw;
        width: 22vw;
        max-width: 100px;
    }
    #img-target-deco-4 {
        bottom: -20px;
        right:  40vw;
        width: 15vw;
        max-width: 60px;
    }
    #img-target-deco-5 {
        bottom: -20px;
        right:  24vw;
        width: 15vw;
        max-width: 60px;
    }
    #img-target-deco-6 {
        bottom: -20px;
        right:  8vw;
        width: 15vw;
        max-width: 60px;
    }


    /********************/
    /*       Voice      */
    /********************/
    #section-index-voice {
        width: 100%;
        padding: 200px 16px 100px 16px;
    }
    #section-index-voice .container-index-heading {
        width: 250px;
        top: 72px;
        left: 16px;
    }
    #section-index-voice .container-index-heading h1 {
        left: -20px;
    }
    #section-index-voice .container-index-heading span {
        left: 40px;
    }
    #ul-voice {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    #ul-voice li {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        height: 424px;
        border-radius: 16px;
    }
    #ul-voice li.open {
        height: auto;
    }
    #ul-voice li > p:nth-of-type(1) {
        width: 100%;
        height: 128px;
        margin-bottom: 32px;
        white-space: pre-line;
        overflow-y: hidden;
    }
    #ul-voice li.open > p:nth-of-type(1) {
        height: auto;
    }
    .container-voice-icon img {
        width: 104px;
        margin: 0 auto 8px auto;
    }
    .container-voice-viewmore {
        display: block;
        text-align: center;
        cursor: pointer;
        user-select: none;
    }
    li.open .container-voice-viewmore {
        display: none;
    }
    .container-voice-viewmore p {
        color: #F5C5A3;
    }
    .container-voice-viewmore p img {
        width: 10px;
        margin-left: 8px;
    }

    /********************/
    /*      News        */
    /********************/
    #section-index-news {
        width: 100%;
        height: auto;
    }
    #section-index-news .container-index-heading {
        position: relative;
        top: -30px;
        left: 16px;
        width: 235px;
        margin-bottom: 24px;
        transform: none;
    }
    #section-index-news .container-index-heading h1 {
        left: -20px;
    }
    #section-index-news .container-index-heading span {
        left: 40px;
    }
    #container-news-slider-upper {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 0 16px 48px 16px;
        margin: 0;
    }
    #container-news-slider-buttons {
        left: 0;
    }
    #container-news-slider-lower {
        width: 100%;
        left: 0px;
    }
    #img-news-slider-arrow-left {
        width: 10px;
    }
    #img-news-slider-arrow-right {
        width: 10px;
    }
    .container-news-slider-featured {
        width: 63vw;
        height: 63vw;
        margin-bottom: 24px;
    }
    #ul-news-slider .slick-slide a {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    #ul-news-slider li a > p:nth-of-type(1) {
        font-size: 20px;
        letter-spacing: 2px;
        transform-origin: top left;
        transform: translateX(calc(63vw + 36px)) rotate(90deg);
    }
    #ul-news-slider li a > p:nth-of-type(2) {
        position: relative;
        bottom: 0;
        left: 0;
        width: 63vw;
        font-size: 12px;
        letter-spacing: 1.2px;
    }
    #ul-news-slider li a > h2 {
        position: relative;
        width: 63vw;
        bottom: 0;
        left: 0;
        font-size: 14px;
        letter-spacing: 1.4px;
    }
    #ul-news-slider button.slick-prev.slick-arrow,
    #ul-news-slider button.slick-next.slick-arrow {
        position: absolute;
        width: 10px;
        height: 20px;
    }
    #ul-news-slider button.slick-prev.slick-arrow {
        top: -64px;
        left: 16px;
    }
    #ul-news-slider button.slick-next.slick-arrow {
        top: -64px;
        left: 82px;
    }


    /********************/
    /*      Access      */
    /********************/
    #section-index-access {
        padding-top: 130px;
        padding-bottom: 100px;
    }
    #section-index-access .container-index-heading {
        position: relative;
        top: -78px;
        left: 16px;
        width: 235px;
        margin-bottom: 24px;
        transform: none;
    }
    #section-index-access .container-index-heading h1 {
        left: -20px;
    }
    #section-index-access .container-index-heading span {
        left: 40px;
    }
    #container-index-access {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 0 16px;
    }
    #container-index-access > iframe {
        width: 100% ;
        height: 318px;
        border-radius: 16px;
    }
    #contianer-index-access-right {
        display: flex;
        flex-direction: column;
        gap: 48px;
        max-width: 340px;
        margin: 0 auto;
    }
    #contianer-index-access-right > p:nth-of-type(1) {
        font-size: 20px;
        letter-spacing: 2px;
        line-height: 40px;
    }


    /********************/
    /*      Office      */
    /********************/
    #section-index-office {
        padding: 0 0 50px 0;
    }
    #section-index-office .container-index-heading {
        position: relative;
        top: 60px;
        left: 16px;
        width: 235px;
        margin-bottom: 24px;
        transform: none;
    }
    #section-index-office .container-index-heading h1 {
        left: -20px;
    }
    #section-index-office .container-index-heading span {
        left: 40px;
    }
    #ul-office {
        align-items: center;
        gap: 16px;
        top: 0px;
        width: 100%;
        height: auto;
        border-radius: 0 24px 24px 0;
        padding: 80px 16px 50px 16px;
    }
    #ul-office li a {
        width: 150px;
        height: 80px;
    }
    #ul-office li a > img {
        display: block;
        width: 100px;
    }
    #ul-office li a > p {
        font-size: 11px;
        letter-spacing: 1.1px;
    }
    #img-office {
        top: -24px;
        width: 100%;
        height: 256px;
        padding: 0;
        border-radius: 0;
        object-fit: cover;
    }

    /********************/
    /*      Comment     */
    /********************/
    #section-index-comment {
        height: auto;
        margin-top: 0;
        margin-bottom: 50px;
    }
    #section-index-comment p {
        font-size: 20px;
        letter-spacing: 2px;
        padding: 0 16px;
    }


    /********************/
    /*      Footer      */
    /********************/
    footer {
        height: auto;
    }
    .a-footer-button-contact {
        width: calc(100% - 32px);
        height: 110px;
        top: -80px;
    }
    .a-footer-button-contact:hover {
        top: -80px;
        box-shadow: none;
    }
    .ul-footer-upper,
    .ul-footer-lower {
        flex-wrap: wrap;
        row-gap: 24px;
        width: calc(100% - 32px);
        max-width: 500px;
    }
    .ul-footer-upper li {
        width: 50%;
    }
    .a-footer-button-contact p:first-of-type {
        top: 10px;
        font-size: 32px;
        letter-spacing: 3.2px;
    }
    .a-footer-button-contact p:last-of-type {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
    .p-copyright {
        padding-bottom: 20px;
    }
}

@media screen and (max-width:768px) {
    
    /********************/
    /*  inquiry button  */
    /********************/
    #container-inquiry-rightbottom {
        width: 100vw;
        height: 88px;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    #container-inquiry-rightbottom-shadow {
        display: none;
    }
    #container-inquiry-rightbottom-upper {
        flex-direction: row;
        justify-content: center;
        gap: 4px;
        padding: 2px 0;
    }    
    #container-inquiry-rightbottom-upper p:first-of-type,
    #container-inquiry-rightbottom-upper p:last-of-type {
        font-size: 16px;
        letter-spacing: 1.6px;
    }
    #container-inquiry-rightbottom-lower {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 0;
    }
    #container-inquiry-rightbottom-lower p {
        width:50%;
        height: 20px;
    }
    #container-inquiry-rightbottom-lower > p:nth-of-type(1) {
        font-size: 16px;
        letter-spacing: 0;
    }
    #container-inquiry-rightbottom-lower > p:nth-of-type(2) {
        top: 0;
        font-size: 10px;
        letter-spacing: 0;
    }
    #a-button-inquiry-rightbottom {
        top: 8px;
        width: 144px;
        height: 36px;
    }
    #a-button-inquiry-rightbottom > img {
        left: 6px;
    }
    #a-button-inquiry-rightbottom > p {
        top: -6px;
        width: 100px;
        font-size: 14px;
        letter-spacing: 1.4px;
    }
}