@charset "UTF-8";

:root {
    /* font family */
    --font-family-main: "Zen Kaku Gothic New", sans-serif;
    --font-family-accent: "Jost", sans-serif;
    --font-family-sub: "Noto Sans JP", sans-serif;
    /* color */
    --color-main-text: #202020;
    --color-sub-text: #ffffff;
    --color-accent-1: #E62F2B;
    --color-title-gradient: linear-gradient(45deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    /* font size */
    --h1-font-size: 3rem;
    --h1-font-size-sp: 2.3rem;
    --h1-font-size-en: 1.1rem;
    --h1-font-size-en-sp: 0.8rem;
    --h2-font-size: 2.5rem;
    --h2-font-size-sp: 1.8rem;
    --h2-font-size-en: 1.3rem;
    --h2-font-size-en-sp: 0.9rem;
    --h3-font-size: 1.8rem;
    --h3-font-size-sp: 1.4rem;
    --h3-font-size-en: 0.9rem;
    --main-text-font-size: 1rem;
    --small-text-font-size: 0.9rem;
    /* height */
    --main-text-line-height: 1.75;
    /* gradient */
    --vivid01: linear-gradient(45deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    --orange03: linear-gradient(to right, #F57504, #FBA55A);
}


/* ~~~~~~~~~~~~~~~~~~~~~~
branches
~~~~~~~~~~~~~~~~~~~~~~~*/


.only-sp {
    display: none;
}

.branches {
    overflow: hidden;
    background: url(../images/branches__background.png)no-repeat top 242px center / contain;
}


.branches__container {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
}

.branches__title {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    position: relative;
    z-index: 2;
}

.branches__title span {
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
    color: #E62F2B;
}

.branches__title-2 {
    margin-top: 10px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~
kerosene-delivery__top
~~~~~~~~~~~~~~~~~~~~~~~*/
.branches__top {
    margin-top: 70px;
    position: relative;
}

.branches__top-content {
    width: 511px;
    box-shadow: 0px 0px 10px rgba(32, 32, 32, 0.15);
    padding: 40px;
    background-color: #fff;
}

.branches__top-content-title {
    font-weight: 700;
    font-size: 16px;
    line-height: auto;
}

.branches__top-content-title span {
    font-weight: 700;
    font-size: 20px;
    line-height: auto;
    color: #E62F2B;
}

.branches__top-content-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    padding-left: 24px;
    position: relative;
}

.branches__top-content-text:first-child {
    margin-top: 30px;
}

.branches__top-content-text:not(:first-child) {
    margin-top: 15px;
}

.branches__top-content-text::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/branches__top-content-text-check.png)no-repeat center center / contain;
}

.branches__top-img {
    width: min(calc(695.3 / 1440 * 100vw),695.3px);
    position: absolute;
    left: 52%;
    top: -150px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~
branches__search
~~~~~~~~~~~~~~~~~~~~~~~*/
.branches__search {
    margin-top: 136px;
}

.branches__section-title {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    line-height: auto;
}

.branches__section-subtitle {
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 60px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~
branches__all
~~~~~~~~~~~~~~~~~~~~~~~*/
.branches__all {
    margin-top: 100px;
    padding-bottom: 100px;
}

.branches__all-content {
    margin-top: 70px;
}

.branches__all-accordion {

}

.branches__all-accordion:not(:first-child) {
    margin-top: 25px;
}

/* アコーディオンのヘッダー部分のスタイリング */
.branches__all-accordion-header {
    padding: 41px 0 36px;
    background: linear-gradient(45deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    cursor: pointer;
    outline: none;
    position: relative; /* 矢印アイコンの位置調整のため */
    list-style: none; /* デフォルトの矢印を消す */
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    line-height: auto;
}

.branches__all-accordion-header-2 {
    background: linear-gradient(82deg, #F57504 0%, #FBA55A 100%);
}

/* アコーディオンのコンテンツ部分のスタイリング */
.branches__all-accordion-content {
    padding: 23px 0 0 0;
}

/* カスタム矢印のスタイル */
.branches__all-accordion-header::after {
    content: '';
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    width: 19px;
    height: 15px;
    transition: transform 0.2s ease-in-out;
    background: url(../images/branches__all-accordion-header-vector.png)no-repeat center center / contain;
}

/* アコーディオンが開いている時の矢印のスタイル */
.branches__all-accordion[open] .branches__all-accordion-header::after {
  transform: rotate(180deg); /* 矢印を180度回転 */
}

/* WebKitベースのブラウザでデフォルトの矢印を消す */
.branches__all-accordion .branches__all-accordion-header::-webkit-details-marker {
    display: none;
}

.branches__all-accordion-content-item {
    border-bottom: 1px solid #BAB4B4;
    padding: 12.5px 0 37.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branches__all-accordion-content-item:not(:first-child) {
    margin-top: 25px;
}

.branches__all-accordion-content-item-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    width: 258px;
}

.branches__all-accordion-content-item-address {
    font-weight: 400;
    font-size: 18px;
    line-height: auto;
    width: 350px;
}

.branches__all-accordion-content-item-map {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: auto;
    color: #E62F2B;
    font-family: var(--font-family-accent);
}

.branches__all-accordion-content-item-detail {
    display: inline-block;
    text-align: center;
    padding: 13px 36px;
    border-radius: 50px;
    border: 1px solid #E62F2B;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #E62F2B;
}

.branches__all-accordion-content-item-info-text {
    font-weight: 700;
    font-size: 18px;
    line-height: auto;
    color: #FF8419;
}

/* ~~~~~~~~~~~~~~~~~~~~~~
single-branch
~~~~~~~~~~~~~~~~~~~~~~~*/
.single-branch {
    background: url(../images/single-branch-bg.png)no-repeat bottom center / contain;
    padding-bottom: 104px;
    margin-top: 77px;
}

.single-branch__title-container {
    text-align: center;
}

.single-branch__title {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    line-height: auto;
    background: linear-gradient(71deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
        -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        display: inline-block;
}

.single-branch__flex {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

.single-branch__img {
    width: 45.5%;
}

.single-branch__img img {
    aspect-ratio: 50 / 31;
    object-fit: cover;
}

.single-branch__content {
    width: 50%;
}
.single-branch__content table {
    border-top: 1px solid #D9D9D9;
    border-collapse: collapse;
}
.single-branch__content tr {
    border-bottom: 1px solid #D9D9D9;
}
.single-branch__content th {
    width: 149px;
    padding: 20px 0;
    font-weight: 700;
    font-size: 18px;
    line-height: auto;
    letter-spacing: 1.8px;
    text-align: left;
    vertical-align: top;
}
.single-branch__content td {
    padding: 20px 0 20px 40px;
    font-weight: 400;
    font-size: 18px;
    line-height: auto;
    letter-spacing: 1.8px;
}

.single-branch__content td a {
    font-weight: 700;
    font-size: 18px;
    line-height: auto;
    letter-spacing: 1.8px;
    color: #1A64C5;
}

.single-branch__content-kerosene-price {
    font-weight: 700;
    font-size: 24px;
    line-height: auto;
    letter-spacing: 2.4px;
    color: #DA3E3B;
}   

.single-branch__content-kerosene-price span {
    font-weight: 700;
    font-size: 16px;
    line-height: auto;
    letter-spacing: 1.6px;
    color: #DA3E3B;
}   

.single-branch__content-kerosene-time {
    font-weight: 400;
    font-size: 15px;
    line-height: auto;
    letter-spacing: 1.5px;
}

.single-branch__content-kerosene-text {
    margin-top: 15px;
    font-weight: 400;
    font-size: 15px;
    line-height: auto;
    letter-spacing: 1.5px;
}

.single-branch__news {
    width: 95%;
    max-width: 840px;
    margin: 70px auto 0;
    box-shadow: 0px 0px 10px rgba(32, 32, 32, 0.2);
    background-color: #fff;
    padding: 50px 45px;
    position: relative;
}

.single-branch__news::after {
    content: '';
    position: absolute;
    width: 283px;
    height: 245px;
    right: 0;
    bottom: 0;
    background: url(../images/single-branch__news-content-icon.png)no-repeat center center / contain;
    z-index: 1;
}

.single-branch__news-title {
    font-weight: 700;
    font-size: 24px;
    line-height: auto;
    letter-spacing: 2.4px;
    color: #DA3E3B;
}

.single-branch__news-content {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.single-branch__news-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    gap: 40px;
}

.single-branch__news-item:not(:first-child) {
    margin-top: 20px;
}

.single-branch__news-date {
    width: 125px;
    flex-shrink: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: auto;
    letter-spacing: 1.6px;
}

.single-branch__news-item-title {
    font-weight: 500;
    font-size: 18px;
    line-height: auto;
    letter-spacing: 1.8px;
}

.single-branch__news-button-container {
    margin-top: 40px;
    text-align: center;
}

.single-branch__news-button {
    display: inline-block;
    text-align: center;
    color: #FFF;
    padding: 16px 60px 16px 40px;
    border-radius: 24px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    background: linear-gradient(72deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
    position: relative;
}

.single-branch__news-button::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    background: url(../images/recruit_detail__entry-btn-icon.png)no-repeat center center / contain;
}

/* ~~~~~~~~~~~~~~~
レスポンシブ
~~~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
/* ~~~~~~~~~~~~~~~~~~~~~~
branches
~~~~~~~~~~~~~~~~~~~~~~~*/
.only-pc {
    display: none;
}

.only-sp {
    display: block;
}

.branches {
    background: url(../images/branches__background-sp.png)no-repeat top 195px center / contain;
}


.branches__container {
    width: 89.333%;
    max-width: auto;
}

.branches__title {
    text-align: left;
    font-size: 16px;
    line-height: 28px;
}

.branches__title span {
    font-size: 16px;
    line-height: 28px;
}

.branches__title-3 {
    margin-top: 5px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~
kerosene-delivery__top
~~~~~~~~~~~~~~~~~~~~~~~*/
.branches__top {
    margin-top: 170px;
}

.branches__top-content {
    width: 100%;
    padding: 20px;
}

.branches__top-content-title {
    font-size: 18px;
}

.branches__top-content-title span {
    font-size: 18px;
}

.branches__top-content-text:first-child {
    margin-top: 34px;
}

.branches__top-content-text:not(:first-child) {
    margin-top: 20px;
}

.branches__top-content-text::after {
    top: 6px;
    transform: none;
}

.branches__top-img {
    width: 326px;
    position: absolute;
    left: 18%;
    top: -272px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~
branches__search
~~~~~~~~~~~~~~~~~~~~~~~*/
.branches__search {
    margin-top: 78px;
}

.branches__section-title {
    font-size: 28px;
}

.branches__section-subtitle {
    font-size: 16px;
    text-align: left;
    margin-bottom: 50px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~
branches__all
~~~~~~~~~~~~~~~~~~~~~~~*/
.branches__all {
    margin-top: 70px;
}

.branches__all-content {
    margin-top: 50px;
}

.branches__all-accordion:not(:first-child) {
    margin-top: 5px;
}

/* アコーディオンのヘッダー部分のスタイリング */
.branches__all-accordion-header {
    padding: 15px 0 16px;
    font-size: 20px;
}

/* アコーディオンのコンテンツ部分のスタイリング */
.branches__all-accordion-content {
    padding: 25px 0 0 0;
}

/* カスタム矢印のスタイル */
.branches__all-accordion-header::after {
    right: 20px;
    width: 12px;
    height: 10px;
}

.branches__all-accordion-content-item {
    padding: 0px 0 25px;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    align-items: flex-start;
}

.branches__all-accordion-content-item:not(:first-child) {
    margin-top: 15px;
}

.branches__all-accordion-content-item-address {
    font-size: 16px;
}

.branches__all-accordion-content-item-detail {
    width: 100%;
    padding: 13px;
}

.branches__all-accordion-content-item-info-text {
    font-size: 16px;
}


/* ~~~~~~~~~~~~~~~~~~~~~~
single-branch
~~~~~~~~~~~~~~~~~~~~~~~*/
.single-branch {
    background: url(../images/single-branch-bg-sp.png)no-repeat bottom center / contain;
    padding-bottom: 100px;
    margin-top: 40px;
}

.single-branch__title {
    font-size: 28px;
}

.single-branch__flex {
    margin-top: 40px;
    flex-direction: column;
    gap: 40px;
}

.single-branch__img {
    width: 100%;
}

.single-branch__img img {
    aspect-ratio: 335 / 208;
}

.single-branch__content {
    width: 100%;
}
.single-branch__content th {
    width: 100px;
    font-size: 16px;
    letter-spacing: 0;
}
.single-branch__content td {
    padding: 20px 0 20px 16px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
}

.single-branch__content td a {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.6px;
}

.single-branch__content-kerosene-price {
    font-size: 20px;
    letter-spacing: 2.0px;
}   

.single-branch__content-kerosene-price span {
    font-size: 15px;
    letter-spacing: 1.5px;
}   

.single-branch__content-kerosene-time {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.6px;
}

.single-branch__content-kerosene-text {
    margin-top: 0;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.6px;
}

.single-branch__news {
    width: 100%;
    max-width: auto;
    margin: 60px auto 0;
    padding: 41px 20px 38px;
}

.single-branch__news::after {
    display: none;
}

.single-branch__news-title {
    font-weight: 500;
    text-align: center;
}

.single-branch__news-item {
    gap: 20px;
    flex-direction: column;
}

.single-branch__news-item:not(:first-child) {
    margin-top: 20px;
}

.single-branch__news-button {
    padding: 22px 107px;
    border-radius: 48px;
    background: linear-gradient(76deg, #FB3F3C 0%, #FF7745 50%, #FBA681 100%);
}

.single-branch__news-button::after {
    right: 14px;
}
}


/* ~~~~~~~~~~~~~~~~~~
リセットCSS
~~~~~~~~~~~~~~~~~~~~ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-main);
    font-size: 100%;
    color: var(--color-main-text);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.7;
}
